/* fonts */
@font-face {
    font-family: "Nunito Regular";
    src: url("../fonts/Nunito-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Nunito SemiBold";
    src: url("../fonts/Nunito-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Nunito Bold";
    src: url("../fonts/Nunito-Bold.ttf") format("truetype");
}

:root {
    --form-control-background: #f3f3f5;
    --form-control-foreground: #0a0a0a;
    --form-control-placeholder: #6b7280;
    --form-control-border: rgba(0, 0, 0, 0.08);
}

.font-regular {
    font-family: 'Nunito Regular';
}

.font-semibold {
    font-family: 'Nunito SemiBold';
}

.font-bold {
    font-family: 'Nunito Bold';
}


::selection {
    background-color: #FD7E14;
    color: white;
}

html {
    min-height: 100%;
    overflow-x: hidden;
    background-color: #F9F9F9;
}

.body-base {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: #F9F9F9;
    font-family: 'Nunito Regular';
    margin: 0;
    overflow-x: hidden;
}

.body-white {
    min-height: 100vh;
    min-height: 100dvh;
    background-color: rgb(255, 255, 255);
    font-family: 'Nunito Regular';
    margin: 0;
    overflow-x: hidden;
}

.cover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: white;
}

.block {
    background-color: white;
    color: black;
    border-radius: 15px;
    border: 1px solid #EBEBEB;
    padding: 20 24 20 24;
}

.line {
    border-top: 1px solid #EBEBEB;
}

.block-primary {
    background-color: #FD7E14;
    color: white;
    border-radius: 15px;
    padding: 0 0;
    min-width: fit-content;
    transition: all 0.2s ease;
}

.block-primary-hover:hover {
    opacity: 0.9;
    cursor: pointer;
}

.block-secondary {
    background-color: white;
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    padding: 0 0;
    transition: all 0.2s ease;
}

.block-secondary-hover:hover {
    cursor: pointer;
    background-color: #fcfcfc;
}

.block-warning {
    background-color: #f0b1001a;
    color: #a65f00;
    border: 1px solid #f0b10033;
    border-radius: 15px;
    padding: 0 0;
    min-width: fit-content;
}

.block-danger {
    background-color: #d4183d1a;
    color: rgb(212, 24, 61);
    border: 1px solid #d4183d33;
    border-radius: 15px;
    padding: 0 0;
    min-width: fit-content;
}

.link-warning {
    color: #a65f00;
    text-decoration: underline;
}

.link-danger {
    color: rgb(212, 24, 61);
    text-decoration: underline;
}

.block-info {
    background-color: #eff6ff;
    color: #1c398e;
    border: 1px solid #8ec5ff;
    border-radius: 15px;
    padding: 0 0;
    min-width: fit-content;
}

.block-gray {
    background-color: #f5f5f580;
    color: #0a0a0a;
    border: 1px solid #00000014;
    border-radius: 15px;
    padding: 20 24 20 24;
    min-width: fit-content;
}

/* forms */
form {
    margin-block-end: 20px;
}

a[x-apple-data-detectors] {
    color: inherit !important;
    font: inherit !important;
    text-decoration: none !important;
}

.central-form {
    width: 400px;
    margin-top: 6%;
}

.central-form-wide {
    width: 650px;
    margin-top: 4%;
}

.basic-form {
    margin-top: 20px;
}

.profile-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.profile-form-title-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
}

.profile-form-actions {
    flex: 0 0 auto;
    text-align: right;
}

.profile-data-block,
.profile-edit-content .block {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 20px 24px;
    box-sizing: border-box;
}

.profile-data-block .col-2 > div,
.profile-edit-content .col-2 > div {
    min-width: 0;
    overflow-wrap: anywhere;
}

.profile-edit-content,
.profile-edit-content > div {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.profile-password-restore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
}

.medexam-parameters-header {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    min-width: 0;
}

.medexam-parameters-header .line {
    grid-column: 1 / -1;
}

.medexam-parameters-title,
.medexam-parameters-actions {
    min-width: 0;
}

