

/* Start:/local/templates/funky/design/styles/components/krirll.css?17567386625733*/
.mailing-form{
    display: flex;
    gap: 10px;
}

.mailing-form__form-container{
    padding: 32px;
    background: rgba(247, 250, 250, 1);
    border-radius: 20px;
}

.close{
    cursor: pointer;
}

.mailing-form h1{
    font-weight: 500;
    font-size: 72px;
    line-height: 90%;
}

.mailing-form__des p{
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    margin: 20px 0;
}

.mailing-form__form-fieldset .form-wrapper{
    background: inherit;
    display: flex;
    flex-direction: column;
}

.mailing-form__form-fieldset label{
    width: max-content;
    padding-left: 20px;
    position: relative;
}

.mailing-form__form-fieldset input[type="checkbox"]{
    position: absolute;
    width: 0;
    height: 0;
}

/* ИСПРАВЛЕНО: добавил контекст только для формы рассылки */
.mailing-form__form-fieldset span{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: 0.3s ease;
    height: 14px;
    width: 14px;
    border:1px solid black;
    border-radius: 2px;
}

.mailing-form__form-fieldset span::after,
.mailing-form__form-fieldset span::before{
    content: '';
}

.mailing-form__form-fieldset span::before{
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}

.mailing-form__form-fieldset input[type="checkbox"]:checked + span{
    border: none;
}

.mailing-form__form-fieldset input[type="checkbox"]:checked + span::before{
    background: var(--Green-primary, #0A9971);
    border-radius: 2px;
    z-index: 0;
}

.mailing-form__form-fieldset input[type="checkbox"]:checked + span::after{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    background: var(--Green-primary, #0A9971);
    width: 7px;
    height: 8px;
    border: none;
    background-image: url(/local/templates/funky/images/Vector.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.wrapper{
    max-width: 1840px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.mailing-form__form-container{
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    max-width: 880px;
}

.breadcrumbs{
    margin: 24px 0 40px;
}

.breadcrumbs a{
    color: rgba(13, 13, 13, 1);
    padding-right: 20px;
    position: relative;
}

.breadcrumbs p {
    position: relative;
    color: rgba(13, 13, 13, 0.6);
}

.breadcrumbs a::after{
    content: '';
    position: absolute;
    width: 16px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    background: url(/local/templates/funky/images/chevron-right.png) no-repeat center;
}

.mailing-form__form-container h2{
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
}

.mailing-form__form-fieldset input[type="email"]{
    width: 100%;
    max-width: 600px;
    padding: 12px 16px;
    border: 1px solid rgba(13, 13, 13, 0.1);
    border-radius: 8px;
    margin-top: 12px;
}

.mailing-form__form-fieldset input[type="email"]::placeholder{
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: rgba(13, 13, 13, 1);
}

.mailing-form__form-fieldset {
    margin: 20px 0;
}

.mailing-form__form-fieldset + .mailing-form__form-fieldset{
    margin-top: 0;
}

.form-wrapper{
    margin-top: 12px;
    gap: 8px;
}

.form-wrapper label{
    cursor: pointer;
}

.mailing-form__form p{
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

/* СТИЛИ ДЛЯ ПОПАПОВ */
.unsubscribe{
    border: none;
    background: transparent;
    position: relative;
    padding: 50px 0px;
}

.unsubscribe::backdrop {
    background: rgba(0, 0, 0, 0.7);
}

.unsubscribe__container{
    background: rgba(243, 245, 244, 1);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
}

.unsubscribe .close{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: white;
    top: -50px;
    right: 0px;
    z-index: 1;
}

.unsubscribe .close::before{
    content: '';
    width:24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url(/local/templates/funky/images/Vector2.png) no-repeat;
}

.unsubscribe h2{
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    text-align: center;
    max-width: 436px;
    margin: 0;
}

.unsubscribe p{
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    margin: 20px 0 0;
}

.unsubscribe img{
    margin-top: 20px;
}

.unsubscribe__button{
    margin-top: 40px;
    background: rgba(10, 153, 113, 1);
    width: 100%;
    border-radius: 20px;
    border: none;
    padding: 18px;
    color: white;
    box-shadow: none;
    outline: none;
    transition: 0.4s ease;
}

.unsubscribe__button:hover{
    opacity: 0.6;
}

@media(max-width:1000px){
    .mailing-form{
        flex-direction: column;
    }
    .mailing-form h1{
        font-size: 42px;
    }
}
/* Серый, неактивный вид кнопки при disabled */
.subscription-page__form-btn:disabled,
.subscription-page__form-btn.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #C8C8C8;
    border-color: #C8C8C8;
    color: #666;
}
/* End */
/* /local/templates/funky/design/styles/components/krirll.css?17567386625733 */
