@font-face {
    font-family: 'IBM Plex Serif';
    font-weight: 700;
    font-style: normal;
    src: url(../fonts/IBMPlexSerif-Bold.ttf);
}

@font-face {
    font-family: 'IBM Plex Serif';
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/IBMPlexSerif-Regular.ttf);
}

@font-face {
    font-family: 'IBM Plex Serif';
    font-weight: 500;
    font-style: normal;
    src: url(../fonts/IBMPlexSerif-SemiBold.ttf);
}

@font-face {
    font-family: 'PT Root UI';
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/PT-Root-UI_Regular.ttf);
}

@font-face {
    font-family: 'PT Root UI';
    font-weight: 500;
    font-style: normal;
    src: url(../fonts/PT-Root-UI_Medium.ttf);
}

@font-face {
    font-family: 'PT Root UI';
    font-weight: 700;
    font-style: normal;
    src: url(../fonts/PT-Root-UI_Bold.ttf);
}

@font-face {
    font-family: 'Inter';
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/Inter-Regular.otf);
}

html {
    scrollbar-width: thin;
    scrollbar-color: #12387D transparent;
}

* {
    padding: 0;
    margin: 0;
    line-height: 100%;
    font-family: 'PT Root UI', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}


.IBM-Plex-Serif {
    font-family: 'IBM Plex Serif', sans-serif;
}

.uppercase {
    text-transform: uppercase;
}

.underline {
    text-decoration: underline;
}

.line-height_143 {
    line-height: 143% !important;
}

.max-content {
    width: max-content;
}

.w-auto {
    width: auto !important;
}

.line-height_150 {
    line-height: 150%;
}

.overflow-hidden {
    overflow: hidden;
}

.reg-container {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0;
    height: 100vh;
}

.reg-container_wrapper {
    width: 49.25%;
}

.reg-container-left {
    width: 50.75%;
    background-color: #103150;
    /* padding: 20px 62px; */
    padding: 20px 76px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    background-image: url(../images/patterns.png);
    background-repeat: no-repeat;
    background-position: -15% center;
    background-size: contain;
}

.colum-reg-container {
    display: flex;
    flex-direction: column;
    gap: 140px;
    align-items: center;
    justify-content: center;
}

.title-h1-white {
    color: #F6F3EC;
    font-size: 30px;
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 149%;
}

.reg-container-right {
    display: flex;
    /* align-items: center; */
    /* justify-content: flex-start; */
    padding: 20px 65px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10rem;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 478px;
    padding: 0 4px;
    overflow: hidden;
}

.title-h2-reg {
    color: #121110;
    font-size: 26px;
    /* font-family: 'PT Root UI', sans-serif; */
    font-weight: 700;
    /* text-transform: uppercase; */
    /* line-height: 27px;
    letter-spacing: 3px; */
    text-align: center;
    width: 100%;
    letter-spacing: 0.01em;
    /* margin-bottom: 18px; */
}

.input-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    position: relative;
}

.input-box .form-label {
    margin-bottom: 0;
}

.input-box_half {
    width: 49%;
}

.input-box_bg-grey {
    background: #F4F6F9;
    padding: 8px;
    border-radius: 4px;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.button-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    /* width: fit-content; */
    background: #12387D;
    /* border-color: #12387D;
    border: 1px solid #12387D; */
    border-radius: 4px;
    color: white;
    font-size: 20px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 700;
    line-height: 30px;
    transition: 0.3s;
    cursor: pointer;
}

.button-custom:disabled {
    background: #B8C4D9;
    pointer-events: none;
}

.button-custom:hover,
.button-custom:active,
.button-custom:focus {
    /* background: #FFFFFF;
    color: #927B6E; */
    color: #FFFFFF;
    box-shadow: 0px 0px 0px 4px rgba(18, 56, 125, 0.25);
    border: none;
    outline: none;
}

.button-custom_light {
    background: #FFFFFF;
    color: #927B6E;
    border: 1px solid #927B6E;
}

.button-custom_light:hover,
.button-custom_light:active,
.button-custom_light:focus {
    border: 1px solid transparent;
    background: #927B6E;
    box-shadow: 0px 0px 0px 4px rgba(146, 123, 110, 0.25);
    color: #FFFFFF;
}

.button-custom_red {
    background: #FFFFFF;
    color: #DC3545;
    border: 1px solid #DC3545;
}

.button-custom_red:hover,
.button-custom_red:active,
.button-custom_red:focus {
    border: 1px solid transparent;
    background: #DC3545;
    box-shadow: 0px 0px 0px 4px rgba(146, 123, 110, 0.25);
    color: #FFFFFF;
}

.button-custom_full-width {
    width: 100%;
}

