@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

:root {
    --main-bg-color: #1d1d1d;
    --main-txt-color: aliceblue;
    --border-color: goldenrod;
    --main-txt-size: 4vw;
    --bg-color: rgb(19, 19, 19);
    --slogan-fz: 10vw;
    --h1-fz: 7vw;
    --right-first-block-height: 14vh;
    --oppo-fz: 56px;
}

* {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    /* background-color: #fff; */
    color: var(--main-txt-color);
    font-family: sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    background-color: transparent;
}

body {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 0 !important;
    min-height: 100% !important;
    position: absolute;
}

#team-body {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: calc(7vh + 20px);
    margin-bottom: 20px;
}

.loader {
    position: absolute;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #daa520;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    background-color: transparent;
    position: absolute;
    z-index: 20;
  }

  .loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left: 4px solid aliceblue;
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 


.slick-prev,
.slick-next {
    display: none !important;
}

#slider-wrapper {
    background-color: #202020;
    width: 80%;
    height: 50vh;
    position: relative;
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
}

#player-slider {
    background-color: transparent;
    width: 100%;
    height: 50vh;
}

.cards {
    visibility: hidden;
}


.player-card {
    background-color: #202020;
    width: calc(100%/3 - 10px);
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
    margin-right: 10px;
    position: relative;
}

.player-photo-wrapper{
    background-color: transparent;
    background: radial-gradient(circle, rgba(50,50,50,1) 0%, rgba(32,32,32,1)  50%, rgba(19,19,19,1) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.player-photo {
    height: 99%;
    background-color: transparent;
    /* z-index: 10; */
}

.under-player-info {
    /* z-index: 20; */
    position: absolute;
    background-color: rgba(19, 19, 19, .75);
    height: 20%;
    width: calc(100% - 5px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 5px solid goldenrod;
    bottom: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.name-amplua {
    background-color: transparent;
    width: 75%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.number {
    background-color: transparent;
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-number {
    font-family: 'Exo 2';
    font-size: 36px;
    background-color: transparent;
    text-align: center;
    opacity: .75;
    user-select: none;
}

.player-name,
.player-amplua {
    width: auto;
    max-width: calc(100% - 15px);
    text-overflow: ellipsis;
    margin-left: 15px;
    background-color: transparent;
    height: 50%;
    font-family: 'Exo 2';
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.player-name {
    color: #daa520;
    font-size: 32px;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .4s;
}

.player-name:hover {
    background-size: 100% 2px;
}

.player-amplua {
    font-size: 24px;
}

#slider-btns {
    background-color: transparent;
    width: 80%;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    /* box-shadow: 0px 10px 10px 0px rgb(0, 0, 0); */
}

.slider-btn {
    background-color: #202020;
    width: 5vh;
    height: 5vh;
    border-radius: 5px;
    transition: .4s;
    overflow: hidden;
    box-shadow: 0px 10px 10px 0px rgb(0, 0, 0);
}

.slider-btn img {
    background-color: transparent;
    width: 100%;
}

.slider-btn:hover {
    background-color: #daa520;
    cursor: pointer;
    box-shadow: none;
}

.prev-pl-btn {
    margin-right: 10px;
}

.prev-pl-btn img {
    transform: rotate(-90deg);
}

.next-pl-btn img {
    transform: rotate(90deg);
}

#last-matches-best-player {
    margin-top: 10px;
    width: 80%;
    height: 50vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
}

#last-matches {
    height: 100%;
    width: calc(100%/3*2);
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
    border-radius: 5px;
}

#last-best {
    background-color: #202020;
    width: calc(100% - (100%/3*2) - 10px);
    height: 100%;
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
    transition: height .4s;
}

.connect-error {
    color: #daa520;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    background-color: transparent;
    font-family: 'Exo 2';
    user-select: none;
}


.block-header {
    width: calc(100% - 5px);
    height: 50px;
    border-left: 5px solid goldenrod;
    background-color: #202020;
    display: flex;
    align-items: center;
    justify-content: left;
    border-bottom: 1px solid rgba(218, 165, 32,.55);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px !important;
    position: relative;
}

.block-header span,
.block-header a {
    background-color: transparent;
    font-family: 'Exo 2';
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 15px;
}

.block-header a {
    transition: .4s;
    cursor: pointer;
}

.block-header a:hover {
    color: goldenrod;
}

#last-best-player {
    background-color: transparent;
    width: 100%;
    height: calc(100% - 51px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#last-best-player img {
    height: 99%;
    background-color: transparent;
}

#last-matches-table {
    background-color: transparent;
    position: relative;
    width: 100%;
    height: calc(100% - 51px);
}

#last-best-over {
    width: 100%;
    min-height: 20%;
    max-height: 35%;
    height: auto;
    position: absolute;
    bottom: 0;
    background-color: rgba(19, 19, 19, .75);
    overflow: hidden;
    display: flex;
    align-self: center;
    justify-content: center;
}

#vote-count-wrapper,
#best-oppo-wrapper {
    height: auto;
    background-color: transparent;
    display: flex;

}

