﻿.systemBlock {
    display: flex;
    flex-direction: column;
}

.systemContentBlock {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    position: relative;
    height: 100%;
    box-sizing: border-box;
    margin: 0 16px;
}

.systemWhitePaddingRoundedBlock {
    background: white;
    border-radius: 16px;
    padding: 16px;
}

@media only screen and (min-width: 1440px) {
    .systemContentBlock {
        margin: 0 auto;
        width: 100%;
    }
}

/* Нижняя линия для разделения блоков */
.systemBottomLine {
    border-bottom: 1px solid #EAEAEA;
}

/* Блок с границей и закруглением */
.systemBorderRoundedBlock {
    border: 1px solid #EAEAEA;
    border-radius: 8px;
}

/* Блок с границей */
.systemBorderBlock {
    border: 1px solid #EAEAEA;
}

/* 4px Margin */
.system4MarginTop {
    margin-top: 4px;
}

.system4MarginBottom {
    margin-bottom: 4px;
}

.system4MarginRight {
    margin-right: 4px;
}

.system4MarginLeft {
    margin-left: 4px;
}

/* 8px Margin */
.system8MarginTop {
    margin-top: 8px;
}

.system8MarginBottom {
    margin-bottom: 8px;
}

.system8MarginRight {
    margin-right: 8px;
}

.system8MarginLeft {
    margin-left: 8px;
}

/* 12px Margin */
.system12MarginTop {
    margin-top: 12px;
}

.system12MarginBottom {
    margin-bottom: 12px;
}

.system12MarginRight {
    margin-right: 12px;
}

.system12MarginLeft {
    margin-left: 12px;
}

/* 16px Margin */
.system16MarginTop {
    margin-top: 16px;
}

.system16MarginBottom {
    margin-bottom: 16px;
}

.system16MarginRight {
    margin-right: 16px;
}

.system16MarginLeft {
    margin-left: 16px;
}

/* 24px Margin */
.system24MarginTop {
    margin-top: 24px;
}

.system24MarginBottom {
    margin-bottom: 24px;
}

.system24MarginRight {
    margin-right: 24px;
}

.system24MarginLeft {
    margin-left: 24px;
}

/* 32px Margin */
.system32MarginTop {
    margin-top: 32px;
}

.system32MarginBottom {
    margin-bottom: 32px;
}

.system32MarginRight {
    margin-right: 32px;
}

.system32MarginLeft {
    margin-left: 32px;
}

/* 64px Margin */
.system64MarginTop {
    margin-top: 64px;
}

.system64MarginBottom {
    margin-bottom: 64px;
}

.system64MarginRight {
    margin-right: 64px;
}

.system64MarginLeft {
    margin-left: 64px;
}

/* 128px Margin */
.system128MarginTop {
    margin-top: 128px;
}

.system128MarginBottom {
    margin-bottom: 128px;
}

.system128MarginRight {
    margin-right: 128px;
}

.system128MarginLeft {
    margin-left: 128px;
}

/* 4px Padding */
.system4Padding {
    padding: 4px;
}

.system4PaddingTop {
    padding-top: 4px;
}

.system4PaddingBottom {
    padding-bottom: 4px;
}

.system4PaddingRight {
    padding-right: 4px;
}

.system4PaddingLeft {
    padding-left: 4px;
}

/* 8px Padding */
.system8Padding {
    padding: 8px;
}

.system8PaddingTop {
    padding-top: 8px;
}

.system8PaddingBottom {
    padding-bottom: 8px;
}

.system8PaddingRight {
    padding-right: 8px;
}

.system8PaddingLeft {
    padding-left: 8px;
}

/* 12px Padding */
.system12Padding {
    padding: 12px;
}

.system12PaddingTop {
    padding-top: 12px;
}

.system12PaddingBottom {
    padding-bottom: 12px;
}

.system12PaddingRight {
    padding-right: 12px;
}

.system12PaddingLeft {
    padding-left: 12px;
}

/* 16px Padding */
.system16Padding {
    padding: 16px;
}

.system16PaddingTop {
    padding-top: 16px;
}

.system16PaddingBottom {
    padding-bottom: 16px;
}

.system16PaddingRight {
    padding-right: 16px;
}

.system16PaddingLeft {
    padding-left: 16px;
}

/* 24px Padding */
.system24Padding {
    padding: 24px;
}

.system24PaddingTop {
    padding-top: 24px;
}

.system24PaddingBottom {
    padding-bottom: 24px;
}

.system24PaddingRight {
    padding-right: 24px;
}

