.salarycalculator * {
    font-weight: normal;
}

.salarycalculator h4 {
    font-weight: 600;
}

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 30px 20px 30px;
    max-height: 80%;
    background: white;
    /* border: 1px solid #4208BC; */
    border-radius: 4px;
    /* 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;
    color: #222222;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.2em;
    padding: 20px 0;
}

dialog#modal > .modal-container > .mod-content{
    display: block;
    max-height: 400px;
    overflow: auto;
    word-break: break-word;
}

dialog#modal .float-left {
    float: left;
}

dialog#modal .float-right {
    float: right;
}

.info {
    border: 1px solid;
    padding: 3px; 
    position: relative;
    border-radius: 100px;
    color: #4208BC;
    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: #7E7E7E;
    width: 350px;
    z-index: 99999;
    display: none;
    text-align: center;
    color: white !important;
    box-shadow: rgba(0,0,0,0.125) 2px 2px 2px;
    font-weight: 300;
    line-height: 1.233em;
    font-family: 'Nunito Sans', sans-serif;
    border-radius: 4px;
}

.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;
    border: 1px solid #7E7E7E;
    display: inline-block;
    float: left;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 4px;
}
.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: #4208BC;
    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 #4208BC;
}
.nt-checkbox > input:checked ~ .selection-box:before {
    content: " ";
    width: 70%;
    height: 70%;
    position: absolute;
    background: #4208BC;
    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: 1px solid #7E7E7E;
    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 #4208BC;
}

.nt-radio > .selection-box:before {
    content: " ";
    width: 0%;
    height: 0%;
    position: absolute;
    background: #4208BC;
    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: #4208BC;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .125s all linear;
}

.nt-radio * {
    transition: .125s all linear;
}

#enterSalary {
  color: #7E7E7E !important;
  font-weight: normal;
  font-size: 1rem;
}

.steps {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 600!important;
}

.inlineoption{
    margin-top: 22px;
}

.pound > span:before  {
    content: "\00a3";
    display: block;
    float: left;
    color: #4208BC !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-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) {
    div.result {
        margin: 0;
    }
    div.result table {
        margin: 0;
    }
    div.result table:not(.archive) tr {
        display: block;
        margin-bottom: .625em;
    }
    div.result table:not(.archive) tr:nth-child(odd) {
        /*background: #eee !important;*/
        /* color: inherit !important; */
    }
    div.result table:not(.archive) thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    div.result table:not(.archive) td {
        display: block;
        font-size: .8em;
        text-align: right !important;
        padding-left: 90px !important;
    }
    div.result table:not(.archive) th {
        border-bottom: 1px solid #ddd !important;
        display: block;
        font-size: .8em;
        text-align: right !important;
        padding-left: 90px !important;
    }
    div.result table:not(.archive) td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        margin-left: -85px;
    }
    div.result table:not(.archive) th:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        margin-left: -85px;
    }
    div.result table:not(.archive) thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    div.result table tbody tr {
        border: 1px solid rgba(0, 0, 0, .1);
    }
    .result {
        margin-right: 50px;
    }
    div.result table tbody tr th:first-of-type > div.info {
        margin-left: 1em;
    }
    .salarycalculator .result table thead tr th:not(:first-of-type),
    .salarycalculator .result table tbody tr td {
        text-align: left;
    }
    .salarycalculator .button-container,
    .calculator .button-container {
        margin-top: -10px;
    }
    .salarycalculator .button-container button,
    .calculator .button-container button {
        margin-top: 10px;
    }
    .salarycalculator .row:not(.no-margin) > div:not(:first-of-type) {
        margin-top: 1em;
    }
    .salarycalculator .row > .form-group {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 752px) {
    .salarycalculator, .calculator {
        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-size: 37px;
        font-weight: 600;
        margin-top: 10px;
    }
    .inlineoption{
        margin-top: 0;
    }
    .info.fas.fa-info.label {
    position: relative;
    display: inline-block;
    }
    div.result table td:before {
        content: attr(data-label);
        float: left;
        /* text-transform: lowercase; */
        font-weight: bold;
    }
    div.result 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, .calculator {
    margin: 0 !important;
    padding: 4em 2em !important;
}

.salarycalculator .form-group > div:not(:first-of-type) {
    margin-top: 10px;
}

.salarycalculator div.pound {
    display: flex;
}

.salarycalculator div.pound > input {
    border-radius: 0px;
    width: 142px;
    padding: 0;
    min-height: 34px;
    background-color: #fff;
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    border-left: 0;
    background-clip: unset;
    padding-left: 4px;
    display: inline-block;
}

.button-container > button {
    margin: 0;
}

.button-container > button:not(:last-of-type) {
    margin-right: 10px;
}

.result > table > tbody > tr > td:last-of-type {
    border: 0;
    background: transparent;
    text-align: center !important;
}

.salarycalculator div.result > table,
.holidaycalculator div.result > table {
    border: none;
}

.salarycalculator div.result > table tr:nth-child(even),
.holidaycalculator div.result > table tr:nth-child(even) {
    background: transparent;
}

.salarycalculator div.result > table > thead th,
.holidaycalculator div.result > table > thead th {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.salarycalculator div.result > table tr td:first-of-type,
.salarycalculator div.result > table tr th:first-of-type,
.holidaycalculator div.result > table tr td:first-of-type,
.holidaycalculator div.result > table tr th:first-of-type {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.salarycalculator .form-check:first-of-type,
.holidaycalculator .form-check:first-of-type {
    padding-left: 0;
}

.salarycalculator select,
.holidaycalculator select {
    appearance: auto;
}

form.employee-form > div.mobilewidth:not(:first-of-type),
form.holidayCalc > .holidaycalculator> div.mobilewidth:not(:first-of-type) {
    margin-top: 2em;
}

.salarycalculator .result table thead tr th:not(:first-of-type),
.salarycalculator .result table tbody tr td,
.holidaycalculator .result table thead tr th:not(:first-of-type),
.holidaycalculator .result table tbody tr td {
    text-align: center;
}

.salarycalculator p.result-summary,
.holidaycalculator p.result-summary {
    background: linear-gradient(to right,#4208bc 0,#7141f9 51%,#4208bc 100%);
    background-size: 200% auto!important;
    padding: 10px;
    color: white;
    border-radius: 4px;
}

.salarycalculator input[name=email],
.holidaycalculator input[name=email] {
    background: #fff;
}

.salarycalculator a[href],
.holidaycalculator a[href] {
    color: #4208BC;
    font-weight: bold;
}

.salarycalculator button,
.salarycalculator input[type=submit],
.holidaycalculator button,
.holidaycalculator input[type=submit] {
    line-height: normal!important;
    padding: 10px 30px !important;
}

.salarycalculator .button-container,
.calculator .button-container {
    margin: 3em 0;
}

.holidaycalculator > .mobilewidth > .row > .form-group > label {
    margin: 0;
    font-weight: normal;
}

.hcresult {
    padding: 3em 0 0 0;
}

.hcresult > p.resulttext {
    font-size: 2.4em!important;
    line-height: 1em;
}

.nt-checkbox, .nt-radio {
    margin: 0;
    font-weight: normal;
}