@charset "UTF-8";

:root{
    --match-height: 220px;
    --match-spacing: 106px;
    --match-width: 106px;
    --round--width: 558px;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    background-color: #0B0D13;
    counter-reset: section;
    box-sizing: border-box;
}

body *,
body *:before,
body *:after {
    box-sizing: inherit;
}

a,
path {
    text-decoration: none !important;
    transition: all 0.6s ease-in-out;
}

button:focus,
:focus {
    outline: none !important;
    box-shadow: none !important;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

p:empty {
    display: none;
}

.blue-gradiant {
    background: linear-gradient(-180deg, #4FA6FF 0%, #007EFF 100%);
}

.blue-gradiant-1 {
    background: linear-gradient(-270deg, #007EFF 0%, #4FA6FF 100%);
}

.yellow-gradiant {
    background: linear-gradient(-90deg, #ECCC68 0%, #FFA502 100%);
}

.gray-gradiant {
    background: linear-gradient(-270deg, #39415C 0%, #555F83 100%);
}

.green-gradiant {
    background: linear-gradient(-270deg, #2FCE6E 0%, #7DDBA2 100%);
}

.red-gradiant {
    background: linear-gradient(-270deg, #FF4757 0%, #FF6B81 100%);
}

.orange-gradiant {
    background: linear-gradient(-270deg, #FF6348 0%, #FF7F50 100%);
}

.blue-gradiant-text {
    background: linear-gradient(-180deg, #4FA6FF 0%, #007EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    height: auto;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 0;
    color: #ffffff;
    border: none;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    position: relative;
    transition-property: color;
    transition-duration: 0.5s;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleY(0);
    transform-origin: 50% 100%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.btn:hover:before {
    transform: scaleY(1);
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn:hover {
    color: #ffffff;
}

.modal-backdrop {
    background: rgba(11, 13, 19, 0.8);
    opacity: 1 !important;
}

.container-fluid {
    padding-right: 50px;
    padding-left: 50px;
}

.content__wrapper {
    margin-right: 100px;
    margin-top: 100px;
}

@media (min-width: 1800px) {
    .container-fluid {
        max-width: 1630px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1315px;
    }
}

.main__title {
    border-bottom: 1px solid #215041;
    margin-bottom: 30px;
}

.main__title h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (min-width: 5000px) {
    body {
        zoom: 1.2;
    }
}

@media (max-width: 1600px) {
    .content__wrapper {
        margin-right: 80px;
        margin-top: 88px;
    }
}

@media (max-width: 1199px) {
    .content__wrapper {
        margin-top: 85px;
    }
}

@media (max-width: 991px) {
    .container-fluid {
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 100%;
    }

    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }

    .content__wrapper {
        margin-right: 0;
        margin-top: 80px;
    }

    .main__title {
        margin-bottom: 20px;
    }

    .main__title h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}
/* Message Modal */

.message--modal .modal-dialog {
    margin: 120px auto;
}

.message--modal .modal-content {
    background-color: rgba(17, 20, 29, 0.96);
    box-shadow: 0 38px 45px rgba(0, 0, 0, 0.6);
}

.message--modal .close {
    top: 5px;
    left: 0;
    opacity: 1;
    padding: 0;
    margin: 0;
    width: 25px;
    height: 25px;
}

.message--modal .close svg {
    width: 12px;
    height: 12px;
}

.message--modal .close svg path {
    fill: #ffffff;
}

.message--modal .message__body p {
    color: #ffffff;
    font-size: 16px;
}


/* Message Modal */


/* Loader CSS */

.loader__wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 13, 19, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader__wrapper .loader li {
    background: linear-gradient(-270deg, #007EFF 0%, #4FA6FF 100%);
    margin-right: 1px;
    width: 20px;
    height: 30px;
    display: inline-block;
    opacity: 0;
    border-radius: 2px;
    transform: skew(25deg, 0deg) scale(0.1);
    -webkit-animation: loader 0.5s ease-in-out infinite alternate;
    animation: loader 0.5s ease-in-out infinite alternate;
}

.loader__wrapper .loader li:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.loader__wrapper .loader li:nth-child(3) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loader__wrapper .loader li:nth-child(4) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loader__wrapper .loader li:nth-child(5) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.loader__wrapper .loader li:nth-child(6) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.loader__wrapper .loader li:nth-child(7) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes loader {
    to {
        transform: skew(25deg, 0deg) scale(1);
        opacity: 1;
    }
}

@keyframes loader {
    to {
        transform: skew(25deg, 0deg) scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
/* Trophies counter CSS */

.trophies__icon a {
    display: inline-block;
    position: relative;
}

.trophies__icon a .trophies__count {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 22px;
    min-width: 22px;
    text-align: center;
    background: linear-gradient(-180deg, #4FA6FF 0%, #007EFF 100%);
    line-height: 22px;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    padding: 0 5px;
    font-size: 10px;
}


/*09-06-2022*/

.swiper-button-next,
.swiper-button-prev {
    top: 15px;
    border: 2px solid;
    border-radius: 40px;
    height: 40px;
    width: 40px;
    color: #1b8cff;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    left: 60px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    right: auto;
    left: 120px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:after {
    width: 10px;
}

@media (max-width: 767px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
        top: 20px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }

    .swiper-button-next:after {
        width: 5px;
    }

    .swiper-button-prev,
    .swiper-rtl .swiper-button-next {
        left: 55px;
    }

    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        left: 15px;
    }
}


/* 06072022*/

.explore__more.text-right {
    padding-left: 180px;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .explore__more.text-right {
        padding-left: 100px;
    }
}

.card {
    background-color: #161b26;
    border-radius: 10px;
    border: none;
}


/* Event Modal CSS */

.event-modal.modal .modal-content .modal-body {
    padding: 30px 30px 0;
}

.event-modal .modal__header {
    padding: 15px;
    position: relative;
}

.event-modal .upload__icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 46px;
    height: 46px;
    background: #0B0D13;
    opacity: 0.5;
    border-radius: 8px;
    cursor: pointer;
}

.event-modal .upload__icon img {
    position: static;
    width: 20px;
    height: 20px;
    border-radius: 0;
}

.event-modal .upload__icon:hover {
    opacity: 1;
}

.event-modal .event__banner {
    position: relative;
    overflow: hidden;
    padding-top: 45.8%;
}

.event-modal .event__banner>img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
    border-radius: 10px;
}

.event-modal .tournament__logo {
    width: 150px;
    margin: -130px auto 30px;
    position: relative;
}

.event-modal .tournament__logo>img {
    border-radius: 12px;
}

.event-modal .tournament__logo .upload__icon {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    left: auto;
    bottom: auto;
}

.event-modal .form-group {
    margin-bottom: 30px;
}

.event-modal .form-group .form-control {
    padding: 13px 15px;
    line-height: 1.6;
}

.event-modal .form-group .custom-select {
    background: #181D29 url(../img/icons/down_arrow.svg) no-repeat 97% center/12px;
}

.event-modal .input-group .input-group-prepend .input-group-text {
    padding: 13px 15px 13px 10px;
    font-family: 'Futura, sans-serif';
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
}

.event-modal .input-group .form-control {
    padding-right: 10px;
    border-radius: 8px;
}

.event-modal .input-group .input-group-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    right: auto;
    bottom: auto;
    pointer-events: none;
    z-index: 9;
}

.event-modal .form__wrapper:not(:last-child) {
    border-bottom: 1px solid #215041;
    margin-bottom: 30px;
}


/* Event Modal CSS */


/* Join Tournament Modal CSS */

.ui-datepicker {
    z-index: 9999 !important;
}


/* .ui-widget.ui-widget-content {
  border-color: #215041 !important;
  background: #0b0d13 !important;
  color: #ffffff !important;
} */

.ui-widget-content .ui-state-active {
    border: 1px solid #3096ff !important;
    background: #409eff !important;
}


/*
.ui-widget-content .ui-state-default {
  background: #ffffff !important;
} */

.modal .close {
    position: absolute;
    top: 10px;
    bottom: auto;
    right: auto;
    left: 10px;
    opacity: 0.4;
    text-shadow: none;
    float: none;
}

.modal .modal-title {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #215041;
}

.modal .input-group-prepend .input-group-text {
    background: #0B0D13;
    border: none;
    position: relative;
    padding: 20px 15px;
}

.modal .input-group-prepend .input-group-text::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-color: #242B3E;
    border-radius: 10px;
    width: 1px;
    height: 18px;
    z-index: 9;
}

.modal .input-group-prepend .input-group-text img {
    width: auto;
    height: 10px;
}

.modal .form-control {
    background-color: #0B0D13;
    border-radius: 8px;
    border: none;
    height: auto;
    color: #ffffff;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Futura, sans-serif';
    font-weight: 700;
}

.modal .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.modal .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.modal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.modal .modal-dialog {
    max-width: 560px;
}

.modal .modal-content {
    background-color: #161b26;
    border-radius: 10px;
    border: none;
}

.modal .modal-content label {
    font-size: 18px;
    margin-bottom: 20px;
}

.modal .modal-content .modal-body {
    padding: 30px;
    width: 100%;
}

.modal .tournament__rule__main {
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
    border-top: 1px solid #215041;
}

.modal .tournament__rule__main .tournament-rules {
    /* max-height: 310px; */
    background-color: #0B0D13;
    border-radius: 8px;
    padding: 15px;
}

.modal .tournament__rule__main .tournament-rules p {
    font-size: 16px;
    font-weight: 500;
}

.modal .tournament__terms {
    border-bottom: 1px solid #215041;
    padding-bottom: 30px;
}

.modal .tournament__terms label {
    font-size: 14px !important;
    font-family: 'Futura, sans-serif';
}

.modal .tournament__terms .custom-checkbox {
    padding-right: 40px;
    cursor: pointer;
}

.modal .tournament__terms .custom-checkbox .custom-control-label {
    cursor: pointer;
}

.modal .tournament__terms .custom-checkbox .custom-control-label::before {
    border-radius: 8px;
    border: 2px solid #333C56;
    background-color: transparent;
    width: 26px;
    height: 26px;
    min-width: 26px;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.modal .tournament__terms .custom-checkbox .custom-control-label::after {
    top: 3px;
    right: -34px;
    width: 14px;
    height: 14px;
    background: transparent;
    border-radius: 4px;
}

.modal .tournament__terms .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background: linear-gradient(-180deg, #00f5a3 0%, #06FFF8 100%);
}

.modal .modal-footer {
    padding: 30px;
    border-radius: 0 0 10px 10px;
    border-color: #242B3E;
    background: linear-gradient(-270deg, #181D29 9.67%, #212738 21.67%, #181D29 62.3%);
}


/* Join Tournament Modal CSS */


/* Tab CSS */

.tournament__tab .nav-tabs {
    border-color: #215041;
}

.tournament__tab .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 30px;
    background-color: transparent;
    transition: all 0.5s;
}

.tournament__tab .nav-tabs .nav-link.active {
    color: #ffffff;
    border-color: #00f5a3;
}


/* Tab CSS */


/* Tournament Cover CSS */

.tournament__cover {
    padding-top: 17.7%;
    position: relative;
    overflow: hidden;
}

.tournament__cover img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 100%;
    opacity: 0.7;
}

.tournament__details .tournament__logo {
    max-width: 270px;
    flex: 0 0 270px;
    margin-top: -100px;
    z-index: 9;
    height: 330px;
    background-color: rgb(0 245 163 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.tournament__details .tournament__logo img {
    border-radius: 12px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.tournament__details .tournament__info {
    margin-right: 20px;
}

.tournament__details .tournament__info span {
    font-weight: 500;
}

.tournament__details .tournament__heading h1 {
    margin: 0;
    font-size: 36px;
}

.tournament__details .tournament__heading .share {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border: 2px solid #212736;
    border-radius: 10px;
    margin-right: 10px;
}

.tournament__details .tournament__heading .edit__event {
    margin-right: 10px;
}

.tournament__details .tournament__heading .edit__event .btn {
    width: 180px;
    padding: 12px;
    line-height: 1;
}

.tournament__details .tournament__join h5 {
    font-size: 16px;
}

.tournament__details .tournament__join span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.tournament__details .tournament__join .btn__wrapper {
    position: relative;
    margin-right: 25px;
    padding-right: 25px;
}

.tournament__details .tournament__join .btn__wrapper .btn {
    width: 180px;
    padding: 12px;
}

.tournament__details .tournament__join .btn__wrapper .btn-joined {
    border: 2px solid #212736;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.tournament__details .tournament__join .btn__wrapper:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 30px;
    background-color: #215041;
    border-radius: 10px;
}

.tournament__details .tournament__join .btn__wrapper svg {
    margin-top: -5px;
}

.tournament__details .tournament__join .btn__wrapper svg path {
    fill: #ffffff;
}

.tournament__details .tournament__des {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #215041;
}

.tournament__details .tournament__des .info__item span {
    font-size: 12px;
}

.tournament__details .tournament__des .info__item h5 {
    font-size: 16px;
    margin-top: 2px;
}

.tournament__details .tournament__des .info__item:not(:last-child) {
    margin-left: 32px;
}

.tournament__details>div {
    flex: auto;
}

.tournament__cancel--btn .btn {
    padding: 12px 50px;
}


/* Tournament Cover CSS */


/* Prize Pool Block CSS */

.price__pool {
    margin: 0 -10px;
}

.price__pool .price__pool-col {
    padding: 0 10px;
}

.price__pool .price__pool-col:nth-child(2) .price__pool__item:before,
.price__pool .price__pool-col:nth-child(2) .price__pool__item:after,
.price__pool .price__pool-col:nth-child(2) .price__pool__item span {
    background: linear-gradient(-180deg, #C8C8C8 -1.32%, #EBEBEB 100%);
}

.price__pool .price__pool-col:nth-child(3) .price__pool__item:before,
.price__pool .price__pool-col:nth-child(3) .price__pool__item:after,
.price__pool .price__pool-col:nth-child(3) .price__pool__item span {
    background: linear-gradient(-180deg, #C0843C -1.32%, #CEB18D 100%);
}

.price__pool__item {
    padding: 20px 30px;
    overflow: hidden;
    position: relative;
}

.price__pool__item h4 {
    color: #ffffff;
    font-size: 18px;
}

.price__pool__item h4 span {
    font-size: 58px;
    margin-left: 5px;
    background: linear-gradient(-180deg, #E9C070 -1.32%, #EDD7AC 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.price__pool__item p {
    font-size: 24px;
    font-weight: 700;
}

.price__pool__item::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 60px;
    background: linear-gradient(-180deg, #E9C070 -1.32%, #EDD7AC 100%);
    border-radius: 8px;
}

.price__pool__item:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(-180deg, #E9C070 -1.32%, #EDD7AC 100%);
    filter: blur(40px);
}


/* Prize Pool Block CSS */


/* About Tournament CSS */

.about__tournament {
    padding: 25px;
}

.about__tournament p {
    font-size: 16px;
    font-weight: 500;
}

.about__tournament .card__footer {
    border-top: 1px solid #215041;
    margin-top: 20px;
    padding-top: 20px;
    display: block !important;
}

.about__tournament .card__footer .user__info {
    margin-bottom: 10px;
}

.about__tournament .card__footer .user__profile img {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.about__tournament .card__footer .user__des span {
    font-weight: 500;
}

.about__tournament .card__footer .user__des h5 {
    font-size: 16px;
}

.about__tournament .social__sharing li a {
    border: 2px solid #212736;
    border-radius: 10px;
    width: 42px;
    height: 42px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease-in-out;
}

.about__tournament .social__sharing li a svg path {
    fill: rgba(255, 255, 255, 0.7);
}

.about__tournament .social__sharing li a:hover {
    border: none;
    background: linear-gradient(-270deg, #252C3F 0%, #303951 100%);
    transition: all 0.6s ease-in-out;
}

.about__tournament .social__sharing li a:hover svg path {
    fill: #ffffff;
    transition: all 0.6s ease-in-out;
}

.about__tournament .social__sharing li:not(:last-child) {
    margin-left: 6px;
}


/* About Tournament CSS */


/* Tournament Rules CSS */

.accordion .card-header {
    padding: 27px 30px;
    border: none;
    position: relative;
    cursor: pointer;
    background-color: transparent;
}

.accordion .card-header h4 {
    font-size: 18px;
}

.accordion .card-header .collapse__icon {
    position: absolute;
    top: 28px;
    left: 30px;
    right: auto;
    bottom: auto;
}

/* Initially, show the minus icon and hide the plus icon */
.accordion .card-header .collapse__icon.plus {
    display: none;
}

.accordion .card-header .collapse__icon.minus {
    display: block;
}

/* When the card is collapsed, hide the minus icon */
.accordion .card-header.collapsed .collapse__icon.minus {
    display: none;
}

/* When the card is collapsed, show the plus icon */
.accordion .card-header.collapsed .collapse__icon.plus {
    display: block;
}
.nf_plus-show, .nf_plus-hide {
    display: flex;
    align-items: center;
}

.nf_plus-show span, .nf_plus-hide span {
    margin-left: 5px;
}
.accordion .card-body {
    padding-top: 0;
    max-height: 250px;
    overflow: auto;
}

.accordion .card-body p {
    font-size: 16px;
}

.accordion>.card {
    border-radius: 8px !important;
}

.accordion>.card:not(:last-child) {
    margin-bottom: 6px;
}


/* Tournament Rules CSS */


/* Schedule Block CSS */

.tournament__schedule .card-body {
    max-height: 100%;
    overflow: unset;
}

.tournament__schedule .card-header {
    padding: 31px ​30px;
}

.tournament__schedule .card-header h5 {
    position: absolute;
    top: 35px;
    right: 30px;
    left: auto;
    bottom: auto;
    font-size: 16px;
}

.tournament__schedule .card-header h4 {
    font-size: 24px;
}


/* Match List CSS */

.match__list .match__item {
    border-top: 1px solid #215041;
    padding: 30px 0;
}

.match__list .match__item .match__number {
    width: 20%;
}

.match__list .match__item .match__number h3 {
    background-color: #212736;
    border-radius: 6px;
    font-size: 20px;
    padding: 12px 16px;
    line-height: 0.9;
    display: inline-block;
}

.match__list .match__item .match__verses {
    width: 60%;
}

.match__list .match__item .match__verses .team__name {
    max-width: 35%;
    flex: 0 0 35%;
    opacity: 0.3;
}

.match__list .match__item .match__verses .team__name h4 {
    font-size: 20px;
    color: #ffffff;
}

.match__list .match__item .match__verses .team__name .team__logo {
    background-color: #0B0D13;
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
}

.match__list .match__item .match__verses .team__name .team__logo img {
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.match__list .match__item .match__verses .team__name.winner {
    opacity: 1;
}

.match__list .match__item .team__point {
    padding: 0 38px;
    max-width: 30%;
    flex: 0 0 30%;
    text-align: center;
}

.match__list .match__item .team__point h2 {
    font-size: 25px;
}

.match__list .match__item .team__point h2 span {
    font-size: 12px;
    opacity: 0.4;
}

.match__list .match__item .team__point .point__separator {
    font-size: 25px;
    position: relative;
    top: -3px;
}

.match__list .match__item .match__action {
    width: 20%;
}

.match__list .match__item .match__action .btn {
    width: 180px;
}

.match__list .match__item .match__action .btn img {
    margin: -4px 4px 0 0;
}


/* Match List CSS */


/* Tournament Bracket CSS */

.brackets-block {
    margin-top: 80px;
    background-color: rgb(0 12 8);
    padding: 20px;
    border-radius: 10px;
}

.brackets-block h2 {
    font-size: 36px;
    margin: 0 auto 20px;
    padding-bottom: 20px;
    width: 850px;
    border-bottom: 1px solid #215041;
}

.full__screen {
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    bottom: auto;
}

.full__screen a {
    display: flex;
    color: rgba(255, 255, 255, 0.7);
    background-color: #161b26;
    border-radius: 8px;
    padding: 16px 14px;
    font-weight: 700;
}

.tab-pane.active.view__fullscreen {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    z-index: 99999;
    background-color: #0B0D13;
    overflow-y: scroll;
    padding: 50px;
}

.close__full__screen {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: linear-gradient(-270deg, #FF6348 0%, #FF7F50 100%);
    text-align: center;
    color: #ffffff;
    font-size: 20px;
    border-radius: 6px;
    cursor: pointer;
}

.brackets__tab {
    margin-bottom: 50px;
    position: relative;
}

.brackets__tab .nav-tabs .nav-item {
    background-color: #161b26;
    border-radius: 8px;
    border: 2px solid transparent;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    padding: 14px 18px;
    transition: all 0.6s ease-in-out;
}

.brackets__tab .nav-tabs .nav-item.active,
.brackets__tab .nav-tabs .nav-item:hover {
    border-color: #00f5a3;
    color: #ffffff;
    transition: all 0.6s ease-in-out;
}

.brackets__tab .nav-tabs .nav-item:not(:last-child) {
    margin-left: 6px;
}

.tournament-bracket {
    display: flex;
    flex-direction: row;
}

.tournament-bracket__round {
    display: block;
    margin-right: -3px;
    flex: 1;
}

/* .tournament-bracket__round:first-child .tournament-bracket__item {
    padding-left: 0;
} */

.tournament-bracket__round--champion {
    width: 350px;
    margin: 0 auto;
}

.tournament-bracket__list {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    justify-content: center;
    height: 100%;
    padding: 0;
    margin: 0;
    min-height: 100%;
    transition: padding 0.2s ease-in-out, margin 0.2s ease-in-out;
}

.tournament-bracket__item {
    display: flex;
    flex: 0 1 auto;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 0 3.8em;
    width: 100%;
    transition: padding 0.2s linear;
}

.tournament-bracket__item .tournament__match {
    width: 100%;
    outline: none;
    cursor: pointer;
    transition: padding 0.2s ease-in-out, border 0.2s linear;
}

.tournament-bracket__item .tournament__match .team {
    padding: 15px;
    opacity: 0.4;
}

.tournament-bracket__item .tournament__match .team .team__logo {
    background-color: #0B0D13;
    border-radius: 50%;
    width: 54px;
    min-width: 54px;
    height: 54px;
}

.tournament-bracket__item .tournament__match .team .team__logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tournament-bracket__item .tournament__match .team .team__name h4 {
    font-size: 20px;
    color: #ffffff;
}

.tournament-bracket__item .tournament__match .team .point {
    background-color: #212736;
    width: 43px;
    height: 43px;
    border-radius: 6px;
    text-align: center;
}

.tournament-bracket__item .tournament__match .team .point h5 {
    font-size: 20px;
    color: #ffffff;
}

.tournament-bracket__item .tournament__match .team.winner {
    opacity: 1;
}

.tournament-bracket__item .tournament__match .team.winner .point {
    background: linear-gradient(-270deg, #FF6348 0%, #FF7F50 100%);
}

.tournament-bracket__item .tournament__match .team:not(:last-child) {
    margin-bottom: 6px;
}

.tournament-bracket__item:not(:last-child) {
    margin-bottom: 40px;
}

.tournament-bracket__round {
    display: block;
    margin-right: -3px;
    flex: 0 0 420px;
}

.win_bracket .tournament-bracket__round {
    flex: 0 0 560px;
}

.win-loser-wrap::-webkit-scrollbar {
    width: 20px;
    height: 8px;
    padding-bottom: 30px;
}

.win-loser-wrap::-webkit-scrollbar-track {
    border-radius: 10px;
}

.win-loser-wrap::-webkit-scrollbar-thumb {
    background: #215041;
    border-radius: 10px;
}


/* League Page CSS */

.league__btns .btn {
    width: 180px;
}

.league__btns .league__btn-group .btn:not(:last-child) {
    margin-left: 4px;
}

.league__btns .league__btn {
    margin-right: 25px;
    padding-right: 25px;
    position: relative;
}

.league__btns .league__btn:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 30px;
    background-color: #215041;
    border-radius: 10px;
}

.ranking__table .rank-table tbody tr td .team__name .team__logo img {
    -o-object-fit: contain;
    object-fit: contain;
}

.ranking__table table {
    border-collapse: separate;
    border-spacing: 0 6px;
}

.ranking__table table thead tr th {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 700;
    padding: 10px 40px;
}

.ranking__table table tr td {
    font-weight: 700;
    vertical-align: middle;
    position: relative;
    text-align: center;
    padding: 23px 40px;
    background-color: #161b26;
    color: rgba(255, 255, 255, 0.7);
}

.ranking__table table tr td:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 40px;
    background-color: #242B3E;
    border-radius: 10px;
    z-index: 9;
}

.ranking__table table tr td:last-child:after,
.ranking__table table tr td:nth-child(3):after {
    display: none;
}

.ranking__table table tr td:first-child {
    border-radius: 0 10px 10px 0;
}

.ranking__table table tr td:last-child {
    border-radius: 10px 0 0 10px;
}

.ranking__table table tbody tr {
    margin-bottom: 6px;
}

.ranking__table table tbody tr td .rank__no {
    min-width: 42px;
    width: 42px;
    height: 42px;
    margin: 0 auto;
    background-color: #212736;
    border-radius: 6px;
}

.ranking__table table tbody tr td .rank__no span {
    color: #ffffff;
    font-size: 20px;
}

.ranking__table table tbody tr td h4 {
    font-size: 20px;
}

.ranking__table table tbody tr td .team__name {
    text-align: right;
}

.ranking__table table tbody tr td .team__name .team__logo {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
}

.ranking__table table tbody tr td .team__name .team__logo img {
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.ranking__table table tbody tr td .match__win h4 {
    color: #2FCE6E;
}

.ranking__table table tbody tr td .match__lose h4 {
    color: #F92935;
}

.ranking__table table tbody tr td .match__points h4 {
    color: #00f5a3;
}

.ranking__table table tbody tr:nth-child(1) .rank__no span {
    background: linear-gradient(-180deg, #E9C070 -1.32%, #EDD7AC 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.ranking__table table tbody tr:nth-child(2) .rank__no span {
    background: linear-gradient(-180deg, #C8C8C8 -1.32%, #EBEBEB 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.ranking__table table tbody tr:nth-child(3) .rank__no span {
    background: linear-gradient(-180deg, #C0843C -1.32%, #CEB18D 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

.pagination__main {
    border-top: 1px solid #215041;
    margin-top: 24px;
    padding-top: 20px;
}

.pagination {
    flex-wrap: wrap;
}

.pagination .page-item {
    margin-bottom: 5px;
}

.pagination .page-item .page-link {
    color: #ffffff;
    border: 2px solid #212736;
    border-radius: 8px;
    padding: 0;
    line-height: 0.5;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    margin-right: 8px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
    background: linear-gradient(-270deg, #007EFF 0%, #4FA6FF 100%);
    border: none;
}


/* Search Opponent Modal */

.modal-open,
.modal-open .header {
    padding-left: 0 !important;
}

.search__opponent--modal .modal-dialog {
    margin: 120px auto;
}

.search__opponent--modal .modal-content {
    background-color: rgba(17, 20, 29, 0.96);
    box-shadow: 0 38px 45px rgba(0, 0, 0, 0.6);
}

.search__opponent--modal .close {
    top: 5px;
    left: 0;
    opacity: 1;
    padding: 0;
    margin: 0;
    width: 25px;
    height: 25px;
}

.search__opponent--modal .close svg {
    width: 12px;
    height: 12px;
}

.search__opponent--modal .search__opponent--box .team__logo img {
    width: 60px;
}

.search__opponent--modal .search__opponent--box .search__opponent--msg {
    margin-right: 30px;
    flex: 1;
}

.search__opponent--modal .search__opponent--box .search__opponent--msg h2 {
    color: #ffffff;
    font-size: 24px;
    border-bottom: 1px solid #242B3E;
    margin-bottom: 13px;
    padding-bottom: 13px;
}

.search__opponent--modal .search__opponent--box .search__opponent--msg .search__time h4 {
    font-size: 16px;
}

.search__opponent--modal .search__opponent--box .search__opponent--msg .search__time h4 span {
    position: relative;
    padding-right: 10px;
    margin-right: 5px;
}

.search__opponent--modal .search__opponent--box .search__opponent--msg .search__time h4 span:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #242B3E;
    border-radius: 10px;
}

.search__opponent--modal .search__opponent--box .search__opponent--msg.found-match h2 {
    background: linear-gradient(-270deg, #2FCE6E 0%, #7DDBA2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Search Opponent Modal */


/* Accept Opponent Modal */

.accept__opponent-modal .modal-title {
    margin-bottom: 20px;
}

.accept__opponent-modal .team__name h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: auto;
    max-width: 86px;
}

.accept__opponent-modal .modal-footer .btn {
    width: 180px;
}

.modal .rank__logo img {
    width: 30px;
}

.modal .team__name h4 {
    font-size: 18px;
}

.modal .team__name .team__logo {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background-color: #0B0D13;
}

.modal .team__name .team__logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.modal .league__varses__battle .varses {
    font-size: 24px;
}


/* Accept Opponent Modal */


/* Submit Score Modal */

.submit__score-modal {
    overflow-y: auto;
}

.submit__score-modal .team__name h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: auto;
    max-width: 86px;
}

.submit__score-modal .league__varses__battle {
    margin-bottom: 20px;
}

.submit__score-modal .form-group {
    margin-bottom: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid #215041;
}

.submit__score-modal .form-group .custom-file {
    height: 42px;
    cursor: pointer;
}

.submit__score-modal .form-group .custom-file .custom-file-input {
    height: 42px;
    cursor: pointer;
}

.submit__score-modal .form-group .custom-file .custom-file-label {
    font-size: 14px;
    font-family: 'Futura, sans-serif';
    font-weight: 700;
    text-align: center;
    border: 2px solid #212736;
    background-color: transparent;
    border-radius: 10px;
    margin: 0;
    height: auto;
    padding: 10px 0;
    line-height: 1.3;
    color: #ffffff;
    cursor: pointer;
}

.submit__score-modal .form-group .custom-file .custom-file-label:after {
    display: none;
}

.submit__score-modal .form-group textarea.form-control {
    height: 150px;
    resize: none;
}

.submit__score-modal .form-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}


/* Submit Score Modal */


/* League Page CSS */


/* Custom File Upload CSS Start */

.nf__custom_file .row {
    margin: 0 -10px;
}

.nf__custom_file .col-lg-3 {
    padding: 0 10px;
}

.nf__custom_file--item {
    margin-bottom: 20px;
}

.nf__custom_file--item .custom_file_input {
    display: none;
}

.nf__custom_file--item .custom_file_label {
    background-color: #0B0D13;
    border-radius: 4px;
    cursor: pointer;
}

.nf__custom_file--item .custom_file_label img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.nf__custom_file--item .nf__custom_file--img {
    padding-top: 100%;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.nf__custom_file--item .nf__custom_file--img i {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    left: auto;
    bottom: auto;
    color: #ffffff;
    cursor: pointer;
}


/* Custom File Upload CSS End */

@media (min-width: 1200px) {
    .tournament-bracket {
        min-width: 1100px;
    }
}


/* Tournament Bracket CSS */


/* Schedule Block CSS */

@media (max-width: 1600px) {

    /* Tournament Cover CSS */
    .tournament__cover {
        margin-top: 0;
    }

    .tournament__details .tournament__heading h1 {
        font-size: 28px;
    }

    .tournament__details .tournament__heading .edit__event .btn {
        width: 140px;
    }

    .tournament__details .tournament__info span {
        font-size: 13px;
    }

    .tournament__details .tournament__join .btn__wrapper {
        margin-right: 15px;
        padding-right: 15px;
    }

    .tournament__details .tournament__join .btn__wrapper .btn {
        width: 140px;
    }

    .tournament__details .tournament__des .info__item:not(:last-child) {
        margin-left: 15px;
    }

    /* Tournament Cover CSS */
    /* About Tournament CSS */
    .about__tournament .social__sharing ul {
        flex-wrap: wrap;
    }

    .about__tournament .social__sharing ul li {
        margin-bottom: 5px;
    }

    .about__tournament .social__sharing ul li a {
        width: 36px;
        height: 36px;
        display: flex;
    }

    .about__tournament .social__sharing ul li a svg {
        width: 14px;
        height: 14px;
    }

    /* About Tournament CSS */
    /* Schedule Block CSS */
    /* Tournament Bracket CSS */
    /* .tournament-bracket__item {
        padding: 0 2.5em 0 3em;
    } */

    .tournament-bracket__item .tournament__match .team .team__logo {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .tournament-bracket__item .tournament__match .team .team__name h4 {
        font-size: 16px;
    }

    .tournament-bracket__item .tournament__match .team .point {
        width: 35px;
        min-width: 35px;
        height: 35px;
    }

    .tournament-bracket__item .tournament__match .team .point h5 {
        font-size: 16px;
    }

    /* Tournament Bracket CSS */
    /* Schedule Block CSS */
    /* League Page CSS */
    /* Search Opponent Modal */
    .search__opponent--modal .modal-dialog {
        margin: 110px auto;
    }

    /* Search Opponent Modal */
    .league__btns .league__btn {
        margin-right: 15px;
        padding-right: 15px;
    }

    .league__btns .btn {
        width: auto;
    }

    .ranking__table table tbody tr td {
        padding: 15px 30px;
    }

    .ranking__table table tbody tr td h4 {
        font-size: 16px;
    }

    .ranking__table table tbody tr td .rank__no {
        min-width: 35px;
        width: 35px;
        height: 35px;
    }

    .ranking__table table tbody tr td .rank__no span {
        font-size: 16px;
    }

    .ranking__table table tbody tr td .team__name .team__logo {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .ranking__table table tbody tr td .team__name .team__logo img {
        width: 25px;
        height: 25px;
    }

    /* League Page CSS */
}

@media (max-width: 1280px) {

    /* Schedule Block CSS */
    /* Tournament Bracket CSS */
    .tournament-bracket__item .tournament__match .team .team__name h4 {
        font-size: 14px;
    }

    /* Tournament Bracket CSS */
    /* Schedule Block CSS */
}

@media (max-width: 1199px) {
    .win-loser-wrap .tournament-bracket__item .team {
        max-width: 100%;
        flex: 0 0 100%;
        margin: 0;
    }
    /* .win-loser-wrap .tournament-bracket__item {
        padding: 0 2.5em 0 3em;
    } */

    .win-loser-wrap .tournament-bracket__item:not(:last-child) {
        margin-bottom: 40px;
    }

    .win-loser-wrap .tournament-bracket {
        flex-direction: row;
    }

    .win-loser-wrap .tournament-bracket__round:not(:last-child) {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .win-loser-wrap .tournament-bracket__item .tournament__match {
        display: block;
    }

    /* Tournament Cover CSS */
    .tournament__cover {
        padding-top: 16%;
        margin-top: 80px;
    }

    .tournament__details,
    .tournament__des {
        flex-direction: column;
    }

    .tournament__details .tournament__logo,
    .tournament__des .tournament__logo {
        max-width: 150px;
        flex: 0 0 150px;
        margin-top: -80px;
        height: auto;
        padding: 5px;
    }

    .tournament__details .tournament__info,
    .tournament__des .tournament__info {
        margin: 30px 0 0;
    }

    .tournament__details .tournament__head,
    .tournament__des .tournament__head {
        flex-direction: column;
    }

    .tournament__details .tournament__heading,
    .tournament__des .tournament__heading {
        text-align: center;
    }

    .tournament__details .tournament__join,
    .tournament__des .tournament__join {
        margin-top: 20px;
    }

    .tournament__des .league__btns {
        padding-top: 20px;
    }

    .tournament__details .tournament__des .info__list {
        justify-content: center;
    }

    /* Tournament Cover CSS */
    /* Prize Pool Block CSS */
    .price__pool__item h4 span {
        font-size: 44px;
    }

    /* Prize Pool Block CSS */
    /* About Tournament CSS */
    .about__schedule-block .col-md-12 {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    /* About Tournament CSS */
    /* Schedule Block CSS */
    /* Match List CSS */
    .match__list .match__item {
        flex-direction: column;
    }

    .match__list .match__item .match__number {
        width: auto;
    }

    .match__list .match__item .match__action {
        width: auto;
    }

    .match__list .match__item .match__verses {
        width: 70%;
        margin: 30px 0;
    }

    .match__list .match__item .match__verses .team__name {
        max-width: 100%;
        flex: 0 0 auto;
    }

    .match__list .match__item .team__point {
        padding: 0 20px;
        max-width: 100%;
        flex: 0 0 auto;
    }

    /* Match List CSS */
    /* Tournament Bracket CSS */
    .close__full__screen {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
    }

    .full__screen {
        position: static;
        text-align: center;
        margin-top: 15px;
    }

    .tournament-bracket {
        flex-direction: column;
    }

    .tournament-bracket__round--champion {
        width: 100%;
    }

    /* .tournament-bracket__item {
        padding: 0;
    } */

    .tournament-bracket__item .tournament__match {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tournament-bracket__item .team {
        max-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px;
    }

    .tournament-bracket__item .team:not(:last-child) {
        margin-bottom: 0;
    }

    .tournament-bracket__item:not(:last-child) {
        margin-bottom: 25px;
    }
    .tournament-bracket__round {
        margin: 0;
        position: relative;
    }

    .tournament-bracket__round:not(:last-child) {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }


    .tournament-bracket__round:not(:last-child) .tournament-bracket__list {
        position: relative;
    }


    /* Tournament Bracket CSS */
    /* Schedule Block CSS */
}

@media (max-width: 991px) {

    /* Schedule Block CSS */
    /* Match List CSS */
    .tournament__schedule .card-header h5 {
        position: static;
        text-align: center;
        padding-bottom: 10px;
    }

    .match__list .match__item .match__verses {
        width: 100%;
        margin: 20px 0;
    }

    /* Match List CSS */
    /* Prize Pool Block CSS */
    .price__pool__item h4 span {
        font-size: 36px;
    }

    .price__pool__item p {
        font-size: 18px;
    }

    /* Prize Pool Block CSS */
    /* Tournament Bracket CSS */
    .brackets-block h2 {
        width: 100%;
    }

    /* Tournament Bracket CSS */
    /* Schedule Block CSS */
    /* League Page CSS */
    .ranking__table table tbody tr td .team__rank h4 {
        text-align: center;
    }

    .ranking__table table tbody tr td .team__rank img.mr-2 {
        display: block;
        margin: 0 0 5px !important;
    }

    /* League Page CSS */
}

@media (max-width: 767px) {

    /* Join Tournament Modal CSS */
    .modal .close {
        top: 10px;
        left: 15px;
    }

    .modal .close svg {
        width: 20px;
        height: 20px;
    }

    .modal .modal-title {
        font-size: 20px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .modal .modal-dialog {
        max-width: 90%;
        margin: 20px auto;
    }

    .modal .modal-content .modal-body {
        padding: 15px;
    }

    .modal .modal-content label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .modal .modal-footer {
        padding: 15px;
    }

    /* Join Tournament Modal CSS */
    /* Tab CSS */
    .tournament__tab {
        margin-top: 30px !important;
    }

    .tournament__tab .nav-tabs .nav-link {
        font-size: 16px;
        padding: 10px 20px;
    }

    /* Tab CSS */
    /* Tournament Cover CSS */
    .tournament__cover {
        padding-top: 30%;
    }

    .tournament__details .tournament__logo {
        max-width: 170px;
        flex: 0 0 170px;
        margin-top: -50px;
    }

    .tournament__details .tournament__info {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
    }

    .tournament__details .tournament__info span {
        font-size: 12px;
    }

    .tournament__details .tournament__des {
        justify-content: center;
        margin-top: 18px;
        padding-top: 8px;
    }

    .tournament__details .tournament__des .info__list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .tournament__details .tournament__des .info__item {
        text-align: center;
    }

    .tournament__details .tournament__des .info__item:not(:last-child) {
        margin-left: 15px;
    }

    .tournament__details .tournament__des .info__item span {
        font-size: 10px;
    }

    .tournament__details .tournament__des .info__item h5 {
        font-size: 14px;
    }

    .tournament__details .tournament__des .info__item h5 img {
        width: 14px;
    }

    .tournament__details .tournament__des .league__btns {
        flex-direction: column;
    }

    .tournament__details .tournament__des .league__btns .league__btn {
        margin: 8px 0 0;
        padding-right: 0;
    }

    .tournament__details .tournament__des .league__btns .league__btn:before {
        display: none;
    }

    .tournament__details .tournament__heading h1 {
        font-size: 24px;
    }

    .tournament__details .tournament__heading .share {
        display: none !important;
    }

    /* .tab-pane {
        padding-bottom: 80px !important;
    } */
    .tournament__details .tournament__join {
        margin-top: 20px;
        position: fixed;
        bottom: 0px;
        width: 100%;
        right: 0;
        background-color: #0B0D13;
        justify-content: space-between !important;
        padding: 15px;
        z-index: 9;
        box-shadow: 0px -16px 19px rgba(0, 0, 0, 0.2);
        border-top: 1px solid #215041;
    }

    .tournament__details .tournament__join .btn__wrapper {
        width: 100%;
    }

    .tournament__details .tournament__join .btn__wrapper .btn {
        width: 100%;
    }

    .btn-secondary:hover img {
        filter: brightness(0.5);
    }

    .btn-secondary img {
        transition: all 0.5s;
    }

    /* Tournament Cover CSS */
    /* Prize Pool Block CSS */
    .price__pool {
        margin: 0;
    }

    .price__pool .price__pool-col {
        padding: 0 0 12px;
    }

    /* Prize Pool Block CSS */
    /* About Tournament CSS */
    .about__tournament {
        padding: 20px;
    }

    .about__tournament p {
        font-size: 14px;
    }

    .about__tournament .card__footer .user__profile img {
        width: 38px;
        min-width: 38px;
        height: 38px;
    }

    .about__tournament .card__footer .user__des span {
        font-size: 10px;
    }

    .about__tournament .card__footer .user__des h4 {
        font-size: 14px;
    }

    /* About Tournament CSS */
    /* Tournament Rules CSS */
    .tournament__rules .card-header {
        padding: 28px 20px;
    }

    .tournament__rules .card-header h4 {
        font-size: 16px;
    }

    /* Tournament Rules CSS */
    /* Schedule Block CSS */
    /* Match List CSS */
    .tournament__schedule .card-header h5 {
        font-size: 12px;
    }

    .tournament__schedule .card-header h4 {
        font-size: 18px;
    }

    .tournament__schedule .card-body {
        padding: 15px;
    }

    .match__list .match__item {
        padding: 15px 0;
    }

    .match__list .match__item .match__verses .team__name h4 {
        font-size: 14px;
    }

    .match__list .match__item .match__verses .team__name .team__logo {
        min-width: 54px;
        width: 54px;
        height: 54px;
    }

    .match__list .match__item .match__verses .team__name .team__logo img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .match__list .match__item .team__point {
        padding: 0 10px;
    }

    .match__list .match__item .team__point h2 {
        font-size: 18px;
    }

    .match__list .match__item .team__point h2 span {
        font-size: 10px;
    }

    .match__list .match__item .team__point .point__separator {
        font-size: 18px;
    }

    .match__list .match__item .match__number h3 {
        font-size: 14px;
        padding: 10px;
    }

    .match__list .match__item .match__action .btn {
        width: auto;
    }

    /* Match List CSS */
    /* Schedule Block CSS */
    /* Event Modal CSS */
    .event-modal.modal .modal-content .modal-body {
        padding: 15px 15px 0;
    }

    .event-modal .form-group {
        margin-bottom: 15px;
    }

    .event-modal .tournament__logo {
        width: 90px;
        margin: -80px auto 30px;
    }

    .event-modal .upload__icon {
        width: 30px;
        height: 30px;
    }

    .event-modal .upload__icon img {
        width: 15px;
        height: 15px;
    }

    .event-modal .form__wrapper .col-md-6 .input-group {
        margin-bottom: 10px;
    }

    .event-modal.modal .close {
        top: 20px;
        left: 25px;
        background-color: #161b26;
        opacity: 1;
        padding: 3px;
        border-radius: 4px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .event-modal.modal .close svg {
        width: 15px;
        height: 15px;
    }

    /* Event Modal CSS */
    /* League Page CSS */
    .ranking__table table thead tr th {
        font-size: 14px;
        padding: 10px 20px;
    }

    .ranking__table table tbody tr td {
        padding: 10px 20px;
    }

    .ranking__table table tbody tr td h4 {
        font-size: 14px;
    }

    .ranking__table table tbody tr td .rank__no span {
        font-size: 14px;
    }

    .ranking__table table tbody tr td:nth-child(3):after {
        display: block;
    }

    .ranking__table tr td:nth-child(3),
    .ranking__table tr th:nth-child(3) {
        display: none;
    }

    .pagination .page-item .page-link {
        font-size: 14px;
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    /* League Page CSS */
    /* Submit Score Modal */
    .submit__score-modal .form-group .row .col-md-6:not(:last-child) {
        margin-bottom: 10px;
    }

    /* Submit Score Modal */
    /* Custom File Upload CSS Start */
    .nf__custom_file .row {
        margin: 0 -5px;
    }

    .nf__custom_file .col-sm-3 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        padding: 0 5px;
    }

    .nf__custom_file--item {
        margin-bottom: 10px;
    }

    .nf__custom_file--item .nf__custom_file--img i {
        font-size: 14px;
    }

    /* Custom File Upload CSS End */
}

@media (max-width: 600px) {

    /* Schedule Block CSS */
    /* Tournament Bracket CSS */
    .tab-pane.active.view__fullscreen {
        padding: 60px 20px;
    }

    .brackets__tab .nav-tabs .nav-item {
        margin-bottom: 6px;
    }

    .tournament-bracket__item .tournament__match {
        flex-flow: wrap;
    }

    .tournament-bracket__item .tournament__match .team {
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Tournament Bracket CSS */
    /* Tournament Cover CSS */
    .tournament__details .tournament__heading .edit__event {
        margin: 10px 0 0;
    }

    .tournament__details .tournament__heading>.d-flex {
        flex-direction: column;
    }

    .tournament__cancel h3 {
        font-size: 22px;
    }

    .tournament__cancel--btn .btn {
        padding: 10px 25px;
    }

    /* Tournament Cover CSS */
    /* Schedule Block CSS */
    /* Search Opponent Modal */
    .modal.search__opponent--modal .modal-dialog {
        margin: 90px auto;
    }

    .modal.search__opponent--modal .close {
        left: 10px;
        text-align: center;
    }

    .modal.search__opponent--modal .close svg {
        width: 15px;
        height: 15px;
    }

    .modal.search__opponent--modal .search__opponent--box .search__opponent--msg {
        margin-right: 20px;
    }

    .modal.search__opponent--modal .search__opponent--box .search__opponent--msg h2 {
        font-size: 16px;
        margin-bottom: 5px;
        padding-bottom: 5px;
    }

    .modal.search__opponent--modal .search__opponent--box .search__opponent--msg .search__time h4 {
        font-size: 14px;
    }

    .modal.search__opponent--modal .modal-footer .btn {
        width: auto;
    }

    /* Search Opponent Modal */
    /* Accept Opponent Modal */
    .modal .league__varses__battle {
        flex-direction: column;
    }

    .modal .league__varses__battle .varses {
        margin: 10px 0;
    }

    .modal .modal-footer .btn {
        width: auto;
    }

    .submit__score-modal .team__name h4,
    .accept__opponent-modal .team__name h4 {
        max-width: 100%;
    }

    /* Accept Opponent Modal */
}

table .team__rank img {
    height: 54px;
    width: 54px;
    -o-object-fit: contain;
    object-fit: contain;
}

.match_strip {
    text-align: center;
    background-color: rgb(33 39 54 / 80%);
    padding: 45px 10px;
    width: 100%;
    border: 2px solid var(--primary-green-color);
}

.match_strip h5 {
    margin-bottom: 0;
}

.match__item {
    position: relative;
}

.match_strip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    right: 0;
    display: none;
    top: 0;
}

.match__item.match__item-hover:hover .match_strip {
    visibility: visible;
    opacity: 1;
    display: block;
    transition: all 0.5s ease;
    cursor: pointer;
}
@media (max-width: 1199px){
    .match__list .match__item .match_list-gp .match__verses {
        margin: 0 0;
    }
}
/* .match_strip {
    width: calc(100% - 190px);
    height: 100%;
}
@media (max-width: 991px){
    .match_strip {
        width: calc(100% - 60px);
    }
} */

/*  */


@media(max-width:1600px){
    :root{
        --match-height: 192px;
    }
}

.nf_db-elimination .card {
    background-color: #215041;
}

.looser--bracket{
    margin-top: 2rem ;
}

.win-loser-wrap {
    display: flex;
    padding-bottom: 30px;
    overflow-x: auto;
}

.loser-win-bracket.tournament-bracket {
    min-width: 329px;
}


.loser-win-bracket .tournament-bracket__round .tournament-bracket__item {
    padding-left: 3.8em;
}

.tournament__tab .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 30px;
    background-color: transparent;
    transition: all 0.5s;
}

.tournament__tab .nav-tabs .nav-link.active {
    color: #ffffff;
    border-color: #00f5a3;
}
.brackets__tab .nav-tabs .nav-item.active {
    background-color: transparent;
}

.loser-win-bracket .tournament-bracket__round .tournament-bracket__item {
    padding-right: 3.8em;
    padding-left: 0;
}

/* =========== 28-03-2024 css start [Tournaments Brackets] ============== */

.match-lines {
    display: block;
    position: absolute;
    top: 48%;
    bottom: 0;
    margin-top: 0px;
    left: -1px;
    z-index: 999;
}
.match-lines .line {
    background: #215041;
    position: absolute;
}
.theme-dark .match-lines .line {
    background: #36404e;
}
.match-lines .line.one {
    height: 1px;
   width: calc(var(--match-width) / 2);
}
.match-lines .line.two {
    height: calc(var(--match-height) / 2);
    width: 1px;
    right: calc(var(--match-spacing) / 2);
}

.tournament__match {
    position: relative;
}

ul.tournament-bracket__list li:nth-child(even) .match-lines .line.two {
    transform: translate(0,-100%);
}
.match-lines.alt {
    right: calc((var(--match-width) / -2.2));
}

.tournament-bracket.win_bracket > div:first-child ul .match-lines.alt ,.tournament-bracket.win_bracket > div:last-child ul .match-lines{
    display: none;
}
.tournament-bracket.win_bracket > div:last-child ul .match-lines.alt{
    display: block;
}


.tournament-bracket > div:nth-child(2) ul .match-lines .line.two {
    height: calc(var(--match-height));
}
.tournament-bracket > div:nth-child(3) ul .match-lines .line.two {
    height: calc(var(--match-height) * 2);
}
.tournament-bracket > div:nth-child(4) ul .match-lines .line.two {
    height: calc(var(--match-height) * 4);
}

.tournament-bracket.looser--bracket > div:first-child ul .match-lines.alt ,.tournament-bracket.looser--bracket > div:last-child ul .match-lines{
    display: none;
}

.tournament-bracket.looser--bracket > div:last-child ul .match-lines.alt{
    display: block;
}

.tournament-bracket.looser--bracket > div:first-child ul .match-lines .line.two{
    display: none;
}

/* === 29-03-2024 css start === */

.looser--bracket  .tournament-bracket__round.semifinal .match-lines .line.two {
    display: none;
}

.next-div .tournament-bracket__round.final .match-lines .line.two {
    display: block;
}

.win_bracket .tournament-bracket__round.active.final ul li {
    justify-content: flex-end;
}

.tournament-bracket.looser--bracket.next-div .tournament-bracket__round.final .match-lines .line.two {
    transform: translate(0,-100%);
    height: calc(var(--match-height)* 5.3);
}

.tournament-bracket.looser--bracket > div:first-child ul .match-lines.alt,.tournament-bracket.win_bracket > div:first-child ul .match-lines.alt,.tournament-bracket.looser--bracket .tournament-bracket__round.final .match-lines {
    display: none;
}

.tournament-bracket.looser--bracket.next-div .tournament-bracket__round.final .match-lines {
    display: block;
}

/* === compare final match lines winner and looser === */

.win_bracket .tournament-bracket__round.final {
    margin-right: 505px;
}

.win_bracket .tournament-bracket__round.semifinal .match-lines.double_line .line.one {
    width: 560px;
}

.win_bracket .tournament-bracket__round.semifinal .match-lines.double_line .line.two {
    right: 560px;
}

.looser--bracket .tournament-bracket__round {
    flex: 0 0 560px;
}

.looser--bracket .tournament-bracket__round.active.final  .match-lines.alt {
    display: none;
}

.looser--bracket .tournament-bracket__round.active.final  li.tournament-bracket__item {
    padding-right: 10px;
    padding-left: 103px;
}

.win_bracket .tournament-bracket__round:nth-child(5) .match-lines.double_line .line.two {
    height: calc(var(--match-height) * 8);
}

@media(max-width:1199px){

    .looser--bracket .tournament-bracket__round.active.final li.tournament-bracket__item{
        padding-left: 106px;
    }
}


/* === 02-04-2024 css start [extra inner div generate css] === */

.looser--bracket .tournament-bracket__round.inner-round:nth-child(odd) .match-lines .line.two {
    display: none;
}


.tournament-bracket.looser--bracket > div:nth-child(4) ul .match-lines .line.two {
    height: calc(var(--match-height) * 2);
}

.win_bracket .tournament-bracket__round.semifinal .match-lines.double_line .line.one {
    width: calc(var(--round--width) * 2);
}

.win_bracket .tournament-bracket__round.final {
    margin-right: calc(var(--round--width) *2 - 56px);
}

.win_bracket .tournament-bracket__round.semifinal .match-lines.double_line .line.two {
    right: calc(var(--round--width) *2);
}

.team__des {
    gap: 5px;
}

/* === 17-05-2024 css start [match 8/16/32 single and double elimination breackets] css start  === */

.single-elimination_bracket.nf__teams__16 .tournament-bracket__round.active.final ul li ,.single-elimination_bracket.nf__teams__8 .tournament-bracket__round.active.final ul li,.single-elimination_bracket.nf__teams__32.win_bracket .tournament-bracket__round.final li.tournament-bracket__item {
    justify-content: center;
}

.single-elimination_bracket.nf__teams__16.win_bracket .tournament-bracket__round.final,.single-elimination_bracket.nf__teams__8.win_bracket .tournament-bracket__round.final ,.single-elimination_bracket.nf__teams__32.win_bracket .tournament-bracket__round.final {
    margin-right: 0;
}

.win_bracket.double_elimination.nf__teams__8 .tournament-bracket__round.final {
    margin-right: calc(var(--round--width) *1 - 56px);
}

.win_bracket.double_elimination.nf__teams__8 .tournament-bracket__round.semifinal .match-lines.double_line .line.one {
    width: calc(var(--round--width) * 1);
}

.tournament-bracket.looser--bracket.double_elimination.nf__teams__8 .tournament-bracket__round.final .match-lines .line.two {
    height: calc(var(--match-height)* 4.16);
}
.win_bracket.double_elimination.nf__teams__8 .tournament-bracket__round.semifinal .match-lines.double_line .line.two {
    right: 560px;
}

.double_elimination.nf__teams__32.win_bracket .tournament-bracket__round.final {
    margin-right: calc(var(--round--width) *3 - 56px);
}

.double_elimination.nf__teams__32.win_bracket .tournament-bracket__round.semifinal .match-lines.double_line .line.one {
    width: calc(var(--round--width) * 3);
}

.double_elimination.nf__teams__32.win_bracket .tournament-bracket__round.semifinal .match-lines.double_line .line.two {
    right: calc(var(--round--width) *3);
}

.looser--bracket.double_elimination.nf__teams__32 .tournament-bracket__round:nth-child(6) .match-lines .line.two {
    height: calc(var(--match-height) * 2);
}

.single-elimination_bracket.nf__players__16 .tournament-bracket__round.active.final ul li ,.single-elimination_bracket.nf__players__8 .tournament-bracket__round.active.final ul li,.single-elimination_bracket.nf__players__32.win_bracket .tournament-bracket__round.final li.tournament-bracket__item {
    justify-content: center;
}

.single-elimination_bracket.nf__players__16.win_bracket .tournament-bracket__round.final,.single-elimination_bracket.nf__players__8.win_bracket .tournament-bracket__round.final ,.single-elimination_bracket.nf__players__32.win_bracket .tournament-bracket__round.final {
    margin-right: 0;
}

.win_bracket.double_elimination.nf__players__8 .tournament-bracket__round.final {
    margin-right: calc(var(--round--width) *1 - 56px);
}

.win_bracket.double_elimination.nf__players__8 .tournament-bracket__round.semifinal .match-lines.double_line .line.one {
    width: calc(var(--round--width) * 1);
}

.tournament-bracket.looser--bracket.double_elimination.nf__players__8 .tournament-bracket__round.final .match-lines .line.two {
    height: calc(var(--match-height)* 3.16);
}
.win_bracket.double_elimination.nf__players__8 .tournament-bracket__round.semifinal .match-lines.double_line .line.two {
    right: 560px;
}

.double_elimination.nf__players__32.win_bracket .tournament-bracket__round.final {
    margin-right: calc(var(--round--width) *3 - 56px);
}

.double_elimination.nf__players__32.win_bracket .tournament-bracket__round.semifinal .match-lines.double_line .line.one {
    width: calc(var(--round--width) * 3);
}

.double_elimination.nf__players__32.win_bracket .tournament-bracket__round.semifinal .match-lines.double_line .line.two {
    right: calc(var(--round--width) *3);
}

.looser--bracket.double_elimination.nf__players__32 .tournament-bracket__round:nth-child(6) .match-lines .line.two {
    height: calc(var(--match-height) * 2);
}

/* 64 Players */

.win_bracket.nf__teams__64 .tournament-bracket__round.final {
    margin-right: calc(var(--round--width) *4 - 56px);
}

.win_bracket.nf__teams__64 .tournament-bracket__round.semifinal .match-lines.double_line .line.one {
    width: calc(var(--round--width) * 4);
}

.win_bracket.nf__teams__64 .tournament-bracket__round.semifinal .match-lines.double_line .line.two {
    right: calc(var(--round--width) *4);
    height: calc(var(--match-height) * 15.5);
}

.nf__teams__64.tournament-bracket.looser--bracket.next-div .tournament-bracket__round.final .match-lines .line.two {
    height: calc(var(--match-height)* 9.7);
}

.nf__teams__64.tournament-bracket.looser--bracket > div:nth-child(5) ul .match-lines .line.two,.nf__teams__64.tournament-bracket.looser--bracket > div:nth-child(7) ul .match-lines .line.two,.nf__teams__64.tournament-bracket.looser--bracket > div:nth-child(3) ul .match-lines .line.two{
    height: 0;
}
.nf__teams__64.tournament-bracket.looser--bracket > div:nth-child(6) ul .match-lines .line.two {
    height: calc(var(--match-height) * 2);
}

.nf__teams__64.tournament-bracket.looser--bracket > div:nth-child(8) ul .match-lines .line.two {
    height: calc(var(--match-height) * 4);
}



/* 32 Players */

.nf__teams__32.tournament-bracket.looser--bracket > div:nth-child(5) ul .match-lines .line.two,.nf__teams__32.tournament-bracket.looser--bracket > div:nth-child(7) ul .match-lines .line.two,.nf__teams__32.tournament-bracket.looser--bracket > div:nth-child(3) ul .match-lines .line.two{
    height: 0;
}


/* mobile design */

@media(max-width:767px){

    .win_bracket.nf__teams__64 .tournament-bracket__round.final {
        margin-right: calc(var(--round--width) *4);
    }

    .win_bracket.nf__teams__64 .tournament-bracket__round.semifinal .match-lines.double_line .line.two {
        right: calc(var(--round--width)* 4.128);
        height: calc(var(--match-height)* 14.65);
    }
}

#message-modal .modal-content {
    border: 1px solid #202020;
}

/* Error and sucess message model css */
.modal#message-modal-success .modal-content,
.modal#message-modal .modal-content {
	border-radius: 30px;
}
.modal#message-modal-success .modal-content svg,
.modal#message-modal .modal-content svg {
	width: 100px;
	display: block;
	margin: 0 auto;
}
.modal#message-modal-success .modal-content .path,
.modal#message-modal .modal-content .path {
	stroke-dasharray: 1000;
	stroke-dashoffset: 0;
}
.modal#message-modal-success .modal-content .path.circle,
.modal#message-modal .modal-content .path.circle {
	-webkit-animation: dash 0.9s ease-in-out;
	animation: dash 0.9s ease-in-out;
}
.modal#message-modal-success .modal-content .path.line,
.modal#message-modal .modal-content .path.line {
	stroke-dashoffset: 1000;
	-webkit-animation: dash 0.95s 0.35s ease-in-out forwards;
	animation: dash 0.95s 0.35s ease-in-out forwards;
}
.modal#message-modal-success .modal-content .path.check,
.modal#message-modal .modal-content .path.check {
	stroke-dashoffset: -100;
	-webkit-animation: dash-check 0.95s 0.35s ease-in-out forwards;
	animation: dash-check 0.95s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
	0% {
		stroke-dashoffset: 1000;
	}
	100% {
		stroke-dashoffset: 0;
	}
}
@keyframes dash {
	0% {
		stroke-dashoffset: 1000;
	}
	100%{
		stroke-dashoffset: 0;
	}
}
@-webkit-keyframes dash {
	0% {
		stroke-dashoffset: 1000;
	}
	100% {
		stroke-dashoffset: 0;
	}
}
@keyframes dash {
	0% {
		stroke-dashoffset: 1000;}
	100% {
		stroke-dashoffset: 0;
	}
}
@-webkit-keyframes dash-check {
	0% {
		stroke-dashoffset: -100;
	}
	100% {
		stroke-dashoffset: 900;
	}
}
@keyframes dash-check {
	0% {
		stroke-dashoffset: -100;
	}
	100% {
		stroke-dashoffset: 900;
	}
}
.box00{
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.win_bracket.nf__players__64 .tournament-bracket__round.final li.tournament-bracket__item {
    justify-content: center !important;
}

.win_bracket.nf__players__64 .tournament-bracket__round.final {
    margin-right: 0;
}

.win_bracket.nf__teams__4 .tournament-bracket__round.final {
    margin-right: 0;
}

.win_bracket.nf__teams__4 .tournament-bracket__round.semifinal .match-lines.double_line .line.one {
    width: calc(var(--round--width) / 10);
}

.win_bracket.nf__teams__4 .tournament-bracket__round.semifinal .match-lines.double_line .line.two {
    right: calc(var(--round--width) /10);
}

.nf__teams__4.tournament-bracket.looser--bracket.next-div .tournament-bracket__round.final .match-lines .line.two {
    height: calc(var(--match-height));
    right: calc(var(--match-spacing) );
}

.nf__teams__4 .final .match-lines .line.one {
    width: calc(var(--match-width));
}

.nf__teams__4 .match-lines .line.one {
    width: calc(var(--match-width) / 2);
}

@media(max-width:767px){
    .match__item.match__item-hover:hover .match_strip {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: anchor-center;
    }

    .match__list .match__item .match_list-gp .match__verses {
        padding: 12px 0 !important;
    }

    .match__list .match__item .match__number {
        max-width: 80px !important;
         flex: 0 0 80px;
    }

    .match__list .match__item .match__verses .team__name .team__logo {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .match__list .match__item .match__verses .team__name {
        gap: 8px;
        max-width: 200px;
        flex: 1;
    }

    .match__list .match__item .team__point {
        flex: 1;
        width: 100px;
        max-width: 100px;
    }

    .match__list .match__item .match__verses .team__name h4 {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 70px;
    }
}



@media (max-width:575px){
    .match__list .match__item .match__number {
        max-width: 60px !important;
         flex: 0 0 60px;
    }
    .match__list .match__item .match__number h3 {
        font-size: 12px !important;
    }
    .match__list .match__item .match__action {
        position: absolute;
        left: 0;
    }

    .match__list .match__item .team__point {
        width: 60px;
        max-width: 60px;
    }

    .match__action img {
        width: 13px;
    }

    .match__list .match__item .match__action a {
        border-radius: 25px;
        background: #4c566d;
        display: block;
        width: 22px;
        height: 22px;
        display: flex;
        justify-content: center;
    }

}

@media(max-width:500px){
    .match__list .match__item .match__number {
        position: absolute;
        top: 3px;
    }
     [dir="rtl"] .match__list .match__item .match__number  {
        left: auto;
        right: 0;
    }

    .match__list .match__item .match_list-gp .match__verses {
        padding: 17px 0 12px !important;
    }

    .match__list .match__item .match__verses .team__name .team__logo {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}
.match__item.match__item-hover:hover .match_strip {
    align-items: center;
}
