.form-required::after
{
    display: inline-block;

    width: 7px;
    height: 7px;
    margin: 0 .3em;

    content: '';
    vertical-align: super;

    background-image: url(https://d24d7vsshzrslo.cloudfront.net/profiles/custom/born_ready_profile/themes/born_ready_bs4/images/required.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

form .filter-wrapper
{
    padding-right: 1rem;
    padding-left: 1rem;
}

form .form-type-textarea
{
    margin-bottom: 0;
}

input[type=text]::-ms-clear,
input[type=text]::-ms-reveal
{
    display: none;

    width: 0;
    height: 0;
}

.form-control
{
    font-size: 1rem;
    line-height: 1.5rem;

    box-sizing: border-box;
    height: 48px;
    margin: 0;
    padding: 12px 16px;

    transition: all .2s cubic-bezier(0, 0, .58, 1);
    letter-spacing: 0;

    color: #2f2f33;
    border: 2px solid #ceced8;
    border-radius: 0;
    -webkit-box-shadow: none;
}

.form-control.error
{
    border: 2px solid #dd5c3d;
    background-color: #fbeeeb;
}

.form-control::-moz-placeholder
{
    opacity: 1;
    color: #5e5e66;
}

.form-control::-ms-input-placeholder
{
    color: #5e5e66;
    color: #5e5e66;
}

.form-control:-ms-input-placeholder
{
    color: #5e5e66;
}

.form-control::placeholder
{
    color: #5e5e66;
}

.form-item--error-message .error
{
    font-size: 12px;

    color: #dd5c3d;
}

form label
{
    font-size: .875rem;
    line-height: 20px;

    color: #2f2f33;
}

.form-select
{
    transition: border-bottom .15s ease-in-out;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.form-type-select,
.select-wrapper
{
    position: relative;
}

.form-type-select::after,
.select-wrapper::after
{
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    font-style: normal;
    font-variant: normal;
    line-height: 1;

    position: absolute;
    top: 44px;
    right: 20px;

    display: inline-block;

    width: 15px;
    height: 17px;

    content: '\f078';

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: auto;
}

select::-ms-expand
{
    display: none;
}

.form-item-checkbox .form-checkbox
{
    position: relative;
    top: -24px;
    left: -16px;

    opacity: 0;
}

.form-item-checkbox .form-checkbox + label
{
    font-size: 1rem;

    position: relative;

    display: inline-block;

    padding-left: 12px;

    color: #2f2f33;
}

.form-item-checkbox .form-checkbox + label::before,
.form-item-checkbox .form-checkbox + label::after
{
    position: absolute;
    top: 11px;
    left: -37px;

    display: block;

    width: 20px;
    height: 20px;

    content: '';
    cursor: pointer;
    transform: translate(0, -50%);

    border-radius: 0;
}

@media (min-width: 768px)
{
    .form-item-checkbox .form-checkbox + label::before,
    .form-item-checkbox .form-checkbox + label::after
    {
        left: -21px;
    }
}

.form-item-checkbox .form-checkbox + label::before
{
    transition: all .25s cubic-bezier(.4, 0, .2, 1);

    border: 2px solid #a8a8b3;
}

.form-item-checkbox .form-checkbox + label::after
{
    transition: all .2s cubic-bezier(.46, .03, .52, .96);
    transform: translate(0, -50%) scale(.3);

    opacity: 0;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\'%3E%3Cpath fill=\'%23fff\' d=\'M8.93 18.65L4 13.72l1.77-1.76 3.07 3.07L17.96 5l1.85 1.68L8.93 18.65z\'/%3E%3C/svg%3E');
    background-size: 20px 20px;
}

[type=checkbox],
[type=radio]
{
    box-sizing: border-box;
    padding: 0;
}

.form-fieldset .form-item
{
    margin: 0;
}

.form-checkbox:checked ~ label::before
{
    border-radius: 2px;
}

.form-checkbox:checked ~ label::after
{
    transform: translate(0, -50%) scale(1) rotate(-10deg);

    opacity: 1;
}

.form-item-radio
{
    padding: 6px 0;
}

[type='radio']:checked,
[type='radio']:not(:checked)
{
    position: absolute;
    left: -9999px;
}

[type='radio']:checked + label,
[type='radio']:not(:checked) + label
{
    font-size: 1rem;
    line-height: 24px;

    position: relative;

    display: inline-block;

    padding-left: 32px;

    cursor: pointer;

    color: #2f2f33;
}

[type='radio']:checked + label:before,
[type='radio']:not(:checked) + label:before
{
    position: absolute;
    top: 0;
    left: 0;

    width: 24px;
    height: 24px;

    content: '';

    border: 2px solid #061f5c;
    border-radius: 100%;
    background: #fff;
}

[type='radio']:checked + label:after,
[type='radio']:not(:checked) + label:after
{
    position: absolute;
    top: 7px;
    left: 7px;

    width: 10px;
    height: 10px;

    content: '';
    transition: all .2s ease;

    border-radius: 100%;
    background: #061f5c;
}

[type='radio']:not(:checked) + label:after
{
    transform: scale(0);

    opacity: 0;
}

[type='radio']:checked + label:after
{
    transform: scale(1);

    opacity: 1;
}

.form-textarea-wrapper textarea
{
    resize: none;

    border: 2px solid #ceced8;
    border-radius: 0;
    background-color: #fff;
}

.form-textarea-wrapper textarea:focus
{
    background-color: #fff;
}

form .disabled
{
    border: 0 none !important;
    border-radius: 0;
    background-color: #f7f7ff;
}

.formfield .formGroup .row
{
    width: 100% !important;
    min-height: auto !important;
    margin: 0  !important;
}

.formfield .formGroup .row:nth-of-type(2n + 1) label.control-label
{
    top: 0 !important;

    padding-bottom: 9px;
}

.formfield .formGroup .row:nth-of-type(2n + 2) .form-control
{
    line-height: 1.5rem !important;

    min-width: 100%;
    height: 48px;
    margin-bottom: 22px;
    padding: 12px 16px !important;

    color: #2f2f33 !important;
    border: 2px solid #ceced8 !important;
    border-radius: 0;
}

.formfield .formGroup .row:nth-of-type(2n + 2) .form-control:focus
{
    border-color: #061f5c !important;
    box-shadow: none;
}

.formfield .formGroup .row:nth-of-type(2n + 2) .form-control::-moz-placeholder
{
    opacity: 1;
    color: #5e5e66;
}

.formfield .formGroup .row:nth-of-type(2n + 2) .form-control::-ms-input-placeholder
{
    color: #5e5e66;
    color: #5e5e66;
}

.formfield .formGroup .row:nth-of-type(2n + 2) .form-control:-ms-input-placeholder
{
    color: #5e5e66;
}

.formfield .formGroup .row:nth-of-type(2n + 2) .form-control::placeholder
{
    color: #5e5e66;
}

.formfield .formGroup .row:nth-of-type(2n + 2) .alert-danger.ng-active
{
    margin: -10px 0 22px 0;
    padding: 0;

    color: #dd5c3d;
    border: none;
    background: none;
}

.formfield .formGroup .row:nth-of-type(2n + 2) .alert-danger.ng-active .glyphicon
{
    display: none;
}

.formfield .formGroup .row:nth-of-type(2n + 2) list-input.ng-scope div.ng-scope select
{
    cursor: pointer;
}

.formfield .formGroup .row:nth-of-type(2n + 2) list-input.ng-scope div.ng-scope select.form-control
{
    color: #2f2f33 !important;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.formfield .formGroup .row:nth-of-type(2n + 2) list-input.ng-scope div.ng-scope:after
{
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    line-height: 24px;

    position: absolute;
    top: 12px;
    right: 18px;

    display: inline-block;

    width: 15px;
    height: 17px;
    margin-left: 7px;

    content: '\f078';
    pointer-events: none;

    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: auto;
}

.formfield .formGroup .row:nth-of-type(2n + 2) textarea.form-control
{
    height: 160px;

    color: #2f2f33 !important;
}

.formfield .formGroup .row > div
{
    float: none !important;

    max-width: 620px;
    margin: 0 auto !important;
    padding: 0;
}

.bp-form-field-rounded .form-control,
.bp-form-field-rounded .form-checkbox,
.bp-form-field-rounded textarea,
.bp-form-field-rounded form .disabled
{
    border-radius: 2px !important;
}

.bp-form-field-rounded .formfield .form-control,
.bp-form-field-rounded .formfield .form-checkbox,
.bp-form-field-rounded .formfield textarea,
.bp-form-field-rounded .formfield form .disabled
{
    border-radius: 2px !important;
}

.formfield .form-control,
.formfield .form-checkbox,
.formfield textarea,
.formfield form .disabled
{
    border-radius: 2px !important;
}

.formfield .form-control:focus,
.formfield .form-checkbox:focus,
.formfield textarea:focus,
.formfield form .disabled:focus
{
    border-color: #061f5c !important;
    box-shadow: none;
}

.formfield .btn
{
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: normal;
    font-weight: bold  !important;
    font-style: normal;
    line-height: 1.2 !important;

    min-width: 197px !important;
    min-height: 40px !important;
    padding: 12px 35px !important;

    text-align: center !important;
    text-align: center !important;
    text-decoration: none !important;
    letter-spacing: .5px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;

    border-radius: 0;
}

@media (max-width: 767.98px)
{
    .formfield .btn
    {
        float: none !important;

        padding: 12px !important;
    }
}

.formfield .btn-primary
{
    color: #fff !important;
    border-color: #061f5c !important;
    background-color: #061f5c !important;
}

.formfield .btn-primary:hover
{
    border-color: #0c1a3b !important;
    background-color: #0c1a3b !important;
}

.formfield .btn-primary.btn-double-layer
{
    box-shadow: 4px 4px 0 #0c1a3b !important;
}

.formfield .btn-info
{
    color: #fff !important;
    border-color: #5b7a95 !important;
    background-color: #5b7a95 !important;
}

.formfield .btn-info:hover
{
    border-color: #3b4f61 !important;
    background-color: #3b4f61 !important;
}

.formfield .btn-info.btn-double-layer
{
    box-shadow: 4px 4px 0 #3b4f61 !important;
}

.formfield .input-group-btn
{
    display: flex !important;

    vertical-align: top !important;
}

@media (max-width: 991.98px)
{
    .formfield .input-group-btn
    {
        flex-direction: column !important;
    }
}

.formfield .input-group-btn .btn
{
    height: 48px;

    color: #fff !important;
    border-color: #5b7a95 !important;
    background-color: #5b7a95 !important;
}

.formfield .input-group-btn .btn:hover
{
    border-color: #3b4f61 !important;
    background-color: #3b4f61 !important;
}

.formfield .btn
{
    margin: 0 20px 20px  0 !important;
}

.loaderContainer .loader span:first-child
{
    display: none;
}

.loaderContainer .loader .circle
{
    width: 12px !important;
    height: 12px !important;
    margin: 4px;

    border-radius: 100% !important;
}

.admissionsEnquiry .collapse.in
{
    display: block !important;
}

.admissionsEnquiry .alert
{
    padding: 12px 20px !important;
}

.formfield .formGroup .row div.dataSquareHeader
{
    padding-right: 25px;
}

.formfield .formGroup .dataSquareContents .row > div
{
    padding: 8px;
}

.formfield .formGroup .dataSquareContents
{
    position: relative;
    left: 10%;
}

.formfield .formGroup .buttons.row
{
    position: relative;
    right: 9%;

    margin-top: 20px !important;
}

.formGroup form .modal-footer
{
    justify-content: center;
}

.admissionsEnquiry .panel-group .formfield .isams-form__navigation-row,
.modal-school-group .panel-group .formfield .isams-form__navigation-row,
.modal-confirm .panel-group .formfield .isams-form__navigation-row
{
    justify-content: center !important;
}
