a.right-content-start-the-game
{
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 264px;
    height: 75px;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.75);
    background-color: rgba(99, 154, 84, 1);
    transition: all 0.5s ease-out 0s;
}

a.right-content-start-the-game div.right-content-start-the-game-button-animation span {
    position: absolute;
    display: block;
}

a.right-content-start-the-game div.right-content-start-the-game-button-animation span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 0,100));
    animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }
    50%,100% {
        left: 100%;
    }
}

a.right-content-start-the-game div.right-content-start-the-game-button-animation span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(57, 255, 0,100));
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }
    50%,100% {
        top: 100%;
    }
}

a.right-content-start-the-game div.right-content-start-the-game-button-animation span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, rgba(57, 255, 0,100));
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }
    50%,100% {
        right: 100%;
    }
}

a.right-content-start-the-game div.right-content-start-the-game-button-animation span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, rgba(57, 255, 0,100));
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }
    50%,100% {
        bottom: 100%;
    }
}

a.right-content-start-the-game:hover
{
    height: 75px;
    color: rgba(255, 255, 255, 1);
    background-color: rgb(128, 184, 113);
    transition: all 0.5s ease-out 0s;
}

a.right-content-start-the-game:active
{
    height: 75px;
    color: rgba(255, 255, 255, 1);
    background-color: rgb(255, 140, 0);
    transition: all 0s ease-out 0s;
}

div.right-content-block-player-personal-account-min
{
    color: rgba(173, 136, 107, 1);
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
    line-height: 40px;
    height: 350px;
}

