/* custom.css */
[data-gw-anime] {
    opacity: 0;
    transition: all 1s;
}

.zoomIn {
    -webkit-animation: zoomIn 1s ease forwards;
    animation: zoomIn 1s ease forwards;
}

.header__btns, .header__timer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__timer {
    margin: 1.25rem auto;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.timer {
    display: inline-flex;
    flex-direction: column;
}

.timer, .timer__heading {
    align-items: center;
    justify-content: center;
}

.timer__heading {
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: .375rem;
    font-family: BeaufortforLOL, Times New Roman, Times, serif;
    font-family: "BeaufortforLOL","Times New Roman",Times,serif;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    width: 100%;
    grid-gap: .625rem;
    gap: .625rem;
}

@media (min-width: 540px) {
    .timer__heading {
        font-size: 1.25rem;
    }
}

.timer__heading:after, .timer__heading:before {
    display: block;
    content: "";
    height: .125rem;
    flex-grow: 1;
    background-color: #bea9ff;
}

.header__box-small {
    max-width: 479.28px;
    width: 100%;
}

.header__small {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    box-sizing: border-box;
}

.timer__counter {
    grid-gap: .3125rem;
    gap: .3125rem;
}

.timer__counter, .timer__item {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 540px) {
    .timer__counter {
        grid-gap: .625rem;
        gap: .625rem;
    }
}

.timer__item {
    flex-direction: column;
    color: #fff4e1;
    text-align: center;
    width: 4.125rem;
    height: 4.125rem;
    box-sizing: border-box;
    line-height: 1;
    background-color: rgba(0, 0, 0, .6);
    border-radius: .625rem;
}

@media (min-width: 540px) {
    .timer__item {
        width: 5rem;
        height: 5rem;
    }
}

.timer__amount {
    color: #bea9ff;
    font-size: 1.5rem;
    font-weight: 700;
}

.timer__amount, .timer__desc {
    text-transform: uppercase;
    box-sizing: border-box;
}

@media (min-width: 540px) {
    .timer__amount {
        font-size: 1.875rem;
    }
}

.timer__desc {
    color: #fff4e1;
    font-size: .625rem;
    font-weight: 400;
}

@media (min-width: 540px) {
    .timer__desc {
        font-size: .75rem;
    }
}

.content-box {
    background-color: #11162cf5;
    padding: 25px;
    border-radius: 10px;
}

.bg.text .bg__cover {
    background-image: url(/img/bg_wiki.jpg);
}