.button-custom_max-content {
    width: max-content;
}

.button-custom_small-height {
    line-height: 150%;
    padding: 6px 15px;
}

.form-control {
    border: 1px solid #B8C2CB !important;
    padding: 10px 10px 10px 14px !important;
    color: #121110;
    font-size: 20px !important;
    font-family: 'PT Root UI', sans-serif;
    line-height: 27px;
    border-radius: 4px !important;
}

.form-control::placeholder {
    color: #B8C2CB;
}

.form-control-sm {
    padding: 5px 2.5rem 5px 12px !important;
    font-size: 16px !important;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    box-shadow: 0px 0px 0px 4px rgba(18, 56, 125, 0.10) !important;
    color: #121110;
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #198754 !important;
}

.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
    box-shadow: 0 0 0 0.25rem rgba(25,135,84,.25) !important;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545 !important;
}

.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220,53,69,.25) !important;
}

.form-control::placeholder {
    color: #B8C2CB;
    font-size: 20px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    line-height: 27px;
}

.form-control-sm::placeholder {
    font-size: 16px;
}

.textarea-custom {
    resize: none;
    overflow: hidden;
    height: auto;
}

.multiselect.is-active {
    box-shadow: 0px 0px 0px 4px rgba(18, 56, 125, 0.10) !important;
    color: #121110;
}

.multiselect-tag {
    background: rgba(18, 56, 125, 1) !important;
}

/* .input-field {
    width: 100%;
    border: 1px solid #B8C2CB !important;
    outline: none;
    padding: 10px 10px 10px 14px !important;
    color: #121110;
    font-size: 20px !important;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    line-height: 27px;
    border-radius: 4px !important;
}

.input-field:hover,
.input-field:focus,
.input-field:active {
    box-shadow: 0px 0px 0px 4px rgba(18, 56, 125, 0.10) !important;
} */

.input-field::placeholder {
    color: #B8C2CB;
    font-size: 20px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    line-height: 27px;
}

.link {
    color: #44494E;
    font-size: 14px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 400;
    line-height: 21px;
    transition: 0.3s;
    width: fit-content;
}

.link_103150 {
    color: #103150;
    text-decoration: underline;
}

.link:hover {
    opacity: 0.7;
    color: #12387D;
}

.link_big {
    color: #12387D;
    font-size: 16px;
    line-height: 27px;
}

.link_email,
.link_phone {
    position: relative;
    padding-left: 32px;
}

.link_email::before,
.link_phone::before {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    left: 0;
    top: calc(50% - 12px);
}

.link_email::before {
    background: url(../images/icon-email.svg) center no-repeat;
}

.link_phone::before {
    background: url(../images/icon-phone.svg) center no-repeat;
}

.form .button {
    width: 100%;
}

.text {
    color: #44494E;
    font-size: 20px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 500;
    line-height: 27px;
}

.text_18px {
    font-size: 18px !important;
}

.text_16px {
    font-size: 16px !important;
}

.text_14px {
    font-size: 14px !important;
}

.text_103150 {
    color: #103150;
}

.text_12387D {
    color: #12387D;
}

.text_121110 {
    color: #121110;
}

.text_44494E {
    color: #44494E !important;
}

.text_fw400 {
    font-weight: 400;
}

.text_fw500 {
    font-weight: 500;
}

.bg-E9ECEF {
    background: #E9ECEF;
}

.delimiter {
    position: relative;
    color: #B8C2CB;
    font-size: 16px;
}

.delimiter::before,
.delimiter::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 204px;
    height: 1px;
    background: #B8C2CB;
}

.delimiter::before {
    left: 44px;
}

.delimiter::after {
    right: 44px;
}

.password {
    position: relative;
}

.password-control {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 18px;
    height: 15px;
    background: url(../images/icon-no-view.svg) center no-repeat;
}

.password-control.view {
    background: url(../images/icon-view.svg) center no-repeat;
}

.support-box {
    display: flex;
    gap: 1rem;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    /* margin-top: 20px; */
}

.support-box_aside {
    margin-top: 0;
    flex-direction: column;
}

.support-box_aside .link {
    color: #E9ECEF;
    font-size: 16px;
    opacity: 0.5;
}

.support-box_aside .link:hover {
    opacity: 1;
}

.support-box_aside .link_email::before {
    background: url(../images/icon-email-FFF.svg) center no-repeat;
}

.support-box_aside .link_phone::before {
    background: url(../images/icon-phone-FFF.svg) center no-repeat;
}

.aside-support-content {
    display: none;
}

.link_feedback {
    /* display: none; */
    text-decoration: underline;
}

.modal-content {
    border-radius: 16px;
}

