.widget {
    display: flex;
    align-items: center;
}

.widget-title {
    font-weight: 700;
    font-size: 20px;
    color: #363b41;
    margin-block-end: 40px;
}

.modal__button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f2f8ff;
    border-radius: 12px;
    padding: 30px 15px;
}

.social-button {
    display: flex;
    gap: 5px;
    padding: 15px 50px;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.social-button img {
    width: 22px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.social-button:hover {
    opacity: 0.7;
}

.social_wt {
    background-color: #5ed169;
}

.social_tg {
    background-color: #2aabee;
}

.social_rq {
    cursor: pointer;
    background-color: #122484;
}

.widget-point {
    position: fixed;
    width: 55px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00aeef;
    right: 50px;
    bottom: 30px;
    z-index: 1000;
    animation: widget-breath 900ms, widget-bg 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.68, -0.06, 0.3, 1.06);
    animation-direction: alternate;
}

.widget-point::before {
    content: '';
    position: absolute;
    right: 15px;
    bottom: 14px;
    display: block;
    width: 24px;
    aspect-ratio: 1/1;
    opacity: 1;
    background: center center no-repeat;
    background-size: 24px 24px;
    animation-name: widget-icon;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.33, -0.32, 0.68, 1.29);
    animation-direction: alternate;
}


@keyframes widget-breath {
    from {
        outline: 0 solid #00aeef33;
    }

    to {
        outline: 0.6em solid #00aeef33;
    }
}


@keyframes widget-bg {
    from {
        background-color: #2aabee;
    }

    to {
        background-color: #5ed169;
    }
}


@keyframes widget-icon {
    from {
        background-image: url('/netcat_template/template/custom/assets/img/telegram.svg?v1');
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }

    to {
        background-image: url('/netcat_template/template/custom/assets/img/ico-btn-callback.png');
        opacity: 1;
    }
}



/* CHECKBOX STYLE */

.field_group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding-block-start: 10px;
}

.field_group .field_group__input {
    width: 15px;
    margin: 0;
}

.field_group label {
    color: #555;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    width: auto;
}

.field_group label::before {
    background-color: #ff8186;
}

.field_group label::after {
    background-color: #c02026;
}

.field_group label a {
    color: #555;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    text-decoration: underline;
}

    .bottom-info__wrapper {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1500;
        color: #fff;
        font: inherit;
        background-color: rgba(0, 0, 0, .73);
        opacity: 0;
        transition: opacity 300ms;
    }

    .bottom-info__wrapper.active {
        opacity: 1;
    }

    .bottom-info__wrapper .bottom-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 10px 15px 10px 20px;
    }

    @media screen and (max-width: 700px) {
        .bottom-info__wrapper .bottom-info {
            flex-direction: column;
        }
    }

    .bottom-info__wrapper .bottom-info__content {
        margin: 0 10px 0 0;
    }

    .bottom-info__content a {
        color: #52c5ff;
        text-decoration: underline;
        transition: color 300ms;
    }

    .bottom-info__content a:hover {
        color: #296de7;
    }

    @media screen and (max-width: 700px) {
        .bottom-info__wrapper .bottom-info__content {
            text-align: center;
            margin: 0 30px 0 0;
        }
    }

    .bottom-info__wrapper .bottom-info__action {
        display: flex;
    }

    @media screen and (max-width: 639px) {
        .bottom-info__wrapper .bottom-info__action {
            margin: 10px 0 0;
        }
    }

    .bottom-info__wrapper .bottom-info__button-agree {
        font-size: .9em;
        line-height: 2;
        font-weight: 500;
        color: #000;
        border-radius: 5px;
        padding: 2px 15px;
        text-transform: uppercase;
        display: block;
        background-color: #ffffffe8;
        border: none;
        cursor: pointer;
    }

    .bottom-info__wrapper .bottom-info__button-cross {
        width: 28px;
        height: 28px;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.4em;
        background-color: transparent;
        border: none;
        margin-inline-start: 12px;
        cursor: pointer;
    }

    @media screen and (max-width: 700px) {
        .bottom-info__wrapper .bottom-info__button-cross {
            position: absolute;
            top: 10px;
            right: 10px;
        }
    }

    .bottom-info__button-cross::after {
        content: "\00D7";
        color: #999;
        line-height: 1;
        transition: color 300ms;
    }

    .bottom-info__wrapper .bottom-info__button-cross:hover::after {
        color: #fff;
    }