.button {
    padding: 10px;
    text-decoration: none;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.button-red {
    background: rgba(255, 0, 64, 0.582);
    border: 2px solid rgb(255, 12, 85);
    color: white;
}

.button-green {
    background: rgba(0, 168, 132, 0.733);
    border: 2px solid rgb(0, 156, 65);
    color: white;
}

.button-jaguar {
    background: rgba(197, 135, 1, 0.774);
    border: 2px solid rgba(197, 135, 1, 0.774);
    color: white;
}

.button-blue {
    background: rgba(0, 31, 168, 0.733);
    border: 2px solid rgb(0, 23, 156);
    color: white;
}

.button-small {
    padding: 5px;
    font-size: 12px !important;
    font-weight: 300;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
}
.button-xs-small {
    padding: 5px !important;
    font-size: 11px !important;
    font-weight: 300;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    overflow: auto;
}
.button-xxs-small {
    padding: 5px !important;
    font-size: 11px !important;
    font-weight: 300;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    overflow: auto;
}

.animated-button {
    padding: 10px;
    display: block;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    text-align: center;
    text-decoration: none;
    color: white;
    overflow: hidden;
    -webkit-box-shadow: inset 0 2px 0 rgba(255, 255, 255, .5), 0 2px 2px rgba(0, 0, 0, .3), 0 2px 4px 1px rgba(0, 0, 0, .2);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .5), 0 2px 2px rgba(0, 0, 0, .3), 0 2px 4px 1px rgba(0, 0, 0, .2);
    border-radius: 8px;
}

.animated-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5e564c;
    opacity: 0;
    -webkit-transition: .2s opacity ease-in-out;
    transition: .2s opacity ease-in-out
}

.animated-button:hover::before {
    opacity: .2
}

.animated-button span {
    position: absolute
}

.animated-button span:nth-child(1) {
    top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#0f0));
    background: linear-gradient(to left, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateTop linear infinite;
    animation: 2s animateTop linear infinite
}

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

.animated-button span:nth-child(2) {
    top: 0;
    right: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#0f0));
    background: linear-gradient(to top, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateRight linear -1s infinite;
    animation: 2s animateRight linear -1s infinite
}

@keyframes animateRight {
    100% {
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
    }

    0% {
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
}
}

.animated-button span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#0f0));
    background: linear-gradient(to right, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateBottom linear infinite;
    animation: 2s animateBottom linear infinite
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

.animated-button span:nth-child(4) {
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#0f0));
    background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #fff);
    -webkit-animation: 2s animateLeft linear -1s infinite;
    animation: 2s animateLeft linear -1s infinite
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

.btn-winrate {
    background-color: rgb(0, 170, 65);
    font-size: 13px;
    margin-top: 10px;
    white-space: nowrap;
}