#gumrf-mascot-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
    font-family: Arial, sans-serif;
}

#gumrf-mascot-widget.gmw-visible {
    display: block;
}

.gmw-container {
    position: relative;
    width: 360px;
    min-height: 240px;
}

.gmw-bubble {
    position: absolute;
    right: 130px;
    bottom: 190px;
    width: 250px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    padding: 14px 14px 12px 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gmw-bubble.gmw-open {
    opacity: 1;
    transform: translateY(0);
}

.gmw-bubble:after {
    content: "";
    position: absolute;
    right: 26px;
    bottom: -12px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #ffffff;
}

.gmw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.gmw-title {
    font-size: 14px;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
}

.gmw-close {
    border: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}

.gmw-close:hover {
    color: #000;
}

.gmw-text {
    font-size: 14px;
    line-height: 1.45;
    color: #333;
    margin-bottom: 12px;
    max-height: 130px;
    overflow: auto;
}

.gmw-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gmw-btn {
    display: inline-block;
    border-radius: 20px;
    padding: 7px 12px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid #0b5aa5;
    background: #0b5aa5;
    color: #fff;
    transition: 0.2s ease;
}

.gmw-btn:hover,
.gmw-btn:focus {
    background: #08457f;
    border-color: #08457f;
    color: #fff;
    text-decoration: none;
}

.gmw-btn-secondary {
    background: #fff;
    color: #0b5aa5;
}

.gmw-btn-secondary:hover,
.gmw-btn-secondary:focus {
    background: #f2f7fc;
    color: #0b5aa5;
    text-decoration: none;
}

.gmw-mascot {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 180px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.25s ease, opacity 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gmw-mascot.gmw-show {
    opacity: 1;
    transform: translateY(0);
}

.gmw-mascot:hover {
    transform: translateY(-3px);
}

.gmw-mascot img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    #gumrf-mascot-widget {
        right: 10px;
        bottom: 10px;
    }

    .gmw-container {
        width: 260px;
        min-height: 170px;
    }

    .gmw-bubble {
        right: 75px;
        bottom: 95px;
        width: 190px;
        padding: 12px;
        border-radius: 14px;
    }

    .gmw-text {
        font-size: 13px;
        max-height: 110px;
    }

    .gmw-title {
        font-size: 13px;
    }

    .gmw-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .gmw-mascot {
        width: 110px;
    }
}


.countdown150 {
    background: #ffffff;

    padding: 18px 0;
    margin-bottom: 25px;
}

.countdown150__inner {
    display: flex;
    flex-direction: column;
    align-items: center;      /* 🔥 центр по горизонтали */
    text-align: center;       /* 🔥 центр текста */
    gap: 10px;
    border-top: 1px solid #e3eaf2;
    border-bottom: 1px solid #e3eaf2;
    padding-top: 20px;
    padding-bottom: 20px;
}

.countdown150__left {
    max-width: 480px;
}

.countdown150__label {
    font-size: 12px;
    text-transform: uppercase;
    color: #0b5fa5;
    font-weight: 600;
    margin-bottom: 6px;
}

.countdown150__title {
    font-size: 20px;
    font-weight: 700;
    color: #0054AA;
    line-height: 1.3;
}

.countdown150__timer {
    display: flex;
    gap: 20px;
    justify-content: center;  /* 🔥 центр самих блоков */
}

.countdown150__right {
    display: flex;
    gap: 18px;
}

.cd-item {
    text-align: center;
    min-width: 70px;
}

.cd-value {
    font-size: 28px;
    font-weight: 700;
    color: #0b5fa5;
}

.cd-label {
    font-size: 12px;
    color: #5c6f82;
    text-transform: uppercase;
}
.cd-value {
    font-variant-numeric: tabular-nums;
}
/* мобильная адаптация */
@media (max-width: 767px) {

    .countdown150__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
            border-top: 1px solid #e3eaf2;
    border-bottom: 1px solid #e3eaf2;
    }

    .countdown150__right {
        width: 100%;
        justify-content: space-between;
    }

    .cd-item {
        flex: 1;
    }
}