

/* Start:/gift/css/style.css?17613077987728*/
.section_buy {
    padding: 40px 0 100px 0;
}

.section_buy .form__radios {
    display: flex;
    flex-wrap: wrap;
    margin: 12px -12px;
}

.section_buy .form__radio {
    flex: 1 1 45%;
    padding: 12px;
}

.section_buy .radio_wrapper {
    padding: 30px 26px;
    border-radius: 14px;
    border: 2px solid #007367;
}

.section_buy .radio_wrapper .form-group {
    margin: 0;
}
.section_buy .radio_wrapper .form-group input[type=radio] {
    display: none;
}
.section_buy .radio_wrapper .form-group label {
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.388;
    color: #007367;
    padding: 0 0 0 43px;
    display: block;
    width: -webkit-fill-available;
}
.section_buy .radio_wrapper.video-record .form-group label {
    color: #BD024E;
}

.section_buy .radio_wrapper .form-group label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #017468;
    /*background: #fff;*/
}

.section_buy .radio_wrapper.video-record .form-group label:before {
    border: 2px solid #BD024E;
}

.section_buy .radio_wrapper .form-group label:after {
    content: "";
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    left: 12px;
    top: 6px;
    width: 8px;
    height: 16px;
    border: solid #007367;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.section_buy .radio_wrapper .form-group input[type=radio]:checked + label::after {
    opacity: 1;
    visibility: visible;
}
.section_buy .radio_wrapper .form-group input[type=radio]:checked + label::before {
    background: #fff;
}


.section_buy .radio_wrapper.checked .form-group label {
    color: #fff;
}

.section_buy .radio_wrapper.checked {
    background: #007367;
}

.section_buy .form_wrapper {
    padding: 30px 70px 40px 70px;
    border-radius: 14px;
    background: #fff;
    margin: 25px 0 0 0;
}

.section_buy .form_wrapper .inputs_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 25px;
}

.section_buy .form_wrapper .inputs_wrapper .input_wrapper {
    width: calc(50% - 12px);
    margin: 0 0 45px;
    position: relative;
}

.section_buy .form_wrapper .inputs_wrapper .input_wrapper img {
    display: block;
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
}
.section_buy .form_wrapper .inputs_wrapper .input_wrapper input {
    appearance: none;
    box-sizing: border-box;
    border: 0;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: rgba(0, 115, 103, 0.5);
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
    transition: 0.3s all ease;
    height: 48px;
    padding: 0 0 0 44px;
}
.section_buy .form_wrapper .inputs_wrapper .input_wrapper input:focus, .section_buy .form_wrapper .inputs_wrapper .input_wrapper input:hover {
    color: #007367;
    border-color: #007367;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-placeholder {
    color: inherit;
}

:-ms-input-placeholder {
    color: inherit;
}

:-moz-placeholder {
    color: inherit;
}


.section_buy .form_wrapper .inputs_wrapper .input_wrapper select {
    border: 0;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: rgba(0, 115, 103, 0.5);
    border-bottom: 1px solid #d9d9d9;
    background: transparent;
    transition: 0.3s all ease;
    height: 48px;
    padding: 0 0 0 44px;
}


.section_buy .form_wrapper .check {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.3s ease;
    margin: 0 0 15px;
}
.section_buy .form_wrapper .check p {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.475;
    color: #707070;
    margin: 0;
}
.section_buy .form_wrapper .check:nth-last-child(1) {
    margin: 0;
}
.section_buy .form_wrapper .check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.section_buy .form_wrapper .check input:checked ~ .checkmark {
    border-color: #707070;
}
.section_buy .form_wrapper .check input:checked ~ .checkmark:after {
    opacity: 1;
    visibility: visible;
}
.section_buy .form_wrapper .check .checkmark {
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid #707070;
    border-radius: 0;
    width: 12px;
    height: 12px;
    min-width: 12px;
    margin: 0 10px 0 0;
}
.section_buy .form_wrapper .check .checkmark:after {
    content: "";
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    left: 50%;
    top: 45%;
    width: 4px;
    height: 8px;
    border: solid #707070;
    border-width: 0 1px 1px 0;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.section_buy .form_wrapper .btn_wrapper {
    display: flex;
    justify-content: center;
}
.section_buy .form_wrapper .btn_wrapper .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 30px;
    min-width: 277px;
}
.section_buy .form_wrapper .btn_wrapper .btn_red {
    background: linear-gradient(90deg, rgba(214, 0, 28, 1) 0%, rgba(161, 0, 14, 1) 100%);
    background-size: 100% 300%;
    min-height: 68px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border: 0;
    transition: all .3s;
}

.section_buy .form_wrapper .btn_wrapper .btn_red:hover {
    background: linear-gradient(90deg, rgba(161, 0, 14, 1) 0%, rgba(214, 0, 28, 1) 100%);
}



@media (max-width: 1141px) {
    .section_buy .radio_wrapper {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .section_buy {
        padding: 30px 0 60px 0;
    }


    .section_buy .radio_wrapper {
        padding: 20px 15px;
        border-width: 1px;
    }

    .section_buy .radio_wrapper .form-group label {
        font-size: 16px;
        padding: 0 0 0 34px;
    }

    .section_buy .radio_wrapper .form-group label:before {
        width: 20px;
        height: 20px;
        border-width: 1px;
    }

    .section_buy .radio_wrapper .form-group label:after {
        width: 5px;
        height: 11px;
        top: 3px;
        left: 8px;
    }

    .section_buy .form_wrapper {
        padding: 20px 15px;
    }

    .section_buy .form_wrapper .inputs_wrapper {
        margin: 0 0 10px;
    }

    .section_buy .form_wrapper .inputs_wrapper .input_wrapper {
        width: 100%;
        margin: 0 0 24px;
    }

}

@media (max-width: 768px) {
    .section_buy .form_wrapper .btn_wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .section_buy .form_wrapper .btn_wrapper > * {
        width: 100%;
        min-width: auto !important;
        margin: 0 !important;
    }
}
/* End */
/* /gift/css/style.css?17613077987728 */