#vote-count-wrapper {
    width: 35%;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    user-select: none;
}

.per-vote {
    font-family: 'Exo 2';
    font-size: 36px;
    color: goldenrod;
    background-color: transparent;
    text-align: left;
}

.vote-text {
    font-family: 'Exo 2';
    font-size: 24px;
    color: aliceblue;
    background-color: transparent;
    text-align: left;
}

#best-oppo-wrapper {
    width: 65%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.best-last-name {
    max-width: 80%;
    color: #daa520;
    font-family: 'Exo 2';
    font-size: 32px;
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    background-color: transparent;
}

.vs {
    color: aliceblue;
    font-size: 16px;
    font-family: 'Exo 2';
    text-align: left;
    margin-top: 2.5px;
    margin-bottom: 2.5px;
    background-color: transparent;
    user-select: none;
}

.best-last-oppo {
    color: aliceblue;
    font-size: 24px;
    font-family: 'Exo 2';
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    background-color: transparent;
}

.match-tab {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100%/6);
    height: 100%;
    padding: 0 5px;
}

.last-matches-row {
    background-color: #202020;
    width: 100%;
    height: calc(100%/6);
    display: flex;
}

.score-font {
    font-family: 'Exo 2';
    font-size: 22px;
    text-align: center;
}

.tab-head {
    font-family: 'Exo 2';
    font-size: 14px;
    text-align: center;
    user-select: none;
}

.tab-head span {
    background-color: transparent;
    color: inherit;
}

.date-font {
    font-family: 'Exo 2';
    font-size: 12px;
    text-align: center;
}

.head-row {
    border-bottom: 1px solid rgba(218, 165, 32,.55);
    background-color: #202020 !important;
}

.match-row:nth-child(odd),
.svodka-players-row:nth-child(odd) {
    background-color: #171717;
}

.match-row:hover {
    cursor: pointer;
    background-color: rgba(218, 165, 32,.55);
}

.oppo-logo {
    background-color: transparent;
    width: 50%;
}

#svodka {
    margin-top: 10px;
    width: 80%;
    height: 80vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
}

#svodka-players {
    height: 100%;
    width: calc(100%/3*2);
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
    border-radius: 5px;
    background-color: transparent;
}

#svodka-players-table {
    background-color: #daa520;
    width: 100%;
    height: calc(100% - 51px);
}

#svodka-club {
    background-color: transparent;
    width: calc(100% - (100%/3*2) - 10px);
    height: 100%;
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
}