.modal-text {
    text-align: center;
    width: 100%;
    color: #121110;
    font-size: 20px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 500;
    line-height: 155%;
}

.modal-text .link {
    font-size: inherit;
    color: #12387D;
}

.modal-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.modal-dialog {
    max-width: 538px;
    border-radius: 16px;
}

.modal-title {
    font-family: 'IBM Plex Serif', sans-serif;
    color: #121110;
    font-size: 26px;
    font-weight: 700;
    word-wrap: break-word;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0.005em;
}

.modal-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

.modal-close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 23px;
    right: 19px;
    background: url(../images/icon-x-lg.svg) center no-repeat;
    transition: 0.5s;
}

.modal-close:hover {
    transform: rotate(180deg);
}

.role-tabs {
    width: 100%;
    gap: 20px;
    margin: 10px 0;
    flex-wrap: nowrap;
}

.tabs-item {
    color: #44494E;
    font-size: 20px;
    line-height: 27px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    padding-bottom: 5px;
}

.tabs-item.active {
    border-bottom: 2px solid #927B6E;
    color: #121110;
}

.tabs-item:hover {
    color: inherit;
    opacity: 0.9;
    color: #121110;
    border-bottom: 2px solid #927B6E;
}

.tabs-item_small {
    font-size: 16px;
    padding-bottom: 1px;
}

.main-window {
    /* display: grid;
    grid-template-columns: 264px 1fr; */

    display: block;
    margin: 88px 0 0 264px;
    min-height: 100vh;
}

.sidebar {
    background: #103150;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    /* gap: 50px; */
    gap: 25px;
    transition: 0.5s;
    z-index: 100;

    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 264px;
}

.tabs-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

/* .sidebar-title {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
    color: #FFF;
    font-size: 20px;
    font-family: 'IBM Plex Serif', sans-serif;
    font-weight: 700;
    position: relative;
    padding-left: 40px;
}

.sidebar-title::before {
    content: '';
    position: absolute;
    top: calc(50% - 15px);
    left: 0;
    width: 30px;
    height: 30px;
    background: url(../images/icon-check.svg) no-repeat;
} */

.sidebar .logo {
    padding:  0 32px;
}

.sidebar-btn {
    width: 100%;
    position: relative;
    display: flex;
    /* align-items: center;
    justify-content: center; */
    /* padding: 24px 0; */
    padding: 22px 0;
    color: #FFF;
    opacity: 0.55;
    font-size: 18px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    border-left: 4px solid transparent;
    border-radius: 2px;
}

.sidebar-btn__icon {
    position: relative;
    margin-left: 62px;
}

.sidebar-btn__icon::before {
    content: '';
    position: absolute;
    left: -33px;
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
}

.sidebar-btn__icon_accreditation::before {
    background: url(../images/icon-accreditation.svg) no-repeat;
}

.sidebar-btn__icon_customers::before {
    background: url(../images/icon-people.svg) no-repeat;
}

.sidebar-btn__icon_users::before {
    background: url(../images/icon-laptop.svg) no-repeat;
}

.sidebar-btn__icon_profile::before {
    background: url(../images/icon-profile.svg) no-repeat;
}

.sidebar-btn__icon_expertise::before {
    background: url(../images/icon-books.svg) no-repeat;
}

.sidebar-btn__icon_message::before {
    background: url(../images/icon-message.svg) no-repeat;
}

.sidebar-btn__icon_materials::before {
    background: url(../images/icon-materials.svg) no-repeat;
}

.sidebar-btn__icon_acts::before {
    background: url(../images/icon-acts.svg) no-repeat;
}

.sidebar-btn.active,
.sidebar-btn:focus,
.sidebar-btn:hover {
    /* background: linear-gradient(270deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 98%);
    border-right: 5px solid #927B6E; */
    opacity: 1;
    border-left: 4px solid #B8C4D9;
    color: #FFFFFF;
}

/* .sidebar .button-custom {
    margin: 0 auto;
} */

.button-exit {
    position: relative;
    display: flex;
    margin-top: -15px;
    padding: 20px 20px 20px 65px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    opacity: 0.5;
    transition: 0.3s;
}

.button-exit::before {
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    left: 33px;
    width: 24px;
    height: 20px;
    background: url(../images/icon-logout.svg) no-repeat;
}

.button-exit:hover,
.button-exit:focus,
.button-exit:active {
    opacity: 1;
}

.support-box_aside .link_feedback {
    display: block;
}

.support-box_aside .link_phone_main {
    order: -1;
}

.support-box_aside .aside-support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 25px;
}

.aside-support-content p {
    color: #E9ECEF;
    opacity: 0.5;
}