.exam-form-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.exam-form-heading,
.exam-form-title {
    min-width: 0;
}

.exam-form-title-row {
    display: flex;
    align-items: center;
    min-width: 0;
}

.exam-form-title-icon {
    flex: 0 0 auto;
}

.exam-form-title {
    line-height: 1.25;
    white-space: normal;
}

.exam-form-counter {
    text-align: right;
}

.input-button-container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.input-button-field {
    flex: 1 1 auto;
    min-width: 0;
}

.input-button-field .input-base {
    width: 100%;
    box-sizing: border-box;
}

.input-button-action {
    flex: 0 0 auto;
}

.profile-section-icon {
    width: 20px;
    height: 20px;
}

#medexam_form,
#techexam_form,
#medexam_form > div,
#techexam_form > div,
#medexam_form .col-2,
#techexam_form .col-2,
#medexam_form .col-2 > div,
#techexam_form .col-2 > div {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

#medexam_form .block-gray,
#techexam_form .block-gray {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* logo */
.logo-wide {
    width: 241px;
    height: 48px;
    user-select: none;
}

.logo-narrow {
    width: 184px;
    height: 37px;
}

/* inputs */
.input-base {
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 36px;
    display: inline-block;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    color: var(--form-control-foreground);
    background-color: var(--form-control-background);
}

.input-base:-webkit-autofill,
.input-base:-webkit-autofill:hover,
.input-base:-webkit-autofill:focus {
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    -webkit-text-fill-color: var(--form-control-foreground);
    box-shadow: 0 0 0 1000px var(--form-control-background) inset;
}

input::placeholder,
textarea::placeholder,
.input-base::placeholder {
    color: var(--form-control-placeholder);
    font-family: 'Nunito Regular';
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}

.input-base:focus {
    outline: 2px solid #FD7E14;
}

.input-base:disabled {
    font-family: 'Nunito Regular';
    background-color: #F9F9F9;
    color: var(--form-control-placeholder);
}