.svodka-players-row {
    background-color: #202020;
    width: 100%;
    height: 10vh !important;
    /* padding-top: 5px;
    padding-bottom: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.svodka-players-tab {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100%/9);
    height: 100%;
    padding: 0 5px;
}

#svodka-players .tab-head {
    font-family: 'Exo 2';
    font-size: 14px;
    text-align: center;
    user-select: none;
}

.scroll-table {
    height: calc(100% - 51px);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: .4s;
}

.scroll-table table {
    width: 100%;
    height: 10vh;
    table-layout: fixed;
	border: none;
    padding-right: 10px;  
}

.scroll-table table thead {
    width: 100%;
    height: 100%;
    position: relative;
}

.head-row-players {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.scroll-table-body {
    width: 100%;
    margin-top: 1px;
    height: calc(100% - 10vh - 1px);
    background-color: transparent;
    overflow-x: auto;
}

.scroll-table-body table {
    width: 100%;
    background-color: transparent;
    height: 100%;
}

.scroll-table-body table tbody {
    width: 100%;
    height: 100%;
}

.tab-player-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.name-wrapper {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.tab-name {
    font-size: 14px;
    color: #daa520;
    font-family: 'Exo 2';
    background-color: transparent;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    text-align: center;
    margin-bottom: 1px;
}

.tab-photo-wrapper {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent;
}

.tab-photo {
    width: 80%;
    background-color: transparent;
}

#club-stats {
    width: 100%;
    height: calc(100% - 51px);
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    position: relative;
    transition: .4s;
}


.club-tab {
    width: 50%;
    height: 20%;
    background-color: rgba(19, 19, 19, .5);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.club-bg {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    opacity: .2;
}

.club-bg img {
    width: 80%;
    background-color: transparent;
}

.stat-value-club,
.stat-name-club {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    text-shadow: 1px 1px 2px black;
    text-align: center;
    color: aliceblue;
}

.stat-value-club {
    font-family: 'Oswald';
    font-size: 64px;
}

.stat-name-club {
    margin-top: 10px;
    font-family: 'Oswald';
    text-transform: uppercase;
    font-size: 16px;
}

#history-top {
    margin-top: 10px;
    width: 80%;
    height: 60vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
}

#history {
    height: 100%;
    width: calc(100%/3*2);
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
    border-radius: 5px;
    background-color: #202020;
}

#top {
    background-color: transparent;
    width: calc(100% - (100%/3*2) - 10px);
    height: 100%;
    background-color: #202020;
    display: flex;
    flex-direction: column;
}

.top-switcher {
    width: 100%;
    height: 50px;
    display: flex;
    background-color: #202020;
    transition: .4s;
}

.top-switch {
    width: calc(100%/5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2';
    cursor: pointer;
    transition: .1s;
}

.top-switch:hover {
    background-color: rgba(218, 165, 32,.55);
}

.select-switch {
    background-color: rgba(218, 165, 32,.55);
    box-shadow: 0px 20px 15px 0px rgb(0, 0, 0);
}

.top-ul {
    width: 100%;
    height: calc(100% - 51px - 50px);
    background-color: #202020;
    position: relative;
}

.top-row {
    width: 100%;
    height: calc(100%/5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-row:nth-child(odd) {
    background-color: #202020;
}

.top-num {
    background-color: transparent;
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2';
    font-size: 18px;
    color: grey;
}

.top-photo {
    background-color: transparent;
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-photo img {
    width: 75%;
    background-color: transparent;
}

.top-name {
    background-color: transparent;
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2';
}

.top-name span {
    background-color: transparent;
    width: auto;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-value {
    background-color: transparent;
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2';
    font-size: 22px;
}

.green {
    color: green;
}

.red {
    color: red;
}

.aliceblue {
    color: aliceblue;
}

.stat-sort:hover {
    cursor: pointer;
    text-decoration: underline;
}

.scroll-table-body,
.pl-head {
    position: relative;
}

.arrow {
    margin-left: 2.5px;
    background-color: transparent;
    color: goldenrod;
}

#players-overlay {
    width: 100%;
    height: 10vh;
    background-color: rgba(19, 19, 19, .5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: 100;
    position: absolute;
    opacity: 0;
    transition: .5s;
}

#players-overlay span {
    font-family: 'Exo 2';
    color: #daa520;
    background-color: transparent;
    text-align: center;
    user-select: none;
    font-weight: 900;

}

.search_match_list {
    width: 35%;
    height: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;

}



.search-vs {
    /* background-color: blue; */
    width: calc(100% - 15px);
    height: 30px;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: rgba(19, 19, 19);
}

form {
    background-color: transparent;
}

.search-button {
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #daa520;
    color: aliceblue;
    text-transform: uppercase;
    font-family: 'Inter';
    border: none;
    box-shadow: 0px 2.5px 10px rgb(218 165 32 / 55%), inset 0 5px 10px transparent;
    transition: .25s;
    font-size: 12px;
}