.nav-custom {
    padding: 12px 24px;
    border-bottom: 1px #B8C2CB solid;

    position: fixed;
    top: 0;
    left: 264px;
    right: 0;
    height: 88px;
    background: #FFFFFF;
    z-index: 10;
}

.blue-title {
    color: #103150;
    font-size: 20px;
    font-family: 'IBM Plex Serif', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    /* text-transform: uppercase; */
}

.profile-data {
    gap: 25px;
}

.accreditation {
    color: #121110;
    font-size: 16px;
    line-height: 27px;
    position: relative;
    padding-left: 45px;
    padding: 8px 16px 8px 42px;
    background: rgba(38, 193, 105, 0.10);
    border-radius: 24px;
}

.accreditation_denied {
    background: rgba(235.01, 3.33, 3.33, 0.10);
}

.accreditation_false {
    background: rgba(250, 162, 26, 0.10);
}

.accreditation_request {
    background: rgba(18, 56, 125, 0.10);
}

.accreditation::before {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: 8px;
    width: 24px;
    height: 24px;
    background: url(../images/icon-accreditation-true.svg) no-repeat center;
    background-size: contain;

}

.accreditation_denied::before {
    background: url(../images/icon-accreditation-denied.svg) no-repeat center;
}

.accreditation_false::before {
    background: url(../images/icon-accreditation-false.svg) no-repeat center;
}

.accreditation_request::before {
    background: url(../images/icon-accreditation-request.svg) no-repeat center;
}

.notification {
    width: 40px;
    height: 40px;
    background: url(../images/icon-bell.svg) center no-repeat;
    position: relative;
    margin-right: 13px;
    border-radius: 4px;
    /* background-color: #F4F6F9; */
    cursor: pointer;
    transition: 0.3s;
}

.notification:hover {
    opacity: 0.5;
}

.notification.active {
    background-color: #F4F6F9;
}

/* .notification.active::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #EB0303;
    border-radius: 100%;
    top: 0;
    right: 4px;
} */

.notification__new {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #DC3545;
    width: 15px;
    height: 13px;
    color: #FFF;
    font-size: 10px;
    position: absolute;
    right: 6px;
    top: 8px;
}

.profile-name {
    color: #121110;
    font-size: 20px;
    font-family: 'PT Root UI', sans-serif;
    font-weight: 700;
    line-height: 130%;
}

