@keyframes flickerAnimation {
    0% {
        color: #000000;
    }

    33.33% {
        color: #838383;
    }

    66.66% {
        color: #000000;
    }

    100% {
        color: #838383;
    }
}

@-o-keyframes flickerAnimation {
    0% {
        color: #000000;
    }

    33.33% {
        color: #838383;
    }

    66.66% {
        color: #000000;
    }

    100% {
        color: #838383;
    }
}

@-moz-keyframes flickerAnimation {
    0% {
        color: #000000;
    }

    33.33% {
        color: #838383;
    }

    66.66% {
        color: #000000;
    }

    100% {
        color: #838383;
    }
}

@-webkit-keyframes flickerAnimation {
    0% {
        color: #000000;
    }

    33.33% {
        color: #838383;
    }

    66.66% {
        color: #000000;
    }

    100% {
        color: #838383;
    }
}

.big_url {
    word-break: break-all;
    line-height: 1.2em;
}

.select2-container--default .select2-selection {
    background-color: #1a1a1a;
    border: 1px solid #838383;
}

.select2-container--default input {
    color: #838383;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #ebc94a;
    color: #111111;
    border: 1px solid #111111;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #111111;
}

.select2-container.select2-container--open .select2-results__option--highlighted {
    background-color: #ebc94a;
    color: #111111;
}

.select2-container.select2-container--open .select2-results__option {
    color: #111111;
}

@media all and (max-width: 900px) {
    .select2.select2-container {
        width: 100% !important;
    }

    .select2.select2-container li {
        margin-bottom: 10px !important;
    }
}

.player_profile {
    cursor: pointer;
}

.player_profile.loading {
    -webkit-animation: flickerAnimation 0.25s infinite;
    -moz-animation: flickerAnimation 0.25s infinite;
    -o-animation: flickerAnimation 0.25s infinite;
    animation: flickerAnimation 0.25s infinite;
}

.profile_wrapper {
    cursor: auto;
    position: absolute;
    transform: scale(0);
    transition: all 0.3s linear;
    margin-top: 25px;
    border: 1px solid #838383;
    width: 300px;
    padding: 0px;
    z-index: 999;
}

.profile_wrapper.visible {
    transform: scale(1);
}

.profile_wrapper,
.profile_wrapper a {
    color: #FFFFFF;
}

.profile_wrapper .top {
    background-color: #553c9a;
    padding: 10px;
    display: flex;
    align-items: center;
}

.profile_wrapper .top .logo {
    margin-right: 20px;
    max-width: 60px;
}

.profile_wrapper .top .name {
    margin-right: 20px;
}

.profile_wrapper .bottom {
    background-color: #000000;
    padding: 50px 20px 70px;
    text-align: center;
    align-content: center;
}

@media all and (max-width: 900px) {
    .profile_wrapper {
        margin-left: 0px;
    }
}

.tournament__info__bestof {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 0;
}