.search-button:hover {
    transform: scale(.975);
    box-shadow: none;
}

#search_box {
    width: 200px;
    border: 1px solid #daa520;
    padding: 5px;
    position: relative;
    font-family: 'Exo 2';
}

#search_box-result {
    margin-top: 1px;
    width: 200px;
    height: auto;
    background-color: rgba(0, 0, 0, .75);
    backdrop-filter: blur(5px);
    position: absolute;
    z-index: 9999;
}

.search_variant {
    width: calc(100% - 20px);
    height: auto;
    padding: 10px;
    background-color: transparent;
    font-family: 'Exo 2';
}

.search_variant:hover {
    cursor: pointer;
    background-color: rgba(218, 165, 32, 1);
    backdrop-filter: blur(5px);
}

.history_list {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
}

.list_scroll {
    overflow-y: scroll;
}


.no-oppo {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Exo 2';
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;   
}

.no-oppo span {
    text-align: center;
    color: grey;
    width: 80%;
}

.history_row {
    width: 100%;
    height: calc(100%/5);
    background-color: #171717;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.history_row:nth-child(odd) {
    background-color: #202020;
}

.history-date {
    background-color: transparent;
    /* margin-left: 15px; */
    width: calc(100%/3);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2';
    font-size: 12px;
    text-align: center;
}

.history-score {
    background-color: transparent;
    width: calc(100%/3);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2';
    font-size: 22px;
    text-align: center;
}

.history-btn-wrapper {
    background-color: transparent;
    width: calc(100%/3);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-link {
    font-size: 12px;
    /* margin-left: 10px; */
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #daa520;
    color: aliceblue;
    text-transform: uppercase;
    font-family: 'Inter';
    border: none;
    box-shadow: 0px 2.5px 10px rgb(218 165 32 / 55%), inset 0 5px 10px transparent;
    transition: .25s;
}

.history-link:hover {
    transform: scale(.975);
    box-shadow: none;
}

.nolink {
    visibility: hidden;
}

.history_full {
    width: 65%;
    height: 100%;
    background-color: #202020;
    position: relative;
}

#loading-history {
    visibility: hidden;
}

.history-wrapper {
    width: 100%;
    height: calc(100% - 51px);
    display: flex;
}

.history-full-wrapper {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(32,32,32,1) 0%, rgba(19,19,19,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.history-full-desc {
    width: 90%;
    height: auto;
    text-align: center;
    background-color: transparent;
    font-family: 'Exo 2';
    color: aliceblue;
    /* visibility: hidden; */
    /* display: none; */
}

.history-full-desc span {
    background-color: transparent;
}

.exp-oppo {
    color: goldenrod;
    cursor: pointer;
}

.ops-holder {
    width: 80%;
    height: 20%;
    display: flex;
    background-color: transparent;

}

.ops-holder span {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    user-select: none;
    font-family: 'Inter';
    font-size: 24px;
    background-color: transparent;
}

.ops-img,
.ops-stat-value {
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    font-family: 'Exo 2';
    font-size: 24px;
    text-align: center;
}

.ops-img img {
    height: 80%;
    background-color: transparent;
}

.ops-stat {
    width: 80%;
    height: calc(80%/6);
    display: flex;
    background-color: transparent;
}

.stat-desc {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Exo 2';
    background-color: transparent;
}

.res-bar {
    width: 100%;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.res-win {
    background-color: rgba(68,148,74,.75) !important;
    height: 100%;
    width: calc(100%/3) !important;
    font-size: 12px !important;
    user-select: none;
}

.res-draw {
    background-color: rgba(128,128,128,.75) !important;
    height: 100%;
    width: calc(100%/3) !important;
    font-size: 12px !important;
    user-select: none;
}

.res-lose {
    background-color: rgba(176,0,0,.75) !important;
    height: 100%;
    width: calc(100%/3) !important;
    font-size: 12px !important;
    user-select: none;
}

#calctop-table {
    margin-top: 10px;
    width: 80%;
    height: 60vh;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
}

#calctop {
    height: 100%;
    width: calc(100%/3*2);
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
    border-radius: 5px;
    background-color: #202020;
}

#tournament-table {
    background-color: transparent;
    width: calc(100% - (100%/3*2) - 10px);
    height: 100%;
    background-color: #202020;
    display: flex;
    flex-direction: column;
}

