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;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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


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

button:focus,
 :focus {
    outline: none !important;
    -webkit-box-shadow: 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: -webkit-gradient(linear, right top, right bottom, from(#4FA6FF), to(#007EFF));
    background: linear-gradient(-180deg, #4FA6FF 0%, #007EFF 100%);
}

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

.yellow-gradiant {
    background: -webkit-gradient(linear, right top, left top, from(#ECCC68), to(#FFA502));
    background: linear-gradient(-90deg, #ECCC68 0%, #FFA502 100%);
}

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

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

.red-gradiant {
    background: -webkit-gradient(linear, left top, right top, from(#FF4757), to(#FF6B81));
    background: linear-gradient(-270deg, #FF4757 0%, #FF6B81 100%);
}

.orange-gradiant {
    background: -webkit-gradient(linear, left top, right top, from(#FF6348), to(#FF7F50));
    background: linear-gradient(-270deg, #FF6348 0%, #FF7F50 100%);
}

.blue-gradiant-text {
    background: -webkit-gradient(linear, right top, right bottom, from(#4FA6FF), to(#007EFF));
    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: 500;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 0;
    color: #ffffff;
    border: none;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    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);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn:hover:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    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 #1A1F2D;
    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;
    }
}


/* Game Box CSS */

.game__bg-banner {
    padding-top: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.1;
    overflow: hidden;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.game__box {
    background-color: #161b26;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    height: calc(100% - 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.game__box .game__banner {
    overflow: hidden;
    position: relative;
    padding-top: 50%;
    margin: 20px 20px 0;
}

.game__box .game__banner img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.game__box .game__header {
    padding: 20px;
    position: relative;
    z-index: 9;
}

.game__box .game__header .game__logo img {
    width: 98px;
    height: 110px;
    -o-object-fit: contain;
    object-fit: contain;
}

.game__box .game__header .game__des {
    margin-right: 22px;
}

.game__box .game__header .game__des .time {
    color: rgba(255, 255, 255, 0.7);
}

.game__box .game__header .game__des h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 0;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game__box .game__body {
    padding: 20px 0;
    margin: 0 20px;
    position: relative;
    z-index: 9;
    border-top: 1px solid #1A1F2D;
}

.game__box .game__body .info__item span {
    font-weight: 500;
}

.game__box .game__body .info__item h5 {
    margin: 5px 0 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
}

.game__box .game__body .info__item h5 .lazy {
    width: 20px;
    height: auto;
}

.game__box .game__body .info__item:not(:last-child) {
    padding-left: 30px;
}

.game__box .game__footer {
    padding: 18px;
    position: relative;
    z-index: 99;
    background: -webkit-gradient(linear, left top, right top, color-stop(9.67%, #181D29), color-stop(21.67%, #212738), color-stop(62.3%, #181D29));
    background: linear-gradient(-270deg, #181D29 9.67%, #212738 21.67%, #181D29 62.3%);
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #242B3E;
}

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

.game__box .game__footer .user__des span {
    font-weight: 500;
}

.game__box .game__footer .user__des h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 5px;
    width: 100px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game__box .game__footer .game__action .btn {
    padding: 12px;
    max-width: 180px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

.game__box .game__footer .action__hint {
    position: absolute;
    top: -28px;
    bottom: auto;
    right: auto;
    left: 0;
    background-color: rgba(25, 29, 42, 0.8);
    border: 1px solid #242B3E;
    -webkit-box-shadow: 0px 9px 19px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 9px 19px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 12px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.game__box .game__footer .game__action .btn:hover+.action__hint {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.game__tags {
    margin-top: 18px;
}

.game__tags .badge {
    font-size: 12px;
    padding: 8px 12px;
    background-color: #181D29;
    border: 1px solid #242B3E;
    border-radius: 6px;
}

.game__tags .badge:not(:last-child) {
    margin-left: 6px;
    margin-bottom: 6px;
}


/* Game Box CSS */


/* Message Modal */

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

.message--modal .modal-content {
    background-color: rgba(17, 20, 29, 0.96);
    -webkit-box-shadow: 0 38px 45px rgba(0, 0, 0, 0.6);
    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 .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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

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

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

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

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


/* Loader CSS */

@media (max-width: 1600px) {
    /* Game Box CSS */
    .game__tags {
        margin-top: 10px;
    }
    .game__tags .badge {
        font-size: 10px;
        padding: 5px;
        border-radius: 4px;
    }
    .game__tags .badge:not(:last-child) {
        margin-left: 0;
    }
    .game__box .game__banner {
        margin: 15px 15px 0;
    }
    .game__box .game__header {
        padding: 15px;
    }
    .game__box .game__header .game__logo img {
        width: 65px;
        height: 75px;
    }
    .game__box .game__header .game__des {
        margin-right: 15px;
    }
    .game__box .game__header .game__des .time {
        font-size: 12px;
    }
    .game__box .game__header .game__des h4 {
        font-size: 15px;
    }
    .game__box .game__body {
        padding: 15px 0;
        margin: 0 15px;
    }
    .game__box .game__body .info__item span {
        font-size: 12px;
    }
    .game__box .game__body .info__item h5 {
        font-size: 14px;
    }
    .game__box .game__body .info__item:not(:last-child) {
        padding-left: 10px;
    }
    .game__box .game__footer {
        padding: 15px;
    }
    .game__box .game__footer .user__profile img {
        min-width: 35px;
        width: 35px;
        height: 35px;
    }
    .game__box .game__footer .user__des span {
        font-size: 12px;
    }
    .game__box .game__footer .user__des h5 {
        font-size: 14px;
        margin-top: 2px;
    }
    .game__box .game__footer .game__action .btn {
        font-size: 12px;
        padding: 7px 12px;
        width: 100px;
    }
    /* Game Box CSS */
}

@media (max-width: 1280px) {
    /* Game Box CSS */
    .game__box .game__body .info__item:not(:last-child) {
        padding-left: 15px;
    }
    .game__box .game__header .game__des h4 {
        font-size: 14px;
        height: 36px;
        overflow: hidden;
    }
    .game__tags .badge {
        font-size: 9px;
    }
    /* Game Box CSS */
}

@media (max-width: 1199px) {
    /* Game Box CSS */
    .game__box .game__header .game__des h4 {
        height: auto;
    }
    /* Game Box CSS */
}

@media (max-width: 767px) {
    /* Game Box CSS */
    .game__box .game__header .game__des h4 {
        font-size: 16px;
    }
    .game__box .game__footer .game__action .btn {
        width: 126px;
    }
    .game__tags .badge {
        font-size: 10px;
        padding: 8px 10px;
    }
    /* Game Box CSS */
    /* Loader CSS */
    .loader__wrapper .loader li {
        width: 10px;
        height: 20px;
    }
    /* Loader CSS */
}


/* 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: -webkit-gradient(linear, right top, right bottom, from(#4FA6FF), to(#007EFF));
    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;
}


/* Team Box CSS */

.team__player {
    background-color: #161b26;
    border-radius: 10px;
    overflow: hidden;
}

.team__player .player__banner {
    border-radius: 10px 10px 0 0;
    padding-top: 15%;
    position: relative;
    overflow: hidden;
}

.team__player .player__banner .upload__icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    background-color: #0B0D13;
    opacity: 0.5;
    border-radius: 8px;
}

.team__player .player__banner .upload__icon img {
    width: 15px;
    height: 15px;
    position: static;
    -o-object-fit: none;
    object-fit: none;
}

.team__player .player__banner img {
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.team__player .team__logo {
    background-color: #0B0D13;
    border: 6px solid #161b26;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    margin: 0 auto;
    margin-top: -25px;
    padding: 10px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9;
}

.team__player .team__logo .upload__file--label img {
    -o-object-fit: contain;
    object-fit: contain;
    width: auto;
    height: auto;
    margin: auto;
}

.team__player .team__logo img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.team__player .team__logo .upload__icon {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #0B0D13;
    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.team__player .team__logo .upload__icon:hover {
    opacity: 0.9;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.team__player .player__msg {
    margin: 20px auto;
    width: 70%;
}

.team__player .player__msg p {
    font-weight: 500;
}

.team__player .player__msg p a {
    font-weight: 700;
    text-decoration: underline;
}

.team__player .player__details h4 {
    font-size: 20px;
    font-weight: 700;
}

.team__player .player__details h5 {
    font-size: 16px;
    font-weight: 700;
}

.team__player .player__details h5 img {
    margin-left: 6px;
}

.team__player .player__details .team__rank {
    border-right: 1px solid #242B3E;
    margin-right: 14px;
    padding-right: 14px;
    border-radius: 0;
}

.team__player .player__details .game__tags {
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #1A1F2D;
}

.team__player .player__details .game__tags .badge {
    padding: 8px 10px;
    line-height: 1.7;
    font-weight: normal;
}

.team__player .player__details .game__tags .badge img {
    margin-left: 5px;
    height: 15px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.team__player .player__details .edit__profile {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #242B3E;
}


/* Team Box CSS */


/* Team Profile Banner Section CSS */

.profile__banner-block .progress {
    width: 150px;
    height: 6px;
    border-radius: 20px;
    margin-right: 10px;
    background-color: rgb(255 255 255 / 50%);
}

.profile__banner-block .progress .progress-bar {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}

.profile__banner-block .profile__level h6 {
    font-size: 20px;
    font-weight: 700;
}

.profile__banner-block .team__player .team__logo {
    width: 140px;
    height: 140px;
    margin: -80px 30px 0;
    border-width: 10px;
    background-color: transparent;
    padding: 0;
}

.profile__banner-block .player__details {
    padding: 0 30px;
}

.profile__banner-block .player__details h4 {
    font-size: 36px;
}

.profile__banner-block .player__details h5 {
    font-size: 20px;
}

.profile__banner-block .player__details .game__tags {
    margin-top: 20px;
    padding: 10px 0;
}

.game__tags .badge {
    font-size: 12px;
    padding: 8px 12px;
    background-color: #181D29;
    border: 1px solid #242B3E;
    border-radius: 6px;
}

.game__tags .badge:not(:last-child) {
    margin-left: 6px;
}


/* Team Profile Banner Section CSS */


/* Teams Section CSS */

.teams-block .row:not(:first-child),
.stats-block .row:not(:first-child) {
    margin: 0 -10px;
}

.teams-block .row:not(:first-child) .col-lg-4,
.stats-block .row:not(:first-child) .col-lg-3 {
    padding: 0 10px;
}

.teams-block .team__player {
    margin-bottom: 20px;
}


/* Teams Section CSS */


/* Trophies  Section CSS */

.trophies__main .card {
    padding: 5px 20px;
}

.trophies__item {
    position: relative;
}

.trophies__item .hint {
    display: none;
    position: absolute;
    bottom: -45px;
    right: 20px;
    width: 112px;
    background-color: rgba(25, 29, 42, 0.8);
    border: 1px solid #242B3E;
    -webkit-box-shadow: 0 9px 19px rgba(0, 0, 0, 0.4);
    box-shadow: 0 9px 19px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    padding: 5px;
    text-align: center;
}

.trophies__item .hint h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.trophies__item .hint p {
    font-weight: 500;
    font-size: 12px;
}

.trophies__item:hover .hint {
    display: block;
}


/* Trophies  Section CSS */


/* Tab CSS */

.profile__tab .nav-tabs {
    border-color: #1A1F2D;
}

.profile__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;
    font-weight: 700;
    background-color: transparent;
}

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


/* Tab CSS */


/* Social Media CSS */

.social__media-block .card {
    padding: 30px;
}

.social__media-block ul li svg {
    width: 25px;
    height: 25px;
}

.social__media-block ul li svg path {
    fill: rgba(255, 255, 255, 0.7);
}

.social__media-block ul li:hover path {
    fill: #ffffff;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.social__media-block ul li:not(:last-child) {
    border-left: 1px solid #242B3E;
    margin-left: 30px;
    padding-left: 30px;
}


/* Social Media CSS */


/* Statistic Box CSS */

.stats__box h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    padding-bottom: 8px;
    position: relative;
}

.stats__box h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    width: 38px;
    height: 2px;
    border-radius: 8px;
    background: -webkit-gradient(linear, right top, right bottom, color-stop(-1.32%, #fff), to(#fff));
    background: linear-gradient(-180deg, #fff -1.32%, #fff 100%);
}

.stats__box h6 {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}


/* Statistic Box CSS */


/* ID's Section CSS */

.ids-block .row:not(:first-child) {
    margin: 0 -5px;
}

.ids-block .row:not(:first-child) .col-lg-2 {
    padding: 0 5px 10px;
}

.id__box {
    border-radius: 8px;
}

.id__box .id__icon svg,
.id__box .id__icon img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
}

.id__box .id__info {
    padding-right: 12px;
    margin-right: 12px;
    position: relative;
}

.id__box .id__info span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.id__box .id__info .form-control {
    font-weight: 500;
    font-size: 15px;
    height: auto;
}

.id__box .id__info .form-control::-webkit-input-placeholder {
    color: #282E41;
}

.id__box .id__info .form-control:-ms-input-placeholder {
    color: #282E41;
}

.id__box .id__info .form-control::-ms-input-placeholder {
    color: #282E41;
}

.id__box .id__info .form-control::placeholder {
    color: #282E41;
}

.id__box .id__info:after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 20px;
    border-radius: 10px;
    background: -webkit-gradient(linear, right top, right bottom, from(#fff), to(#fff));
    background: linear-gradient(-180deg, #fff 0%, #fff 100%);
}

.general-block .form-group .form-control::placeholder,
.ids-block .form-group .form-control::placeholder {
    color: rgb(255 255 255 / 50%) !important;
}


/* ID's Section CSS */


/* Settings Page CSS */

.settings-block .card {
    background-color: #161b26;
    padding: 14px;
}

.settings-block .id__box .id__info:after {
    background: #fff;
}

.general-block .form-group,
.ids-block .form-group {
    margin-bottom: 50px;
}

.general-block .form-group label,
.ids-block .form-group label {
    color: #ffffff;
    font-size: 18px;
}

.general-block .form-group .input-group .form-control,
.ids-block .form-group .input-group .form-control {
    border-radius: 8px 0 0 8px;
}

.general-block .form-group .form-control,
.ids-block .form-group .form-control {
    background-color: #161b26;
    border-radius: 8px;
    border: none;
    height: auto;
    color: #ffffff;
    padding: 16px 18px;
    line-height: 1.2;
    font-size: 14px;
    font-family: inherit;
}

.general-block .form-group .form-control::-webkit-input-placeholder,
.ids-block .form-group .form-control::-webkit-input-placeholder {
    color: #282E41;
}

.general-block .form-group .form-control:-ms-input-placeholder,
.ids-block .form-group .form-control:-ms-input-placeholder {
    color: #282E41;
}

.general-block .form-group .form-control::-ms-input-placeholder,
.ids-block .form-group .form-control::-ms-input-placeholder {
    color: #282E41;
}

.general-block .form-group .form-control::placeholder,
.ids-block .form-group .form-control::placeholder {
    color: #282E41;
}

.general-block .form-group .input-group-prepend .input-group-text,
.ids-block .form-group .input-group-prepend .input-group-text {
    background-color: #161b26;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    border-radius: 0 8px 8px 0;
    padding: 6px 14px;
    position: relative;
    height: 100%;
}

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

.general-block .form-group .input-group-prepend .input-group-text .custom-select,
.ids-block .form-group .input-group-prepend .input-group-text .custom-select {
    padding: 0 0 0 18px;
}

.general-block .form-group .custom-select,
.ids-block .form-group .custom-select {
    background: #07271d url(../img/icons/down_arrow.svg) no-repeat left center/10px;
    color: rgba(255, 255, 255, 0.7);
}

.general-block .form-group .country-select,
.ids-block .form-group .country-select {
    width: 100%;
    border-radius: 8px;
}

.general-block .form-group .country-select .flag-dropdown,
.ids-block .form-group .country-select .flag-dropdown {
    right: 10px;
}

.general-block .form-group .country-select input[type=text],
.ids-block .form-group .country-select input[type=text] {
    padding-right: 70px;
    background-color: #181D29;
}

.general-block .form-group .form__btn,
.ids-block .form-group .form__btn {
    border-top: 1px solid #1A1F2D;
    padding-top: 20px;
}

.general-block .location__block .form-group .custom-select,
.ids-block .location__block .form-group .custom-select {
    color: #ffffff;
    background: #161b26 url(../img/icons/down_arrow.svg) no-repeat 97% center/10px;
}


/* Settings Page CSS */


/* Team Popup CSS */

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

.team__modal .modal-dialog {
    max-width: 850px;
}

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

.team__modal .modal-footer {
    padding: 30px;
    border-color: #161b26;
    background: linear-gradient(-270deg, #161b26 9.67%, #161b26 21.67%, #161b26 62.3%);
}

.team__modal .modal-footer .btn {
    width: calc(100% / 2 - 12px);
    margin: 0 6px;
    /* border: 2px solid transparent; */
}

.team__modal .modal-footer .btn-outline-primary {
    border-color: #242B3E;
}

.team__modal .modal-footer .btn-outline-primary:hover {
    background-color: transparent;
}

.team__modal .team__player .team__logo {
    width: 92px;
    height: 92px;
    text-align: center;
    border-width: 8px;
}

.team__modal .team__player .team__logo .upload__icon {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #0B0D13;
    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.team__modal .team__player .team__logo .upload__icon:hover {
    opacity: 0.9;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.team__modal .team__player .player__banner .upload__icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    background-color: #0B0D13;
    opacity: 0.5;
    border-radius: 8px;
}

.team__modal .team__player .player__banner .upload__icon img {
    width: 15px;
    height: 15px;
    position: static;
    -o-object-fit: none;
    object-fit: none;
}

.team__modal .edit__team-block {
    padding: 30px;
}

.team__modal .edit__team-block .profile__tab {
    margin-bottom: 30px;
}

.team__modal .edit__team-block .country-select {
    width: 100%;
    border-radius: 8px;
}

.team__modal .edit__team-block .country-select .country-list {
    width: 300px !important;
}

.team__modal .edit__team-block .country-select .flag-dropdown {
    right: 10px;
}

.team__modal .edit__team-block .country-select input[type=text] {
    padding-right: 70px;
    background-color: #181D29;
}

.team__modal .edit__team-block .form-group {
    margin-bottom: 30px;
}

.team__modal .edit__team-block .form-group label {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

.team__modal .edit__team-block .form-group .input-group .form-control {
    border-radius: 8px 0 0 8px;
}

.team__modal .edit__team-block .form-group .form-control {
    background-color: #161b26;
    border-radius: 8px;
    border: none;
    height: auto;
    color: #ffffff;
    padding: 16px 18px;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
}

.team__modal .edit__team-block .form-group .form-control::-webkit-input-placeholder {
    color: #282E41;
}

.team__modal .edit__team-block .form-group .form-control:-ms-input-placeholder {
    color: #282E41;
}

.team__modal .edit__team-block .form-group .form-control::-ms-input-placeholder {
    color: #282E41;
}

.team__modal .edit__team-block .form-group .form-control::placeholder {
    color: #282E41;
}

.team__modal .edit__team-block .input-group-prepend .input-group-text {
    background-color: #161b26 !important;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    border-radius: 0 8px 8px 0;
    padding: 6px 14px;
    position: relative;
}

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

.team__modal .edit__team-block .input-group-prepend .input-group-text svg {
    width: 15px;
    height: 15px;
}

.upload__icon .upload__file {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

.upload__icon .upload__file--label {
    cursor: pointer;
}


/* Team Popup CSS */

@media (max-width: 1600px) {
    .game__tags .badge {
        padding: 5px;
        border-radius: 4px;
    }
    .game__tags .badge:not(:last-child) {
        margin-left: 0;
    }
}

@media (max-width: 1280px) {
    .game__tags .badge {
        font-size: 9px;
    }
}

@media (max-width: 1199px) {
    /* ID's Section CSS */
    .id__box .id__info {
        padding-right: 9px;
        margin-right: 9px;
    }
    /* ID's Section CSS */
}

@media (max-width: 991px) {
    /* Team Profile Banner Section CSS */
    .profile__banner-block .team__player .team__logo {
        width: 100px;
        height: 100px;
        margin: -50px 30px 0;
    }
    .profile__banner-block .player__details {
        padding: 20px 20px 0;
    }
    .profile__banner-block .player__details h4 {
        font-size: 24px;
    }
    .profile__banner-block .player__details .team__rank {
        padding: 0;
        margin: 13px 0 0;
        border: none;
    }
    .profile__banner-block .player__details h5 {
        font-size: 16px;
    }
    .profile__banner-block .player__details h5 img {
        width: 30px;
    }
    .profile__banner-block .player__details .edit__profile {
        padding: 20px 0 0;
        margin: 20px 0 0;
        border-right: none;
        border-top: 1px solid #242B3E;
    }
    .profile__banner-block .progress {
        height: 4px;
    }
    .profile__banner-block .profile__level h6 {
        font-size: 14px;
    }
    .profile__banner-block .team__head {
        display: block !important;
    }
    /* Team Profile Banner Section CSS */
    /* Teams Section CSS */
    .teams-block .team__player,
    .stats__box {
        margin-bottom: 20px;
    }
    /* Teams Section CSS */
    /* Team Popup CSS */
    .team__modal .modal-dialog {
        margin: 15px auto;
        max-width: 90%;
    }
    .add__member-modal .modal-dialog {
        max-width: 90%;
    }
    .add__member-modal .close {
        left: 20px;
        top: 20px;
    }
    /* Team Popup CSS */
}

@media (max-width: 767px) {
    .game__tags .badge {
        font-size: 10px;
        padding: 8px 10px;
    }
    /* Team Profile Banner Section CSS */
    .profile__banner-block {
        padding-top: 100px !important;
    }
    .profile__banner-block .team__player .team__logo {
        width: 90px;
        height: 90px;
        margin: -50px 20px 0;
        border-width: 6px;
    }
    /* Team Profile Banner Section CSS */
    /* Team Box CSS */
    .team__player .player__banner {
        padding-top: 32%;
    }
    /* Team Box CSS */
    /* Tab CSS */
    .profile__tab .nav-tabs .nav-link {
        font-size: 16px;
        padding: 10px 20px;
    }
    /* Tab CSS */
    /* Trophies  Section CSS */
    .trophies__main .card,
    .social__media-block .card {
        padding: 0;
        background-color: transparent;
    }
    .trophies__main .trophies,
    .social__media-block ul,
    .ids-block .row {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
        overflow: auto;
        margin: 0 -4px !important;
    }
    .trophies__main .trophies .trophies__item,
    .social__media-block ul li,
    .ids-block .row .col-sm-6 {
        max-width: calc(100% / 4 - 8px);
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 4 - 8px);
        flex: 0 0 calc(100% / 4 - 8px);
        margin: 0 4px;
        background-color: #161b26;
        border-radius: 6px;
    }
    .ids-block .row .col-sm-6 {
        max-width: calc(100% / 2 - 8px);
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 2 - 8px);
        flex: 0 0 calc(100% / 2 - 8px);
        background-color: transparent;
    }
    .id__box {
        padding: 14px !important;
    }
    .trophies__main .trophies .trophies__item .hint {
        bottom: 0;
        z-index: 9;
    }
    .social__media-block ul {
        padding-bottom: 15px;
    }
    .trophies__main .trophies {
        padding-bottom: 15px;
    }
    /* Trophies  Section CSS */
    /* Social Media CSS */
    .social__media-block ul li {
        height: 80px;
        text-align: center;
        line-height: 80px;
        margin: 0 4px;
    }
    .social__media-block ul li:not(:last-child) {
        border-left: none;
        margin: 0 4px;
        padding: 0;
    }
    /* Social Media CSS */
    /* Statistic Box CSS */
    .teams-block .row:not(:first-child),
    .stats-block .row:not(:first-child) {
        margin: 0 -4px;
    }
    .teams-block .row:not(:first-child) .col-lg-4,
    .stats-block .row:not(:first-child) .col-lg-3 {
        padding: 0 4px;
    }
    .stats__box h4 {
        font-size: 18px;
    }
    .stats__box h6 {
        font-size: 10px;
    }
    .stats-block .col-sm-6,
    .ids-block .col-sm-6 {
        max-width: 50%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
    .stats__box {
        margin-bottom: 8px;
    }
    /* Statistic Box CSS */
    /* ID's Section CSS */
    .id__box .id__info p {
        font-size: 14px;
    }
    .id__box .id__info span {
        display: none;
    }
    /* ID's Section CSS */
    /* Teams Section CSS */
    .teams-block .row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow: auto;
    }
    .teams-block .row .col-sm-6 {
        max-width: 95%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 95%;
        flex: 0 0 95%;
    }
    /* Teams Section CSS */
    /* Settings Page CSS */
    .settings-block .form-group label {
        font-size: 14px;
    }
    .settings-block .form__btn {
        position: fixed;
        bottom: 60px;
        right: 0;
        width: 100%;
        height: 70px;
        background-color: #0B0D13;
        padding-top: 15px;
        z-index: 9999;
        -webkit-box-shadow: 0px -16px 19px rgba(0, 0, 0, 0.2);
        box-shadow: 0px -16px 19px rgba(0, 0, 0, 0.2);
    }
    .settings-block .form__btn .form-group {
        padding: 0 15px !important;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin: 0;
    }
    /* Settings Page CSS */
    /* Team Popup CSS */
    .team__modal .close {
        top: 15px;
        left: 15px;
        z-index: 9;
    }
    .team__modal .edit__team-block {
        padding: 10px;
    }
    .team__modal .edit__team-block .form-group label {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .team__modal .modal-footer {
        padding: 10px;
    }
    /* Team Popup CSS */
}

/* rtl css */

[dir="rtl"] .edit__profile {
    text-align: end;
    margin-bottom: 10px;
}

form#edit_form .input-group {
    margin-top: 8px;
}

#about_tournament figure.image.image-style-side {
    display: grid;
    justify-content: start;
}

#about_tournament figure.image {
    display: grid;
    justify-content: center;
}

#about_tournament figcaption {
    text-align: center;
}

div#about_tournament p img {
    margin-right: auto;
}

.image-style-side img {
    margin-right: auto;
}

figure.image.image-style-side {
    display: grid;
    justify-content: right;
}

div > p .mCS_img_loaded {
    margin-right: auto;
}

figure.image {
    display: grid;
    justify-content: center;
}

.option-menu {
    right: auto;
    left: 10px;
}

.player_img_container {
    transform: translateX(15.5px) scale(0.85);
}

.player__intro {
    padding-right: 0;
}

.player__intro {
    gap: 0;
}
