@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
}

.banner__container {
    max-width: 468px;
    width: 100%;
    height: 60px;
    background: url(./img/bg.png) no-repeat center center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 12px;
    overflow: hidden;
    position: relative;
    z-index: 0;
    cursor: pointer;
}

.banner__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin: auto 0;
}

.banner__logo {
    width: 60px;
    height: auto;
}

.banner__text {
    padding: 5px 12px;
    background: linear-gradient(173deg,
        rgba(0, 0, 0, 0.74) 0%,
        rgba(80, 50, 20, 0.60) 20%,
        rgba(166, 105, 48, 0.65) 40%,
        rgba(200, 130, 60, 0.55) 55%,
        rgba(100, 60, 20, 0.60) 75%,
        rgba(0, 0, 0, 0.74) 100%
    );
    background-size: 300% 300%;
    box-shadow: 0px 0.3px 3.96px rgba(242, 167, 33, 0.41);
    border-radius: 11.78px;
    outline: 0.59px rgba(240, 184, 61, 0.80) solid;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-animation: textHaze 7s ease-in-out infinite;
    animation: textHaze 7s ease-in-out infinite;
}

@-webkit-keyframes textHaze {
    0%   { background-position: 0% 20%; }
    25%  { background-position: 60% 80%; }
    50%  { background-position: 100% 40%; }
    75%  { background-position: 40% 100%; }
    100% { background-position: 0% 20%; }
}

@keyframes textHaze {
    0%   { background-position: 0% 20%; }
    25%  { background-position: 60% 80%; }
    50%  { background-position: 100% 40%; }
    75%  { background-position: 40% 100%; }
    100% { background-position: 0% 20%; }
}

.button {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 4px 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    background: linear-gradient(178deg, rgba(101.04, 239.06, 99.99, 0.70) 0%, rgba(101.01, 239.02, 100, 0.13) 69%, rgba(101, 239, 100, 0) 100%), linear-gradient(358deg, rgba(37, 43, 34, 0.70) 0%, rgba(37, 43, 34, 0) 100%), linear-gradient(183deg, #4CA421 0%, #4CA421 75%, #4CA421 100%);
    background-blend-mode: linear_dodge, color_burn, normal;
    border-radius: 20.05px;
    border: 0.53px #3D8445 solid;
    color: white;
    font-size: 8px;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 15.84px;
    white-space: nowrap;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-animation: btnPulse 1.4s ease-in-out infinite;
    animation: btnPulse 1.4s ease-in-out infinite;
    z-index: 2;

}


@-webkit-keyframes btnPulse {
    0% {
        -webkit-transform: translateZ(0) scale(1);
        transform: translateZ(0) scale(1);
    }

    50% {
        -webkit-transform: translateZ(0) scale(1.07);
        transform: translateZ(0) scale(1.07);
    }

    100% {
        -webkit-transform: translateZ(0) scale(1);
        transform: translateZ(0) scale(1);
    }
}

@keyframes btnPulse {
    0% {
        -webkit-transform: translateZ(0) scale(1);
        transform: translateZ(0) scale(1);
    }

    50% {
        -webkit-transform: translateZ(0) scale(1.07);
        transform: translateZ(0) scale(1.07);
    }

    100% {
        -webkit-transform: translateZ(0) scale(1);
        transform: translateZ(0) scale(1);
    }
}


.button_glass {
    position: relative;
    width: 107px;
    height: 34px;
    background: radial-gradient(ellipse 284.96% 192.22% at -23.57% -213.91%, #79DE53 0%, rgba(195, 255, 173, 0.18) 69%, rgba(121, 222, 83, 0) 100%), linear-gradient(rgba(43, 72, 29, 0.72), rgba(43, 72, 29, 0.72)), linear-gradient(358deg, rgba(37, 43, 34, 0.70) 0%, rgba(37, 43, 34, 0) 100%), linear-gradient(183deg, #4CA421 0%, #4CA421 75%, #4CA421 100%);
    background-blend-mode: color-dodge, normal, color-burn, normal;
    box-shadow: 0px 2.25px 0px #1A310F;
    border-radius: 24.95px;
    border: 0.66px #3D8445 solid;
    -webkit-backdrop-filter: blur(0.98px);
    backdrop-filter: blur(0.98px);
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin:  0 0 0 auto;
}

.button_glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.38)), to(transparent));
    background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.38), transparent);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    -webkit-animation: btnShine 1.8s linear infinite;
    animation: btnShine 1.8s linear infinite;
}

@-webkit-keyframes btnShine {
    0% {
        left: -80%;
    }

    100% {
        left: 130%;
    }
}

@keyframes btnShine {
    0% {
        left: -80%;
    }

    100% {
        left: 130%;
    }
}