.tournament-ul {
    background-color: transparent;
    width: 100%;
    height: calc(100% - 51px - 51px);
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    transition: .4s;
}

.tournament-tab-head {
    width: calc(100% - 10px);
    height: 50px;
    border-bottom: 1px solid goldenrod;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    background-color: transparent;
    transition: .4s
}

.tournament-tab-head div {
    background-color: transparent;
    font-family: 'Exo 2';
    text-transform: uppercase;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tournament-li {
    width: 100%;
    height: calc(100%/8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tournament-li:nth-child(odd) {
    background-color: #202020;
}

.tournament-li div {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2';
    height: 100%;
}

.tournament-li div span {
    background-color: transparent;
}

.tournament-num {
    width: 10%;
}

.tournament-name {
    width: 40%;
    overflow: hidden;
}

.tournament-name span {
    max-width: 90%;
    background-color: transparent;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tournament-matches {
    width: 25%;
}

.tournament-points {
    width: 25%;
}

.endrow {
    border: 1px solid goldenrod;
    background-color: rgba(218, 165, 32,.45) !important;
}

.calctop-wrapper {
    width: 100%;
    height: calc(100% - 51px);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .4s;
}

.calc-mvp {
    height: 100%;
    width: calc(100%/4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(32,32,32,1) 0%, rgba(19,19,19,1) 100%);
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0);
    position: relative;
}

.calc-photo {
    background-color: transparent;
    width: 90%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.calc-photo img {
    height: 90%;
    background-color: transparent;
}

.calc-pos {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Exo 2';
}

.calc-name {
    width: 80%;
    height: 10%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-left: 10%;
    padding-right: 10%;
    background-color: transparent;
}

.calc-name span {
    text-align: center;
    width: auto;
    max-width: 90%;
    font-size: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Exo 2';
    background-color: transparent;
}

.calc-value {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-family: 'Exo 2';
    background-color: transparent;
}

.calc-value-span {
    width: 90%;
    height: 75%;
    text-align: center;
    font-size: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.coef-name {
    width: 80%;
    height: 25%;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background-color: transparent;
}

.coef-name:hover {
    text-decoration: underline;
    cursor: pointer;
}

.over-calc {
    position: absolute;
    top: 0;
    height: 90%;
    width: 80%;
    background-color: rgba(19, 19, 19, .5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    transition: .4s;
    font-family: 'Exo 2';
    color: #daa520;
    opacity: 0;
}

.desc-active {
    opacity: 1;
}

.razvorot {
    font-size: 28px !important;
    font-style: normal;
    font-family: 'Oswald' !important;
    position: absolute;
    right: calc(12% - 28px/2);
    top: calc(50% - 28px/2);
    color: aliceblue;
    color: #daa520;
    transform: rotate(90deg);
    visibility: hidden;
}

.min-raz {
    transform: rotate(90deg);
}

.max-raz {
    transform: rotate(-90deg);
}

/* .min {
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: .4s;
} */

#last-best-player .max {
    height: 40vh !important;
}

.max-top {
    height: 60vh;
}

.max-svodka-players {
    height: 70vh;
}
.max-svodka-club {
    height: 40vh;
}

.max-table {
    height: 50vh;
}

.max-calctop {
    height: calc(45vh * 4);
}
.max-last {
    height: 35vh;
}

.over_search {
    position: absolute;
    top: calc(50% - 25px);
    right: -40px;
    width: 40px;
    height: 40px;
    background-color: #daa520;
    z-index: 11;
    display: none;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    box-shadow: 0px 2.5px 10px rgb(218 165 32 / 55%), inset 0 5px 10px transparent;
}

.over_search img {
    background-color: transparent;
    width: 50%;
}

#arrow-up {
    right: calc(20%/4 - 2.5vh) !important;
}

.blur-history {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: rgba(19, 19, 19, .5);
    backdrop-filter: blur(2px);
    visibility: hidden;
}