.lk-main {
    padding: 28px 24px 155px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gap25px {
    gap: 25px;
}

.gap24px {
    gap: 24px;
}

.gap16px {
    gap: 16px;
}

.gap8px {
    gap: 8px;
}

.btn_16px {
    font-size: 16px;
    font-weight: 400;
}

.accreditation-info-text {
    width: 100%;
    padding: 18px;
    background: #F9F6F1;
    border-radius: 4px;
}

.accreditation-info-text p {
    color: #121110;
    font-size: 16px;
    line-height: 24px;
    padding-left: 23px;
    position: relative;
}

.accreditation-info-text p::before {
    position: absolute;
    content: '';
    width: 16px;
    height: 24px;
    top: 0;
    left: -2px;
    background: url(../images/icon-info.svg) no-repeat center;
}

.accreditation-go {
    padding-top: 13px;
    gap: 13px;
}

.tabs-small {
    gap: 24px;
    margin: 0;
}

.form-check {
    margin: 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

/* .form-check-input {
    margin: 0;
} */

.form-check-input[type='radio'],
.form-check-input[type='checkbox'] {
    color: #927B6E;
}

.form-check-input[type='checkbox']:focus, .form-check-input[type='radio']:focus {
    --tw-ring-color: #927B6E;
}

.role-container {
    gap: 40px;
}

.choice-participation {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inputs-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 27px 0;
    flex-wrap: wrap;
}

.date-btn {
    width: 20px;
    height: 20px;
}

/* input[type=date]::-webkit-calendar-picker-indicator{
	display:none;
}
input[type=date]{
	background:url(../images/icon-calendar.svg) no-repeat 100% 50%;
} */

.calendar {
    width: 14px;
    height: 14px;
    position: relative;
    background: url(../images/icon-calendar.svg) no-repeat center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1;
    position: absolute;
    bottom: 11px;
    right: 15px;
}

.calendar:hover {
    opacity: 0.5;
}

.calendar__input {
    position: absolute;
    top: calc(50% - 7px);
    right: calc(50% - 7px);
    opacity: 0;
    padding: 0 !important;
    width: 14px;
    height: 14px;
    overflow: hidden;
    cursor: pointer;
    z-index: 2;
}

.calendar__input::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.full-width {
    width: 100%;
}

.input-description {
    color: #44494E;
    font-size: 14px;
}

.inputs-container_labels {
    margin-top: 12px;
    gap: 21px 0;
}

.form-check-label {
    line-height: 145%;
    color: #121110;
}

.labels-title {
    margin-bottom: -6px;
}

.btn-w150px-h40px {
    width: 150px;
    height: 40px;
}

/* .form-control {
    color: #B8C2CB;
} */

.form-label {
    color: #103150;
    font-weight: 500;
}

.download-file {
    position: relative;
    /* width: 124px;
    height: 36px;
    background: #927B6E;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center; */
    /* margin-top: 6px; */
    /* transition: 0.3s; */
}

/* .download-file:hover,
.download-file:focus,
.download-file:active {
    box-shadow: 0px 0px 0px 4px rgba(146, 123, 110, 0.25);
    opacity: 0.9;
} */

.download-file:hover {
    background: transparent;
    border: 1px solid #927B6E;
}
.download-file .form-control:disabled {
    opacity: 0;
}

.input-file {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    opacity: 0;
}

.download-file__description {
    position: relative;
    /* color: #FFFFFF;
    font-size: 16px; */
    padding-left: 22px;
    transition: 0.3s;
}

.download-file:hover .download-file__description {
    color: #927B6E;
}

.download-file__description::before {
    position: absolute;
    content: '';
    left: 0;
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    background: url(../images/icon-download.svg) no-repeat center;
    background-size: contain;
}

.files-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 11px;
}

.file-box {
    /* border-bottom: 1px solid #B8C2CB; */
    padding: 1px 10px 6px 7px;
    transition: 0.3s;
}

.file-name,
.file-icon-doc {
    position: relative;
    padding-left: 22px;
    color: #12387D;
    font-size: 16px;
    line-height: 150%;
    width: 100%;
    transition: 0.3s;
}

.file-name::before,
.file-icon-doc::before {
    position: absolute;
    content: '';
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    background: url(../images/icon-document.svg) no-repeat center;
    background-size: contain;
}

.file-icon-doc:hover {
    opacity: 0.5;
    color: #12387D;
}

/* .file-name::after {
    position: absolute;
    content: '';
    right: 10px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: url(../images/icon-download-blue.svg) no-repeat center;
    background-size: contain;
    opacity: 0;
} */

.delete-btn {
    width: 14px;
    height: 14px;
    background: url(../images/icon-basket.svg) no-repeat center;
    background-size: contain;
    opacity: 0;
    margin-top: 4px;
    cursor: pointer;
}

.download-btn {
    width: 14px;
    height: 14px;
    background: url(../images/icon-download-blue.svg) no-repeat center;
    background-size: contain;
    opacity: 0;
    margin-top: 4px;
    cursor: pointer;
}

.file-box:hover .delete-btn,
.file-box:hover .download-btn {
    opacity: 1;
}

.file-box:hover .file-name {
    color: #EB0303;
}
.file-box:hover .file-name.not-red {
    color: #12387D;
}

.file-box:hover .file-name::before {
    background: url(../images/icon-document-red.svg) no-repeat center;
}

.file-box:hover .file-name.not-red::before {
    background: url(../images/icon-document.svg) no-repeat center;
}

/* .file-box:hover .file-name::after {
    opacity: 1;
} */

.column-half {
    width: 48%;
}


.add-field-btn,
.remove-field-btn {
    position: relative;
    width: 36px;
    height: 36px;
}

.remove-field-btn::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: #927B6E;
    top: 50%;
    left: calc(50% - 6px);
    transition: 0.3s;
    border-radius: 4px;
}

.remove-field-btn:hover::before {
    background: #FFF;
}

.input-width-btn {
    width: calc(100% - 8px - 36px);
}

.form-check-input[type=radio] {
    margin-top: 0;
}

.custom-calendar {
    background: url(../images/icon-calendar.svg) no-repeat 98% center;
}

/* .air-datepicker-cell, */
.air-datepicker-cell .-current-,
.air-datepicker-body--day-name {
    color: #121110 !important;
}

.air-datepicker-cell.-year-.-other-decade-,
.air-datepicker-cell.-day-.-other-month- {
    color: #B8C2CB !important;
}

.air-datepicker-nav--title,
.air-datepicker-nav--title i {
    color: #121110 !important;
}

.air-datepicker-cell:hover {
    background: #EAEDF0 !important
}

.air-datepicker-cell.-current-,
.air-datepicker-cell.-month-.-current {
    border: 1px solid #12387D !important;
    border-radius: 4px !important;
}

.air-datepicker-cell.-selected- {
    background: #12387D !important;
    color: #FFFFFF !important;
}

.air-datepicker-button {
    color: #12387D !important;
}

.air-datepicker-body--day-names {
    margin: 12px 0 !important;
}

