.c-custom-select {
    position: relative;
    height: 43px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-top: 2px solid #faf9f6;
}
.c-custom-select_border {
    border: 1px solid #f2efe6;
}
.c-custom-select__selected,
.c-custom-select__list-item {
    padding-left: 70px;
}
.c-custom-select__item-icon {
    content: '';
    display: block;
    position: absolute;
    top: 14px;
    left: 40px;
    z-index: 100;
    height: 16px;
    width: 16px;
    border-radius: 50%;
}
.c-custom-select__item-icon-after {
    margin-left: auto;
}
.c-custom-select__list-item {
    height: 43px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.c-custom-select__list-item .c-custom-select__item-icon {
    z-index: 900;
}
.c-custom-select__list-item:hover {
    background-color: #c3c2e3;
}
.c-custom-select__dropdown-list {
    width: 100%;
    max-height: 215px;
    overflow-y: scroll;
    position: absolute;
    left: 0;
    top: 100%;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    background-color: #fff;
    z-index: 500;
    outline: 1px solid #c3c2e3;
}
.c-custom-select__arrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}
.c-custom-select.active .c-custom-select__dropdown-list {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.c-form__input {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.c-form__input label {
    margin-bottom: 10px;
}
.c-form__input input {
    font: inherit;
}
.c-form__input textarea {
    font: inherit;
    resize: none;
}
.c-form__input textarea:focus,
.c-form__input textarea:active {
    outline: none;
}
.c-form__input input[type='submit'] {
    border: none;
    box-shadow: none;
    outline: none;
}
.c-form__input input[type='text'],
.c-form__input input[type='password'],
.c-form__input input[type='email'],
.c-form__input input[type='date'],
.c-form__input input[type='tel'],
.c-form__input textarea {
    border: 1px solid #f2efe6;
    padding-left: 10px;
}
.c-form__input-icon {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-left: auto;
    opacity: 0;
}
.c-form_valid-green .c-form__input input.is-valid,
.c-form_valid-green .c-form__input textarea.is-valid {
    position: relative;
    border-color: #8fbf60;
}
.c-form_valid-green .c-form__input input.is-error,
.c-form_valid-green .c-form__input textarea.is-error {
    border-color: #f66;
}
.c-form_valid-green .c-form__input input.is-valid + .c-form__input-decoration {
    display: block;
    width: 21px;
    height: 21px;
    position: absolute;
    right: 10px;
    top: 40px;
    z-index: 5;
}
.c-form_valid-green svg {
    fill: #8fbf60;
}
.c-form_border-bottom .c-form__input input[type='text'],
.c-form_border-bottom .c-form__input input[type='password'],
.c-form_border-bottom .c-form__input input[type='email'],
.c-form_border-bottom .c-form__input input[type='date'],
.c-form_border-bottom .c-form__input input[type='tel'],
.c-form_border-bottom .c-form__input textarea {
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
}
.c-form_valid-green-text .c-form__input input.is-valid {
    color: #8fbf60;
}
.c-form__input-decoration {
    display: none;
}
@media only screen and (min-width: 1025px) and (max-width: 767px) {
    .c-form__input label {
        margin-bottom: 5px;
    }
}
@media only screen and (max-width: 767px) {
    .c-form_bottom-border-mobile .c-form__input input[type='text'],
    .c-form_bottom-border-mobile .c-form__input input[type='password'],
    .c-form_bottom-border-mobile .c-form__input input[type='email'],
    .c-form_bottom-border-mobile .c-form__input input[type='date'],
    .c-form_bottom-border-mobile .c-form__input input[type='tel'] {
        height: 45px;
    }
}
.c-select {
    position: relative;
}
.c-select__native {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.c-select__native:focus {
    outline: none;
}
.c-select__native:invalid {
    color: #acbfbf;
}
.c-select__native:focus {
    color: #3a434c;
}
.c-select::after {
    content: '';
    display: block;
    position: absolute;
    top: 17px;
    right: 0;
    border: 8px solid #3a434c;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    z-index: 100;
}
.c-checkbox {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 20px;
}
.c-checkbox__native {
    position: relative;
    top: 3px;
    left: 0;
    margin: 0;
    padding: 0;
    border: none;
    width: 15px;
    height: 15px;
    opacity: 0;
    z-index: 100;
    cursor: pointer;
}
.c-checkbox__native:checked + .c-checkbox__label + .c-checkbox__control::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #8fbf60;
    border-radius: 50%;
}
.c-checkbox__native:checked + .c-checkbox__label {
    color: #3a434c;
}
.c-checkbox__control {
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #acbfbf;
    border-radius: 50%;
    transition: background 0.1s linear, border-color 0.1s linear;
}
.c-checkbox__label {
    display: inline-block;
    margin-left: 15px;
    cursor: pointer;
    color: inherit;
}
.c-checkbox_tumbler .c-checkbox__label {
    padding: 0;
}
.c-checkbox_tumbler .c-checkbox__native,
.c-checkbox_tumbler .c-checkbox__control {
    width: 60px;
    height: 30px;
}
.c-checkbox_tumbler .c-checkbox__control {
    justify-content: flex-start;
    padding-left: 5px;
    border-radius: 20px;
    border: none;
    background-color: #d7d7d9;
}
.c-checkbox_tumbler .c-checkbox__control::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-color: #f5f5f6;
    border-radius: 50%;
    transition: transform 0.3s;
}
.c-checkbox_tumbler .c-checkbox__native:checked + .c-checkbox__label + .c-checkbox__control {
    background-color: #8fbf60;
}
.c-checkbox_tumbler .c-checkbox__native:checked + .c-checkbox__label + .c-checkbox__control::before {
    width: 22px;
    height: 22px;
    background-color: #f5f5f6;
    transform: translateX(27px);
}
.c-checkbox_square .c-checkbox__control {
    width: 18px;
    height: 18px;
    border-radius: 5px;
}
.c-checkbox_bold .c-checkbox__control {
    border-width: 2px;
}
.c-radio {
    position: relative;
    display: block;
    min-height: 20px;
}
.c-radio__native {
    position: absolute;
    top: 5px;
    left: 5px;
    margin: 0;
    padding: 0;
    border: none;
    width: 15px;
    height: 15px;
    opacity: 0;
    z-index: 100;
}
.c-radio__native:checked + .c-radio__label + .c-radio__control::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background-color: #3a434c;
    border-radius: 50%;
}
.c-radio__control {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #acbfbf;
    border-radius: 50%;
    transition: background 0.1s linear, border-color 0.1s linear;
}
.c-radio__label {
    display: inline-block;
    margin-left: 35px;
    padding-top: 3px;
    cursor: pointer;
}
.c-radio_border .c-radio__native:checked + .c-radio__label + .c-radio__control {
    border: 4px solid #8fbf60;
}
.c-radio_border .c-radio__native:checked + .c-radio__label + .c-radio__control::before {
    display: none;
}
.c-radio_with-icon {
    display: flex;
    align-items: center;
}
.c-radio_with-icon .c-radio__label {
    padding: 0;
    color: #acbfbf;
}
.c-radio_with-icon .c-radio__control {
    width: 22px;
    height: 22px;
    border: none;
}
.c-radio_with-icon .c-radio__control svg {
    width: 100%;
    height: 100%;
    fill: #acbfbf;
}
.c-radio_with-icon .c-radio__native:checked + .c-radio__label + .c-radio__control {
    border: none;
}
.c-radio_with-icon .c-radio__native:checked + .c-radio__label + .c-radio__control::before {
    display: none;
}
.c-radio_with-icon .c-radio__native:checked + .c-radio__label + .c-radio__control svg {
    fill: #f66;
}
.c-radio_with-icon .c-radio__native:checked + .c-radio__label {
    color: #3a434c;
}
.c-form__input input[type='text'], .c-form__input input[type='password'], .c-form__input input[type='email'], .c-form__input input[type='date'], .c-form__input input[type='tel'], .c-form__input textarea {
    border: 1px solid #d4d0c3;
}
.js-hidden {
    display: none !important;
}
button {
    border: none;
    outline: none;
    cursor: pointer;
}
.checkout__btn {
    display: inline-block;
    height: 45px;
    padding: 0 30px;
    text-transform: uppercase;
}
.checkout__btn_green {
    background: #8fbf60;
    font-weight: bold;
    color: #fff;
}
.c-btn {
    display: block;
    height: 45px;
    padding-left: 45px;
    padding-right: 45px;
    text-transform: uppercase;
}
.c-btn_green {
    background: #8fbf60;
    color: #fff;
    font-weight: bold;
}
.c-btn_red {
    background: var(--cci-color-red);
    color: #fff;
    font-weight: bold;
}