.file-input-hidden {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.textarea-base {
    font-family: 'Nunito SemiBold';
    border-radius: 10px;
    border: none;
    width: 100%;
    min-height: 100px;
    padding: 18px 24px 18px 24px;
    display: inline-block;
    box-sizing: border-box;
    text-decoration-color: rgb(23, 99, 191);
    resize: vertical;
    font-size: 14px;
    color: var(--form-control-foreground);
    background-color: var(--form-control-background);
}

.textarea-base:focus {
    outline: 2px solid #FD7E14;
}

.textarea-base:disabled {
    font-family: 'Nunito Regular';
    background-color: #F9F9F9;
    color: var(--form-control-placeholder);
    border: 1px solid var(--form-control-border);
}

.input-checkbox {
    appearance: none;
    height: 18px;
    width: 18px;
    background-color: rgb(243, 243, 245);
    border-radius: 4px;
    border: 1px solid #ebebeb;
}

.input-checkbox:disabled {
    appearance: none;
    height: 18px;
    width: 18px;
    background-color: rgb(243, 243, 245);
    border-radius: 4px;
    border: 1px solid #ebebeb;
    opacity: 50%;
    cursor: default;
}

.input-checkbox:checked {
    background-color: #FD7E14;
    border-color: #FD7E14;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.input-checkbox:checked:disabled {
    background-color: #e5e5e5;
    border-color: #e5e5e5;
    cursor: default;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.input-category-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.input-category {
    font-family: 'Nunito SemiBold';
    display: inline-block;
    color: rgb(0, 0, 0);
    background-color: #f3f3f3;
    border: none;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.input-category-checkbox:checked+.input-category {
    color: white;
    background-color: #FD7E14;
}

.input-category:checked:disabled {
    background-color: #e5e5e5;
    border-color: #e5e5e5;
    cursor: default;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

input[type="checkbox"] {
    cursor: pointer;
}

.gis-notice-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    white-space: normal;
}

.gis-notice-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gis-notice-checkbox {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    pointer-events: none;
}

.gis-notice-checkbox .input-checkbox {
    margin: 0;
}

.gis-notice-content {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    margin: 0;
    color: black;
    font-size: 14px;
}

.input-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 8px 10px 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-label-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.checkbox-label-row > .input-checkbox,
.input-checkbox-container > .input-checkbox {
    flex: 0 0 18px;
    margin: 1px 0 0;
}

.checkbox-label-row > label,
.input-checkbox-container > label {
    min-width: 0;
    margin-left: 0;
    white-space: normal;
    overflow-wrap: anywhere;
}

.input-checkbox-container:hover {
    background-color: #f5f5f580;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/web/images/form-arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 12px center;
}



/* labels */
.label-input {
    color: var(--form-control-foreground);
    font-family: 'Nunito SemiBold';
    font-size: 14px;
}


/* password control */
.password {
    position: relative;
}

.password-control {
    position: absolute;
    top: 8px;
    right: 12px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(css-images/view.svg) 0 0 no-repeat;
    cursor: pointer;
}

.password-control.view {
    background: url(css-images/no-view.svg) 0 0 no-repeat;
    cursor: pointer;
}

/* text */
.link {
    color: #FD7E14;
    font-weight: medium;
    text-decoration: none;
    transition: all 0.2s ease;
}

.link:hover {
    opacity: 0.8;
    cursor: pointer;
}

.link-primary {
    color: #FD7E14;
    font-size: 14px;
    font-weight: medium;
    text-decoration: none;
    transition: all 0.2s ease;
}

.link-primary:hover {
    opacity: 0.8;
    cursor: pointer;
}

.link-secondary {
    color: rgb(107, 114, 128);
    font-size: 14px;
    font-weight: medium;
    text-decoration: none;
    transition: all 0.2s ease;
}

.link-secondary:hover {
    color: #FD7E14;
    cursor: pointer;
}

.link-white {
    color: white;
    transition: all 0.2s ease;
}

.link-white:hover {
    opacity: 95%;
}

.warning {
    font-family: 'Nunito Bold';
    color: #c41104;
    white-space: normal;
}

.text-primary {
    color: #FD7E14;
}

.text-secondary {
    color: oklab(0.999994 0.0000455677 0.0000200868 / 0.8);
}

.text-info {
    color: rgb(107, 114, 128);
}

/* buttons */
.button-primary,
.button-secondary,
.button-info,
.button-secondary-text,
.button-success,
.button-primary-sidebar-enabled,
.button-primary-sidebar-disabled,
.button-success-sidebar-enabled,
.button-danger-sidebar-enabled,
.button-link,
.button-text-secondary,
.button-text-primary,
.button-transparent,
.button-warning,
.button-disabled,
.button-image,
.button-return {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    vertical-align: middle;
    line-height: 1.2;
    -webkit-appearance: none;
    appearance: none;
}

.button-primary > .nowrap,
.button-info > .nowrap,
.button-secondary > .nowrap,
.button-primary-sidebar-enabled > .nowrap,
.button-primary-sidebar-disabled > .nowrap,
.button-success-sidebar-enabled > .nowrap,
.button-danger-sidebar-enabled > .nowrap {
    display: flex;
    align-items: center;
    min-width: 0;
    line-height: inherit;
}

.button-primary img,
.button-secondary img,
.button-info img,
.button-success img,
.button-primary-sidebar-enabled img,
.button-primary-sidebar-disabled img,
.button-success-sidebar-enabled img,
.button-danger-sidebar-enabled img,
.button-image img,
.button-return img,
.button-transparent img {
    display: block;
}

.button-primary {
    background-color: rgb(253, 126, 20);
    color: white;
    border: none;
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 36px;
    padding: 8px 16px;
}

.button-secondary {
    background-color: white;
    color: rgb(107, 114, 128);
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    min-height: 36px;
    padding: 8px 16px;
    transition: all 0.2s ease;
}


.button-info {
    background-color: #f9f9f9;
    font-family: 'Nunito Regular';
    color: black;
    border: none;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    min-height: 36px;
    padding: 8px 12px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button-info:hover {
    background-color: #FD7E14;
    color: white;
    cursor: pointer;
    border: 1px solid #FD7E14;
}

.button-secondary:hover {
    color: #FD7E14;
    cursor: pointer;
}

.button-secondary-text {
    background-color: rgba(255, 255, 255, 0);
    color: rgb(107, 114, 128);
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    border: none;
    min-height: 36px;
    padding: 0;
}

.button-success {
    background-color: rgb(36, 159, 28);
    color: white;
    border: none;
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 36px;
    padding: 8px 16px;
}

.button-primary-sidebar-enabled {
    background-color: rgb(253, 126, 20);
    color: white;
    border: none;
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 36px;
    text-align: left;
    justify-content: flex-start;
    padding: 8px 12px;
    transition: all 0.2s ease;
}

.button-primary-sidebar-disabled {
    background-color: rgb(255, 255, 255);
    color: black;
    border: none;
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    justify-content: flex-start;
    padding: 8px 12px;
    min-height: 36px;
    text-align: left;
    transition: all 0.2s ease;
}

.button-primary-sidebar-disabled:hover {
    opacity: 0.9;
    background-color: #F5F5F5;
    cursor: pointer;
}

.button-success-sidebar-enabled {
    background-color: rgb(36, 159, 28);
    color: white;
    border: none;
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 36px;
    justify-content: flex-start;
    padding: 8px 12px;
    text-align: left;
}

.button-danger-sidebar-enabled {
    background-color: rgb(212, 24, 61);
    color: white;
    border: none;
    font-family: 'Nunito SemiBold';
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 36px;
    justify-content: flex-start;
    padding: 8px 12px;
    text-align: left;
}



.link-secondary {
    color: rgb(107, 114, 128);
    font-size: 14px;
    font-weight: medium;
    text-decoration: none;
    border: none;
}

.button-link {
    font-family: 'Nunito Regular';
    background: transparent;
    border: none;
    color: rgb(107, 114, 128);
    font-size: 14px;
    font-weight: medium;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0;
}

.button-link:hover {
    color: #FD7E14;
    cursor: pointer;
}

.button-text-secondary {
    font-family: 'Nunito Regular';
    background: transparent;
    border: none;
    color: rgb(107, 114, 128);
    font-size: 14px;
    font-weight: medium;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0;
}

.button-text-secondary:hover {
    color: #FD7E14;
    cursor: pointer;
}

.button-text-primary {
    font-family: 'Nunito Regular';
    background: transparent;
    border: none;
    color: #FD7E14;
    font-size: 14px;
    font-weight: medium;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0;
}

.button-text-primary:hover {
    color: #FD7E14;
    cursor: pointer;
}

.button-transparent {
    font-family: 'Nunito Regular';
    background-color: transparent;
    border: none;
    user-select: none;
    cursor: pointer;
    padding: 0;
}

.button-warning {
    background-color: transparent;
    min-height: 32px;
    border-radius: 12px;
    border: none;
    user-select: none;
    transition: all 0.2s ease;
    padding: 0;
}

.button-warning:hover {
    background-color: #FE9E4F;
    border: none;
}

.button-disabled {
    background-color: rgb(202, 202, 202);
    color: rgb(0, 0, 0);
    font-size: 16px;
    border-radius: 10px;
    border: 2px DarkGray;
    pointer-events: none;
    min-height: 36px;
    opacity: 50%;
    padding: 8px 16px;
}

.button-image {
    padding: 0;
    background-color: #f3f3f3;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    user-select: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.button-image:hover {
    opacity: 100%;
    background-color: #FD7E14;
    border: 0px solid rgba(0, 0, 0, 0.08);
}

.button-return {
    background-color: #ffffff;
    padding: 0;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    border: none;
    user-select: none;
    transition: all 0.2s ease;
}

.button-return:hover {
    opacity: 100%;
    background-color: #FD7E14;
}

.sidebar-button-image {
    width: 20px;
    height: 20px;
    display: block;
    flex: 0 0 20px;
}

/* LEGACY */

/* button:hover {
    opacity: 0.9;
    cursor: pointer;
} */

/* modal */
.modal {
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: opacity 0.2s ease, display 0.2s allow-discrete;
}

.modal.hidden {
    opacity: 0;
}

@starting-style {
    .modal:not(.hidden) {
        opacity: 0;
    }
}

.modal-content {
    background-color: white;
    color: black;
    border-radius: 15px;
    border: 1px solid #EBEBEB;
    padding: 18px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    width: 360px !important;
    height: min-content;
    white-space: normal;
}

/* applied classes */
.hidden {
    display: none;
}

[mobile-show] {
    display: none !important;
}

.align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.align-justify {
    text-align: justify;
    text-justify: inter-word;
}

.page-break {
    page-break-after: always;
}

.break-word-all {
    word-break: break-all;
}

/* borders */
.border {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.border-solid-primary {
    border: 1px solid #FD7E14;
}

.br-20 {
    border-radius: 20px;
}

.br-30 {
    border-radius: 30px;
}

/* outlines */
.outline-none {
    outline: none;
}

.outline-solid-primary {
    outline: 1px solid #FD7E14;
}

/* tables */
.table-bordered {
    border: 2px solid black;
    border-spacing: 0;
    border-collapse: collapse;
    padding: 0;
}

.table-bordered-tr {
    border: 2px solid black;
    padding: 0;
}

.table-bordered-td {
    border: 2px solid black;
    padding: 3px;
    padding-left: 3px;
}

/* paddings */
.p-5 {
    padding: 5px;
}

.p-10 {
    padding: 10px;
}

.p-12 {
    padding: 12px;
}

.p-15 {
    padding: 15px;
}

.p-16 {
    padding: 16px;
}

.p-20 {
    padding: 20px;
}

.p-24 {
    padding: 24px;
}

.p-30 {
    padding: 30px;
}

.p-36 {
    padding: 36px;
}


.pt-5 {
    padding-top: 5px;
}

.pt-8 {
    padding-top: 8px;
}

.pt-10 {
    padding-top: 10px;
}

.p-11 {
    padding: 11px;
}

.pt-11 {
    padding-top: 11px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-16 {
    padding-top: 16px;
}

.pt-18 {
    padding-top: 18px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-8 {
    padding-bottom: 8px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-11 {
    padding-bottom: 11px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-16 {
    padding-bottom: 16px;
}

.pb-18 {
    padding-bottom: 18px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-24 {
    padding-bottom: 24px;
}

.pt-30 {
    padding-top: 30px;
}

.pl-3 {
    padding-left: 3px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-6 {
    padding-left: 6px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-11 {
    padding-left: 11px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-16 {
    padding-left: 16px;
}

.pl-18 {
    padding-left: 18px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-24 {
    padding-left: 24px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-60 {
    padding-left: 60px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-11 {
    padding-right: 11px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-16 {
    padding-right: 16px;
}

.pr-18 {
    padding-right: 18px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-24 {
    padding-right: 24px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-60 {
    padding-right: 60px;
}

/* margins */
.m-0 {
    margin: 0;
}

.m-10 {
    margin: 10px;
}

.m-15 {
    margin: 15px;
}

.m-auto {
    margin: auto;
}

.mr-5 {
    margin-right: 5px;
}

.mr-8 {
    margin-right: 8px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-24 {
    margin-right: 24px;
}

.mr-25 {
    margin-right: 25px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-8 {
    margin-left: 8px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-24 {
    margin-left: 24px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-100 {
    margin-left: 100px;
}

.ml-120 {
    margin-left: 120px;
}

.mt-min35 {
    margin-top: -35px;
}

.mt-min33 {
    margin-top: -33px;
}

.mt-min28 {
    margin-top: -28px;
}

.mt-min20 {
    margin-top: -20px;
}

.mt-3 {
    margin-top: 3px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-7 {
    margin-top: 7px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-18 {
    margin-top: 18px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-23 {
    margin-top: 23px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-28 {
    margin-top: 28px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-100 {
    margin-top: 100px;
}


.mb-5 {
    margin-bottom: 5px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* min-height */
.mh-min-content {
    min-height: min-content;
}

.mh-500px {
    min-height: 500px;
}

/* height */
.h-min-content {
    height: min-content;
}

.h-min-25 {
    min-height: 25%;
}

.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

/* width */
.min-w-min-content {
    min-width: min-content;
}

.min-w-max-content {
    min-width: max-content;
}

.min-w-fit-content {
    min-width: fit-content;
}

.min-w-65 {
    min-width: 65%;
}

.max-w-850px {
    max-width: 850px;
}

.max-w-250px {
    max-width: 250px;
}

.max-w-min-content {
    max-width: min-content;
}

.max-w-max-content {
    max-width: max-content;
}

.w-min-content {
    width: min-content;
}

.w-fit-content {
    width: fit-content;
}

.w-3 {
    width: 3%;
}

.w-5 {
    width: 5%;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-17 {
    width: 17%;
}

.w-20 {
    width: 20%;
}

.w-24 {
    width: 24%;
}

.w-25 {
    width: 25%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-48 {
    width: 48%;
}

.w-49 {
    width: 49%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-65 {
    width: 65%;
}

.w-70 {
    width: 70%;
}

.w-74 {
    width: 74%;
}

.w-75 {
    width: 75%;
}

.w-78 {
    width: 78%;
}

.w-80 {
    width: 80%;
}

.w-85 {
    width: 85%;
}

.w-90 {
    width: 90%;
}

.w-95 {
    width: 95%;
}

.w-98 {
    width: 98%;
}

.w-100 {
    width: 100%;
}


.w-1_1 {
    width: calc(100% / 1);
}

.w-1_2 {
    width: calc(100% / 2);
}

.w-1_3 {
    width: calc(100% / 3);
}

.w-1_4 {
    width: calc(100% / 4);
}

/* font-sizes */
.fs-0 {
    font-size: 0px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.button-info img,
.button-image img,
.button-return img {
    transition: filter 0.2s ease;
}

.button-info:hover img,
.button-image:hover img,
.button-return:hover img {
    filter: brightness(0) invert(1);
}

.fs-20.font-bold,
.fs-20.fw-bold {
    font-family: 'Nunito SemiBold';
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

/* font-weights */
.fw-bold {
    font-family: 'Nunito Bold';
}

.fw-normal {
    font-weight: normal;
}

.fw-medium {
    font-family: 'Nunito SemiBold';
}

/* special characters */

sup {
    line-height: 0;
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
}

/* backgrounds */
.bg-primary {
    background-color: #FD7E14;
}

.bg-info {
    background-color: rgb(243, 243, 245);
}

.bg-white {
    background-color: rgb(255, 255, 255);
}

.bg-light-gray {
    background-color: #d9dde0;
}

.bg-green {
    background-color: #dff0d8;
}

/* display */
.d-inline-block {
    display: inline-block;
    vertical-align: top;
}

.d-inline-block-middle {
    display: inline-block;
    vertical-align: middle;
}

.d-table {
    display: table;
    table-layout: fixed;
}

.d-table-cell {
    display: table-cell;
    vertical-align: middle;
}

/* wrapping */
.nowrap {
    white-space: nowrap;
}

.wrap-normal {
    white-space: normal;
    overflow-wrap: break-word;
}

/* cursor */
.cursor-pointer {
    cursor: pointer;
}

/* overflow */
.overflow-scroll {
    overflow: scroll;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

/* colors */
.green {
    color: rgb(36, 159, 28);
}

.red {
    color: red;
}

.grey {
    color: #73777a;
}

.yellow {
    color: #f3c11c;
}

.black {
    color: black;
}

.white {
    color: white;
}

.primary {
    color: #FD7E14;
}

.transparent {
    color: #00000000;
}

/* waiting animation LEGACY */
@keyframes donut-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spin {
    display: inline-block;
    border: 3px solid rgba(209, 10, 10, 0);
    border-left-color: #ffffff;
    border-right-color: #ffffff;
    border-top-color: #ffffff;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    animation: donut-spin 1.0s linear infinite;
}

.button-loading {
    background-color: #FD7E14 !important;
    border-color: #FD7E14 !important;
}

.button-loading:hover {
    background-color: #FE9E4F !important;
    border-color: #FE9E4F !important;
}

/* LEGACY */

.overlay {
    position: absolute;
    width: calc(100% - 255px);
    height: 100vh;
    z-index: 1;
    background: rgba(173, 176, 180, 0.5);
}

.qr-code {
    width: 600px;
    max-width: calc(100% - 32px);
    height: auto;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

/* columns */
.col-1 {
    display: grid;
    grid-template-columns: 1fr;
}

.col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.col-2-3_1 {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

.col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.col-3-1_2_2 {
    display: grid;
    grid-template-columns: 1fr 3fr 3fr;
    gap: 20px;
}

.col-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    button {
        color: inherit;
    }

    .exam-form-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .exam-form-header {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .exam-form-title-row {
        align-items: flex-start;
    }

    .exam-form-counter {
        text-align: left;
    }

    .medical-parameters-form-header {
        display: flex;
        align-items: center;
        min-width: 0;
        white-space: normal;
    }

    .medical-parameters-form-title {
        flex: 1 1 auto;
        min-width: 0;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .medexam-parameters-header {
        grid-template-columns: minmax(0, 1fr);
    }

    .medexam-parameters-header .line {
        grid-column: 1;
    }

    .medexam-parameters-actions {
        width: 100%;
        margin-top: 8px;
    }

    .medexam-parameters-actions .button-info {
        width: 100%;
        box-sizing: border-box;
    }

    #main-space > .pl-24 {
        padding-left: 16px;
    }

    #main-space > .pr-24 {
        padding-right: 16px;
    }

    .list-tabs-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .list-tabs-scroll::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
        background: transparent;
    }

    .body-white {
        background-color: #F9F9F9;
    }

    .central-form,
    .central-form-wide {
        width: calc(100% - 32px);
        max-width: 650px;
        margin-top: 80px;
        margin-bottom: 12px;
        box-sizing: border-box;
    }

    .central-form .mt-35,
    .central-form-wide .mt-35 {
        margin-top: 24px;
    }

    .central-form .logo-wide,
    .central-form-wide .logo-wide {
        width: min(241px, 100%);
        height: auto;
    }

    [mobile-hide] {
        display: none !important;
    }

    [mobile-show] {
        display: inline-block !important;
    }

    .col-2 {
        grid-template-columns: 1fr;
    }

    .profile-form-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .profile-form-title-wrap {
        padding-top: 7px;
    }

    .profile-form-title-wrap .fs-20 {
        overflow-wrap: anywhere;
    }

    .profile-data-block,
    .profile-edit-content .block {
        padding: 16px;
    }

    .col-3 {
        grid-template-columns: 1fr;
    }

    .col-4 {
        grid-template-columns: 1fr;
    }
}


/* icons */
.icon-container-primary {
    padding: 15px;
    background-color: oklab(0.999994 0.0000455678 0.0000200868 / 0.2);
    border-radius: 15px;
    width: 25px;
    height: 25px;
    user-select: none;
}

.icon-container-secondary {
    padding: 15px;
    background-color: rgb(245, 245, 245);
    border-radius: 15px;
    width: 25px;
    height: 25px;
    user-select: none;
}

.icon-container-secondary-sm {
    padding: 7px;
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
    width: 20px;
    height: 20px;
    user-select: none;
}

.icon-container-secondary-sm img {
    width: 20px;
    height: 20px;
    display: block;
}

.icon-container-transparent {
    background-color: transparent;
    border-radius: 15px;
    width: 20px;
    height: 20px;
    user-select: none;
}

/* LEGACY */
.icon-container-misc {
    padding: 7px;
    background-color: rgba(234, 179, 8, 0.1);
    border-radius: 10px;
    width: 20px;
    height: 20px;
    user-select: none;
}

.icon-misc {
    width: 20px;
    height: 20px;
    user-select: none;
}


/* badges */

.badge-green,
.badge-red,
.badge-orange,
.badge-grey,
.badge-category {
    display: inline-block;
    box-sizing: border-box;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    user-select: none;
}

.badge-green {
    background-color: rgba(34, 197, 94, 0.1);
    color: rgb(21, 128, 61);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-red {
    background-color: rgba(239, 68, 68, 0.1);
    color: rgb(185, 28, 28);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-orange {
    background-color: rgba(234, 179, 8, 0.1);
    color: rgb(161, 98, 7);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-grey {
    color: rgb(0, 0, 0);
    border: 1px solid #00000014;
}

.badge-category {
    color: rgb(0, 0, 0);
    background-color: #e5e5e5;
    border: none;
}

/* scrollbar */

/* total width */
body::-webkit-scrollbar {
    background-color: rgba(249, 249, 249, 0);
    width: 8px;
    height: 8px;
}

/* background of the scrollbar except button or resizer */
body::-webkit-scrollbar-track {
    background-color: rgb(249, 249, 249);
}

/* scrollbar itself */
body::-webkit-scrollbar-thumb {
    background-color: rgb(253, 126, 20);
    border-radius: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: rgb(252, 138, 42);
    border-radius: 16px;
}

/* set button(top and bottom of the scrollbar) */
body::-webkit-scrollbar-button {
    display: none;
}

/* scrollbar textarea*/

/* total width */
.textarea-base::-webkit-scrollbar {
    background-color: rgba(249, 249, 249, 0);
    width: 8px;
    height: 8px;
}

/* background of the scrollbar except button or resizer */
.textarea-base::-webkit-scrollbar-track {
    background-color: #f3f3f5;
    margin-top: 20px;
}

/* scrollbar itself */
.textarea-base::-webkit-scrollbar-thumb {
    background-color: rgb(253, 126, 20);
    border-radius: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.textarea-base::-webkit-scrollbar-thumb:hover {
    background-color: rgb(252, 138, 42);
    border-radius: 16px;
}

/* scrollbar textarea disabled*/

/* total width */
.textarea-base::-webkit-scrollbar {
    background-color: rgba(249, 249, 249, 0);
    width: 8px;
    height: 8px;
}

/* background of the scrollbar except button or resizer */
.textarea-base:disabled::-webkit-scrollbar-track {
    background-color: rgb(249, 249, 249);
    margin-top: 20px;
}

/* scrollbar itself */
.textarea-base:disabled::-webkit-scrollbar-thumb {
    background-color: rgb(253, 126, 20);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.textarea-base:disabled::-webkit-scrollbar-thumb:hover {
    background-color: rgb(252, 138, 42);
    border-radius: 16px;
}


.warning-message {
    background-color: rgb(253, 126, 20);
    color: white;
    border-radius: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'Nunito Regular';
}

.warnings-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.warnings-container [warning] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
}

.warnings-container .warning-bullet {
    flex: 0 0 8px;
    text-align: center;
}

.warnings-container .warning-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

.warnings-container [warning] input {
    flex: 0 0 auto;
    margin: 2px 0 0;
    vertical-align: top;
}

.warnings-container.warning-above-block {
    margin: 0 !important;
}

.warnings-container.warning-above-block:not(.hidden) + .block-secondary {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .signature-actions,
    .signature-actions .signature-action,
    .signature-actions .signature-action button {
        width: 100%;
        box-sizing: border-box;
    }

    .warnings-container {
        display: grid;
        grid-template-columns: 20px minmax(0, 1fr);
        align-items: start;
        gap: 12px;
        padding: 16px !important;
        border-radius: 12px;
    }

    .warnings-container.hidden {
        display: none;
    }

    .warnings-container .warnings-icon {
        display: block;
        width: 20px;
        padding: 1px 0 0;
    }

    .warnings-container .sign-help-icon {
        display: block;
        padding-right: 0;
    }

    .warnings-container .warnings-content {
        display: block;
        width: auto;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .overlay {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100dvh;
        padding: 16px;
        box-sizing: border-box;
    }

    #overlay-container {
        width: 100%;
        max-width: calc(100vw - 32px);
        padding: 0;
        box-sizing: border-box;
    }
}