.system24PaddingLeft {
    padding-left: 24px;
}

/* 32px Padding */
.system32Padding {
    padding: 32px;
}

.system32PaddingTop {
    padding-top: 32px;
}

.system32PaddingBottom {
    padding-bottom: 32px;
}

.system32PaddingRight {
    padding-right: 32px;
}

.system32PaddingLeft {
    padding-left: 32px;
}

/*Gap*/
.system16Gap {
    gap: 16px;
}

/* Кнопки */
.systemGreenButton {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 15px;
    line-height: 160%;
    color: #FFFFFF;
    width: 190px;
    height: 46px;
    background: #0CAF89;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    outline: none;
    border: 1px solid #0CAF89;
    white-space: nowrap;
}

    .systemGreenButton.autowidth {
        width: max-content
    }

.systemBlueButton {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 15px;
    line-height: 160%;
    color: #FFFFFF;
    width: 190px;
    height: 46px;
    background: #0464F4;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    outline: none;
    border: 1px solid #0464F4;
    white-space: nowrap;
}

    .systemBlueButton.autowidth {
        width: max-content
    }

.systemWhiteButton {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 15px;
    line-height: 160%;
    color: #0464F4;
    width: 190px;
    height: 46px;
    background: #FFFFFF;
    border: 1px solid #0464F4;
    border-radius: 8px;
}

    .systemWhiteButton.autowidth {
        width: max-content
    }

/* checkbox */
.systemCheckBoxBlock {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    color: rgba(27, 31, 59, 0.8);
    width: max-content;
}

    .systemCheckBoxBlock input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.systemCheckMark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #EBEFFF;
    border-radius: 8px;
    cursor: pointer;
}

.systemCheckBoxBlock:hover input ~ .systemCheckMark {
    background-color: #DFE3F3;
}

.systemCheckBoxBlock input:checked ~ .systemCheckMark {
    background-color: #0464F4;
}

.systemCheckMark:after {
    content: "";
    position: absolute;
    display: none;
}

.systemCheckBoxBlock input:checked ~ .systemCheckMark:after {
    display: block;
}

.systemCheckBoxBlock .systemCheckMark:after {
    left: 5px;
    top: 5px;
    width: 14px;
    height: 9px;
    border: solid white;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* radio */
.systemRadioBlock {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    color: rgba(27, 31, 59, 0.8);
    margin-bottom: 0;
}

    .systemRadioBlock input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .systemRadioBlock > label {
        cursor: pointer;
    }

.systemRadioCheckMark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #EBEFFF;
    border-radius: 50%;
}

.systemRadioBlock:hover input ~ .systemRadioCheckMark {
    background-color: #DFE3F3;
}

.systemRadioBlock input:checked ~ .systemRadioCheckMark {
    background-color: #0464F4;
}

.systemRadioBlock input:disabled ~ .systemRadioCheckMark,
.systemRadioBlock:hover input:disabled ~ .systemRadioCheckMark {
    background-color: #e9e9e9;
}

.systemRadioCheckMark:after {
    content: "";
    position: absolute;
    display: none;
}

.systemRadioBlock input:checked ~ .systemRadioCheckMark:after {
    display: block;
}

.systemRadioBlock .systemRadioCheckMark:after {
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
}

/* Input */
.systemInput {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #D7D7D7;
    box-sizing: border-box;
    outline: none;
    font-family: 'Inter';
    color: #08110E;
    transition: 0.3s;
}

    .systemInput:focus {
        border: 1px solid #0464F4;
    }

    .systemInput::placeholder {
        font-family: 'Inter';
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        color: #c2c2c2;
    }

    .systemInput.big {
        max-width: 440px;
    }

    .systemInput.min {
        max-width: 215px;
    }

.systemInputBlock.medium {
    max-width: 250px;
}

.systemInputBlock.big {
    max-width: 440px;
}

.systemTitlePage {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Roboto';
}

/* Модальное окно */
.systemModalBlock {
    position: fixed;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: none;
    background: rgba(69, 69, 69, 0.28);
    top: 0;
    left: 0;
    z-index: 100;
}

    .systemModalBlock.open {
        display: flex;
    }

.systemModalContent {
    background: white;
    border-radius: 12px;
    padding: 24px;
    width: 600px;
    box-sizing: border-box;
    max-height: calc(100% - 32px);
    overflow: auto;
}

    .systemModalContent.grayBack {
        background: #F5F5F5;
    }

    .systemModalContent.size800 {
        width: 800px;
    }

    .systemModalContent.size1024 {
        width: 1024px;
    }

