.jet-field {
    display: block;
}
.jet-form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #242E30;
    margin-bottom: 4px;
}
.jet-form-input {
    position: relative;
    width: 100%;
}
.jet-form-input input {
    display: block;
    width: 100%;
    height: 48px;
    border: 1px solid #797876;
    border-radius: 12px;
    background: #FFFFFF;
    padding: 12px 16px;
    color: #425457;
}
.jet-form-input-icon {
    position: absolute;
    display: block;
    height: 24px;
    width: 24px;
    top: 12px;
    right: 16px;
    z-index: 1;
}
.jet-form-input-icon img {
    height: 100%;
    width: 100%;
}
.jet-form-input.has-icon input {
    padding-right: 48px;
}
.jet-form-hint {
    display: flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #2A3846;
    margin-top: 8px;
}
.jet-form-error {
    display: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #D50525;
    margin-top: 4px;
}

.jet-form-hint .jet-icon {
    height: 16px;
    width: 16px;
    min-height: 16px;
    min-width: 16px;
    margin-right: 16px;
    margin-top: 2px;
}

.jet-form-error .jet-icon {
    height: 20px;
    width: 20px;
    min-height: 20px;
    min-width: 20px;
    margin-right: 8px;
    margin-top: 2px;
}

.jet-form-error .jet-icon img {
    display: block;
    height: 100%;
    width: 100%;
}

.jet-field.has-error .jet-form-input input {
    border-color: #D50525;
}


.jet-field.has-error .jet-form-error {
    display: flex;
}

.jet-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 800px;
    mix-blend-mode: normal;
    padding: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    width: 100%;
    color: #242E30;
    text-decoration: none;
}

.jet-button.regular {
    background: transparent;
    color: #303D3F;
    border: 1px solid #DBD9D7;
}

.jet-button.primary {
    background: #FB6100;
    color: #FFFFFF;
}

.jet-button .jet-button-icon {
    margin-right: 8px;
}

@media (min-width: 959px) {
    .jet-button {
        width: auto;
        padding: 10px 24px;
    }
    .jet-button.regular {
        display: inline-flex;
        width: auto;
        padding: 8px 16px;
    }
}




/*CHECKBOX*/

.jet-checkbox {
    position: relative;
    text-align: left;
}

.jet-checkbox:hover .jet-checkbox-check {
    border-color: #083343;
}

.jet-checkbox .jet-checkbox-check, .jet-checkbox .jet-checkbox-label {
    cursor: pointer;
}

.jet-checkbox.disabled .jet-checkbox-check, .jet-checkbox.disabled .jet-checkbox-label {
    cursor: default;
}

.jet-checkbox-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}

.jet-checkbox-check {
    position: absolute;
    top: 1px;
    left: 1px;
}

.jet-checkbox-label {
    display: block;
    min-height: 24px;
    padding-left: 32px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 24px;
}

.jet-checkbox-input {
    pointer-events: none;
}

.jet-checkbox-input:focus + .jet-checkbox-check {
    border-color: #125fca;
}

.jet-checkbox-input.checked + .jet-checkbox-check {
    background-color: #FB6100;
    border-color: transparent;
}

.jet-checkbox-input.checked + .jet-checkbox-check .jet-icon {
    display: flex;
}

.jet-checkbox-check {
    background-color: #fff;
    border: 1px solid #8c999b;
    border-radius: 3px;
    width: 22px;
    height: 22px;
}
.jet-checkbox-check .jet-icon {
    display: none;
    font-size: 10px;
    color: #125fca;
    height: 20px;
    width: 20px;
    min-width: 20px;
}

.jet-checkbox.has-error .jet-checkbox-check {
    border-color: #D50525;
}



.kc-modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0,0,0,0.5); */
    z-index: 9999;
}

.kc-modal.kc-modal-hidden {
    display: none;
}

.kc-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.kc-modal-inner {
    position: relative;
    width: 450px;
    max-width: 100%;
    padding: 8px 16px 16px 16px;
    background-color: #fff;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.04), 0px 8px 20px -3px rgba(0, 0, 0, 0.1), 0px 4px 8px -2px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    z-index: 1;
}

.kc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.kc-modal-header .kc-modal-title {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
}

.kc-modal-header .kc-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    outline: none;
    border: 0;
}

.kc-modal-body {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}