.air-datepicker-body--cells.-months- {
    gap: 5px;
}



.breadcrumb-item {
    color: #12387D;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6C757D;
    text-decoration: none;
}

.breadcrumb-item:first-child {
    padding-left: 18px;
    background-size: contain;
}

/* .breadcrumb-item:first-child::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background-size: contain;
} */

.breadcrumb-item_profile {
    background: url(../images/icon-profile-blue.svg) no-repeat;
}

.breadcrumb-item_expertise {
    background: url(../images/icon-books-blue.svg) no-repeat;
}

.breadcrumb-item_message {
    background: url(../images/icon-message-blue.svg) no-repeat;
}

.breadcrumb-item_materials {
    background: url(../images/icon-materials-blue.svg) no-repeat;
}

.breadcrumb-item_accreditation {
    background: url(../images/icon-accreditation-blue.svg) no-repeat;
}

.table {
    color: #121110;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 0;
}

.table thead {
    background-color: #F4F6F9;
}

.table th,
.table td {
    border: 1px solid #E9ECEF;
}

.table>:not(:last-child)>:last-child>* {
    border-bottom-color: #E9ECEF;
}

.table tr th,
.table tr td {
    max-width: 172px;
    line-height: 166%;
}

.table tr.active {
    background: #F9F6F1;
}

.max-width210px {
    max-width: 210px !important;
}

.width150px {
    width: 150px !important;
}

.table tr th:first-child,
.table tr td:first-child {
    text-align: center;
}

.pagination-btn {
    transition: 0.3s;
}

.pagination-btn_blue,
.pagination-btn:hover {
    background-color: #12387D;
}

.pagination-select {
    border: 1px solid #E9ECEF;
    border-radius: 4px;
}

.table-link {
    cursor: pointer;
    transition: 0.3s;
}

.table-link:hover {
    text-decoration: underline;
    color: #121110;
}

.files-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1430px;
}

.files-container iframe {
    max-width: 560px;
    min-height: 315px;
}

.file {
    transition: 0.3s;
    padding: 8px 30px;
    /* width: 49%; */
}

.file:hover {
    background: rgba(18, 56, 125, 0.03);
    color: #12387D;
}

.file::before {
    position: absolute;
    content: '';
    top: 8px;
    left: 8px;
    width: 14px;
    height: 14px;
    background: url(../images/icon-file.svg) no-repeat center;
}

.file::after {
    position: absolute;
    content: '';
    top: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    background: url(../images/icon-download-blue.svg) no-repeat center;
    opacity: 0;
    transition: 0.3s;
}

.file:hover.file::after {
    opacity: 1;
}

.icon-16px {
    width: 16px;
    min-width: 16px;
}



/* Эти стили для страницы /webinar */
.webinar-main-page {
    flex-direction: column;
}
.webinar-main-page .reg-container-left,
.webinar-main-page .reg-container-right {
    width: 100%;
    align-items: center;
    justify-content: center;
}
.webinar-main-page .reg-container-right {
    flex-direction: column;
    max-width: 1267px;
    margin: 0 auto;
}
.webinar-main-page .reg-container-left {
    background-image: none;
}
.webinar-main-page .colum-reg-container .title-h1-white {
    display: none;
}
.webinar-main-page .colum-reg-container {
    flex-direction: row;
    gap: 24px;
}
.webinar-main-page .logo {
    width: 200px;
}
.webinar-main-page .form-container {
    max-width: none;
}
.webinar-main-page .button-custom_full-width {
    width: 90%;
}
.webinar-frame {
    width: 60%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Конец стилей для страницы /webinar */



.container-with-btn {
    width: calc(100% - 36px - 8px);
}

.list-marker li {
    padding-left: 15px;
    position: relative;
    line-height: 150%;
}

.list-marker li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #121110;
    border-radius: 100%;
    top: 10px;
    left: 0;
}

/*Строка прогресса <div class="historyRow...   */
.historyRow::before {
    position: absolute;
    content: '';
    top: 30px;
    width: 100%;
    height: 1px;
    background: #E9ECEF;
}

.historyIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #12387D;
    position: relative;
}

.historyIconInProcess {
    background: #E1EBFF;
}

.historyIconComplete {
    background: #E9ECEF;
}

.historyIcon i {
    display: block;
    width: 24px;
    height: 24px;
    /* background: #FFF; */
}


.historyIconStatus0 {
    background: url(../images/icon-historyIconStatus0-white.svg) no-repeat center;
}

.historyIconStatus1 {
    background: url(../images/icon-historyIconStatus1-white.svg) no-repeat center;
}