.systemModalContent-lg {
    width: 800px;
}

.systemModalContent-xl {
    width: 1024px;
}

.systemModalTitle {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #000000;
}

/* Текст для информации */
.systemTextInformation {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
    cursor: default;
}

/* Текст для подсказок или для тайтлов */
.systemTextTitle {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #999999;
    cursor: default;
}

/*Закруглённые края*/
.systemRadius16 {
    border-radius: 16px;
}

/*Ширина по контенту*/
.systemMaxContentWidth {
    width: max-content;
}

/*Ширина по контенту*/
.systemMaxContentHeight {
    height: max-content;
}

/*Синий текст*/
.systemBlueText {
    color: #0464F4;
}

/*Синий текст*/
.systemWhiteText {
    color: #ffffff;
}

/*Курсор Pointer*/
.systemPointer {
    cursor: pointer;
}

/* Select */
.systemSelect + .chosen-container {
    max-width: 440px;
    height: 46px;
}

.systemSelect.w-100 + .chosen-container {
    max-width: 100%;
}

.systemSelect + .chosen-container > .chosen-single {
    border: 1px solid #D7D7D7;
    align-items: center;
    display: flex;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: rgba(27, 31, 59, 0.8) !important;
    background-clip: unset;
    border-radius: 8px;
}

    .systemSelect + .chosen-container > .chosen-single.chosen-default {
        color: #858585 !important;
        font-weight: 400;
    }

.systemSelect + .chosen-container-single .chosen-single div {
    width: 25px;
}

    .systemSelect + .chosen-container-single .chosen-single div b {
        display: block;
        width: 100%;
        height: 100%;
        background: url(/Img/arrowselect.svg) no-repeat 0px 19px;
        transition: 0.3s;
    }

.systemSelect + .chosen-container-active.chosen-with-drop .chosen-single div b {
    transform: rotateX(-180deg);
    background-position: 0;
    background-position-y: 19px;
}

.systemSelect + .chosen-container-active .chosen-single {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.systemSelect + .chosen-container .chosen-drop {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.systemSelect + .chosen-container .chosen-drop {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.systemSelect + .chosen-container-single .chosen-single abbr {
    top: 11px;
    right: 35px;
}

.systemSelect + .chosen-container-single .chosen-single span {
    line-height: 46px;
    font-weight: 500;
    font-size: 13px;
    font-family: 'Inter';
    color: #08110E;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
    .systemSelect + .chosen-rtl .chosen-search input[type="text"],
    .systemSelect + .chosen-container-single .chosen-single abbr,
    .systemSelect + .chosen-container-single .chosen-single div b,
    .systemSelect + .chosen-container-single .chosen-search input[type="text"],
    .systemSelect + .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
    .systemSelect + .chosen-container .chosen-results-scroll-down span,
    .systemSelect + .chosen-container .chosen-results-scroll-up span {
        background-image: url(/Img/arrowselect.svg) !important;
        background-size: auto !important;
        background-repeat: no-repeat !important;
    }
}

/* weight 400 */
.system400Text {
    font-weight: 400 !important;
}

/* weight 500 */
.system500Text {
    font-weight: 500 !important;
}

/* weight 600 */
.system600Text {
    font-weight: 600 !important;
}

/* weight 700 */
.system700Text {
    font-weight: 700 !important;
}

/* weight 800 */
.system800Text {
    font-weight: 800 !important;
}

.h-xl-100 {
    height: auto;
}

@media only screen and (min-width: 1024px) {
    .h-xl-100 {
        height: 100%;
    }
}

/*Синий текст*/
.systemBlueText {
    color: #0464F4;
}

/*Красный текст*/
.systemRedText {
    color: #F34F49;
}

/*Красный текст*/
.systemGreenText {
    color: #0CAF89;
}

/*Без переноса*/
.systemNoWrap {
    white-space: nowrap;
}

/* Позиционирование */
.systemPAbsolute {
    position: absolute;
}

.systemPRelative {
    position: relative;
}

/* Размеры */
.systemW100 {
    width: 100%;
}

.systemH100 {
    height: 100%;
}

/* scroll */
.systemOverFlowAuto {
    overflow: auto;
}

/* flex-grow-1 */
.systemFlexGrow1 {
    flex-grow: 1;
}

/* gap */
.system4Gap {
    gap: 4px;
}

.system8Gap {
    gap: 8px;
}

.system12Gap {
    gap: 12px;
}

.system16Gap {
    gap: 16px;
}

.system24Gap {
    gap: 24px;
}

.system32Gap {
    gap: 32px;
}