dialog#modal{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .25);
    z-index: 1000000000;
    display: none;
    border: 0;
    align-items: center;
    justify-content: center;
		padding: 10px;
}

dialog#modal > .modal-container{
    max-width: 380px;
    width: 100%;
    padding: 10px;
    max-height: 80%;
    background: white;
    border: 1px solid #36b8d6;
    /* position: fixed; */
    /* left: 50%; */
    /* top: 25%; */
    opacity: 0;
    /* transform: translate(-50%, -50%); */
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .125);
    overflow: auto;
}

dialog#modal > .modal-container > .mod-title{
    display: block;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

dialog#modal > .modal-container > .mod-content{
    display: block;
    max-height: 400px;
    overflow: auto;
    word-break: break-word;
}

.info {
    border: 1px solid;
    padding: 3px; 
    position: relative;
    border-radius: 100px;
    color: #ffffff;
    width: 20px;
    height: 20px;
    font-size: .80em;
    vertical-align: middle;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.info > .info-box {
    position: absolute;
    right: calc(100% + 5px);
    top: 0;
    padding: 10px 20px;
    background: #ffffff;
    width: 350px;
    z-index: 99999;
    display: none;
    text-align: center;
    color: #212529 !important;
    box-shadow: rgba(0,0,0,0.125) 2px 2px 2px;
    font-weight: 300;
    line-height: 1.233em;
    font-family: Poppins,sans-serif
}

.info:hover > .info-box {
    display: block;
}

.info.fas.fa-info.label {
  position: relative;
  display: inline-block;
}

.advancecontent {
  background-color: #fff;
  cursor: pointer;
  padding: 10px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  width: fit-content;
  color: #000000;
}

.btns {  
margin: 250px auto 50px;  
width: 600px;  
} 

.modal-dialog {
  max-width: 600px
}
.nt-checkbox {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.nt-checkbox > .selection-box {
    width: 22px;
    height: 22px;
    background: white;
    display: inline-block;
    float: left;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
}
.nt-checkbox > input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0!important;
    height: 0!important;
    min-width: 0;
    min-height: 0;
}
.nt-checkbox > .selection-box:before {
    content: " ";
    width: 0%;
    height: 0%;
    position: absolute;
    background: #36b8d6;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .125s all linear;
}
.nt-checkbox * {
    transition: .125s all linear;
}
.nt-checkbox > .selection-box.missing {
    width: 22px;
    height: 22px;
    background: pink;
    border: 1px solid red !important;
    display: inline-block;
    float: left;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
}
.nt-checkbox:hover > input:not(:disabled) ~ .selection-box {
    border: 2px solid #36b8d6;
}
.nt-checkbox > input:checked ~ .selection-box:before {
    content: " ";
    width: 70%;
    height: 70%;
    position: absolute;
    background: #36b8d6;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .125s all linear;
}

.nt-radio {
    position: relative;
    vertical-align: middle;
    max-width: 100%;
  }

.nt-radio > input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0!important;
    height: 0!important;
    min-width: 0;
    min-height: 0;
} 

.nt-radio > .selection-box {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    float: left;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    flex: none;
}

.nt-radio > .selection-box.missing {
    width: 22px;
    height: 22px;
    background: pink;
    border: 1px solid red;
    border-radius: 50%;
    display: inline-block;
    float: left;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
}

.nt-radio:hover > input:not(:disabled) ~ .selection-box {
    border: 2px solid #36b8d6;
}

.nt-radio > .selection-box:before {
    content: " ";
    width: 0%;
    height: 0%;
    position: absolute;
    background: #36b8d6;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .125s all linear;
}

.nt-radio > input:checked ~ .selection-box:before {
    content: " ";
    width: 70%;
    height: 70%;
    position: absolute;
    background: #36b8d6;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .125s all linear;
}

.nt-radio * {
    transition: .125s all linear;
}

#enterSalary {
  color: #2FA6BD !important;
  font-family: 'Poppins', sans-serif;
  font-weight: normal;
  font-size: 1rem;
}

.steps {
    font-family: Caveat,cursive;
    font-size: 25px;
    font-weight: 300;
}

.inlineoption{
    margin-top: 22px;
}

.pound > span:before  {
    content: "\00a3";
    display: block;
    float: left;
    color: #2FA6BD !important;
    background-color: #ffffff;
    width: 34px;
    aspect-ratio: 1 / 1;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #aaa;
    min-height: 34px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

form > div.missing {
    color: #c0392b;
    font-weight: bold;
    display: block;
}

#periodofemployment {
	text-align: right;
}

input.missing[type=text], 
input.missing[type=time], 
input.missing[type=email], 
input.missing[type=password], 
input.missing[type=number], 
input.missing[type=date],
input.missing[type=time],
input.missing[type=file],
input.missing[type=telephone],
select.missing,
textarea.missing {
    background: pink !important;
    border: 1px solid red !important;
}
.payfrequency {
    color: rgba(76,37,67,.7) !important;
}

.tablecolor {
    background: #ffffff;
    color: #4A4A4A
}

@media (max-width: 1199px) {
    table:not(.archive) tr {
        display: block;
        margin-bottom: .625em;
    }
    table:not(.archive) tr:nth-child(odd) {
        /*background: #eee !important;*/
        /* color: inherit !important; */
    }
    table:not(.archive) thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    table:not(.archive) td {
        display: block;
        font-size: .8em;
        text-align: right !important;
        padding-left: 90px !important;
    }
    table:not(.archive) th {
        border-bottom: 1px solid #ddd !important;
        display: block;
        font-size: .8em;
        text-align: right !important;
        padding-left: 90px !important;
    }
    table:not(.archive) td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        margin-left: -85px;
    }
    table:not(.archive) th:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        margin-left: -85px;
    }
    table:not(.archive) thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    .result {
        margin-right: 50px;
    }
}
@media screen and (max-width: 752px) {
    .salarycalculator {
        padding: 0 24px!important;
        margin: 0!important;
        margin-left: 0 !important;
    }
}
@media screen and (max-width: 600px) {
    #sendemail {
        margin-top: 15px!important;
    }
    #sendholidayemail {
        margin-top: 15px!important;
    }
    .info > .info-box {
        padding: 10px 10px;
        width: 240px;
    }     
    .steps {
        font-family: Caveat,cursive;
        font-size: 37px;
        font-weight: 600;
        margin-top: 10px;
    }
    .inlineoption{
        margin-top: 0;
    }
    .info.fas.fa-info.label {
    position: relative;
    display: inline-block;
    }
    table td:before {
        content: attr(data-label);
        float: left;
        text-transform: lowercase;
        font-weight: bold;
    }
    table thead {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    #enterSalary {
        width: 90%!important;
    }
    #frequency{
        width: 100%!important;
    }
    #taxCode{
        width: 100%!important;
    }
    .pound > span:before{
        width: 10%!important;
    }
    .mobilewidth {
        text-align: center!important;
    }
    .taxcodeoption {
        width: 100%;
    }
    .result {
        margin-right: 0 !important;
    }
    #periodofemployment {
        text-align: left;
    }
}

.resulttext {
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    color: #ffffff; 
    text-align:center;
}

.bulletlist {
    list-style-position: outside;
    padding-left: 15px;
}

input#email_calculation {
    color: white !important;
}

.salarycalculator {
    margin: 0 !important;
    padding: 0 75px;
}

.salarycalculator .form-group > div:not(:first-of-type) {
    margin-top: 10px;
}