.historyIconStatus2 {
    background: url(../images/icon-historyIconStatus2-white.svg) no-repeat center;
}

.historyIconStatus3 {
    background: url(../images/icon-historyIconStatus3-white.svg) no-repeat center;
}

.historyIconStatus4 {
    background: url(../images/icon-historyIconStatus4-white.svg) no-repeat center;
}

.historyIconStatus5 {
    background: url(../images/icon-historyIconStatus5-white.svg) no-repeat center;
}

.historyIconStatus6 {
    background: url(../images/icon-historyIconStatus6-white.svg) no-repeat center;
}

.historyIconComplete .historyIconStatus0 {
    background: url(../images/icon-historyIconStatus0-black.svg) no-repeat center;
}

.historyIconComplete .historyIconStatus1 {
    background: url(../images/icon-historyIconStatus1-black.svg) no-repeat center;
}

.historyIconComplete .historyIconStatus2 {
    background: url(../images/icon-historyIconStatus2-black.svg) no-repeat center;
}

.historyIconComplete .historyIconStatus3 {
    background: url(../images/icon-historyIconStatus3-black.svg) no-repeat center;
}

.historyIconComplete .historyIconStatus4 {
    background: url(../images/icon-historyIconStatus4-black.svg) no-repeat center;
}

.historyIconComplete .historyIconStatus5 {
    background: url(../images/icon-historyIconStatus5-black.svg) no-repeat center;
}

.historyIconComplete .historyIconStatus6 {
    background: url(../images/icon-historyIconStatus6-black.svg) no-repeat center;
}


.historyIconInProcess .historyIconStatus0 {
    background: url(../images/icon-historyIconStatus0-blue.svg) no-repeat center;
}

.historyIconInProcess .historyIconStatus1 {
    background: url(../images/icon-historyIconStatus1-blue.svg) no-repeat center;
}

.historyIconInProcess .historyIconStatus2 {
    background: url(../images/icon-historyIconStatus2-blue.svg) no-repeat center;
}

.historyIconInProcess .historyIconStatus3 {
    background: url(../images/icon-historyIconStatus3-blue.svg) no-repeat center;
}

.historyIconInProcess .historyIconStatus4 {
    background: url(../images/icon-historyIconStatus4-blue.svg) no-repeat center;
}

.historyIconInProcess .historyIconStatus5 {
    background: url(../images/icon-historyIconStatus5-blue.svg) no-repeat center;
}

.historyIconInProcess .historyIconStatus6 {
    background: url(../images/icon-historyIconStatus6-blue.svg) no-repeat center;
}

.color4BBA8C {
    color: #4BBA8C;
}

.color44494E {
    color: #44494E;
}

.colorDC3545 {
    color: #DC3545;
}

.color927B6E {
    color: #927B6E;
}

.experts-grid-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.experts-grid-wrap * {
    line-height: 150% !important;
}

.grid-col-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 0.3fr;
    gap: 27px;
}

.grid-col-4 {
    display: grid;
    grid-template-columns: 0.3fr 1fr 1.33fr 1.33fr;
    gap: 27px;
}

.grid-col-5 {
    display: grid;
    grid-template-columns: 0.3fr 1fr 1.33fr 1.33fr 0.3fr;
    gap: 24px;
}

.grid-col-6 {
    display: grid;
    grid-template-columns: 0.3fr 1fr 1fr 1fr 1fr 0.3fr;
    gap: 24px;
}

.scroll-down-btn {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #E1EBFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    transition: 0.3s;
    cursor: pointer;
    margin: 0.5rem;
    margin-left: auto;
}

.scroll-down-btn:active,
.scroll-down-btn:focus,
.scroll-down-btn:focus-visible {
    border: none;
    outline: none;
}

.scroll-down-btn:hover {
    scale: 1.2;
}

.burger-btn {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.4rem;
    width: 60px;
    padding: 0.5rem 1rem;
    display: none;
    position: fixed;
    top: 28px;
    left: 0;
    z-index: 20;
    transition: 0.5s;
}

.burger-btn_active {
    left: 265px;
}

.burger-btn span {
    width: 100%;
    height: 2px;
    border-radius: 1rem;
    background-color: #103150;
    transition: 0.5s;
    position: relative;
}

.burger-btn_active span:nth-child(1) {
    transform: rotate(45deg);
    top: 3px;
}

.burger-btn_active span:nth-child(2) {
    display: none;
}

.burger-btn_active span:nth-child(3) {
    transform: rotate(-45deg);
    top: -4px;
}


.accordion-container {
    border: 1px solid #B8C4D9;
}

.accordion-title {
    padding: 1rem;
    background: #F4F6F9;
    font-size: 18px;
    font-weight: 500;
    color: #103150;
}

.accordion-body {
    padding: 1rem 1rem 3rem 1rem;
}









@media(max-width: 1440px) {
    .reg-container-left {
        background-position: -100% center;
    }
}

@media(max-width: 1366px) {
    .reg-container-left {
        background-position: -100% center;
    }
}


@media(max-width: 1200px) {
    .reg-container-left,
    .reg-container-right {
        padding: 20px;
    }
    .experts-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .files-container {
        grid-template-columns: 1fr;
    }

    .files-container iframe {
        min-height: 315px;
    }
    .file {
        max-width: 560px;
    }
}

@media(max-width: 1024px) {

    .main-window {
        margin: 0;
    }
    .sidebar {
        left: -300px;
    }
    .sidebar_active {
        left: 0;
    }
    .nav-custom {
        left: 0;
        padding-left: 70px;
    }
    .lk-main {
        margin-top: 88px;
    }
    .burger-btn {
        display: flex;
    }
    .colum-reg-container {
        gap: 60px;
    }
    .logo {
        width: 200px;
    }
    .title-h2-reg,
    .title-h1-white {
        font-size: 20px;
    }
    .tabs-item,
    .button-custom {
        font-size: 16px;
    }
    .form-container .text,
    .form-check-label a {
        font-size: 12px;
    }
    .form-control,
    .form-control::placeholder {
        font-size: 16px !important;
    }
    .support-box {
        gap: 20px;
    }
    .link_big {
        font-size: 14px;
    }
    .mobile-col {
        flex-direction: column;
    }
    .reg-container-left,
    .reg-container-right {
        width: 100%;
        align-items: center;
    }
    .reg-container-left {
        background-image: none;
    }
    .reg-container-right {
        justify-content: center;
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .colum-reg-container {
        flex-direction: row;
        gap: 24px;
    }
    .colum-reg-container .title-h1-white {
        display: none;
    }
    .webinar-main-page .reg-container-right {
        padding: 20px;
    }
    .webinar-main-page .webinar-reg {
        flex-direction: column;
    }
    .webinar-main-page .w-50 {
        width: 100% !important;
    }
}

@media(max-width: 767px) {
    .nav-custom {
        padding: 0 16px 0 70px;
        height: 70px;
    }
    .lk-main {
        margin-top: 70px;
        padding: 16px 16px 40px 16px;
    }
    .burger-btn {
        top: 15px;
    }
    .burger-btn_active {
        left: 250px;
    }
    .input-box_half {
        width: 100%;
    }
    .accreditation-info {
        flex-direction: column;
    }
}

@media(max-width: 600px) {
    .webinar-main-page .logo,
    .logo {
        width: 140px;
    }
    .title-h2-reg, .title-h1-white {
        font-size: 26px;
    }
    .form-container .text, .form-check-label a {
        font-size: 14px;
    }
    .reg-container-right {
        padding: 24px 12px;
    }
    .support-box {
        gap: 12px;
    }
    .webinar-frame {
        width: 100%;
    }
    .role-tabs {
        overflow-x: scroll;
        padding-bottom: 0.5em;
    }
}

@media(max-width: 350px) {
    .role-tabs {
        gap: 10px;
    }
    .role-tabs .tabs-item {
        font-size: 15px;
    }
}

@media(max-height: 800px) {
    .sidebar {
        padding: 15px 0;
        gap: 15px;
    }
}

@media(max-height: 730px) {
    .sidebar {
        overflow-y: scroll;
        scrollbar-color: rgba(233, 236, 239, 0.5) transparent;
        scrollbar-width: thin;
    }
    .support-box_aside .aside-support-content {
        margin-top: 5px;
    }
    .sidebar-btn {
        padding: 18px 0;
    }
    .button-exit {
        padding: 18px 20px 18px 65px;
    }
}

@media(max-height: 680px) {
    .logo__img {
        width: 80%;
    }
    .sidebar-btn {
        font-size: 16px;
        padding: 14px 0;
    }
    .button-exit {
        font-size: 16px;
        padding: 14px 20px 14px 65px;;
    }
    .support-box_aside .link {
        font-size: 14px;
    }
}
.alert-message {
    display: flex;
    position: fixed;
    z-index: 10000;
    width: 100%;
    left: 0;
    top: 15px;
    justify-content: center;
}
.alert-message-body {
    display: flex;
    width: 95%;
    max-width: 700px;
    padding: 20px;
    border-radius: 15px;
    background: white;
    color: #000000;
    font-size: 16px;
    position: relative;
    -webkit-box-shadow: 0px 0px 7px 5px #000000;
    box-shadow: 0px 0px 7px 5px #000000;
}
.alert-message-close {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    width: 15px;
}
