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 #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;
    }
}
/* 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);
    }
}

@media (max-width: 767px) {
    /* 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: 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;
    }
}

.menu__icon,
.mobile__menu {
    display: none;
}

.header__wrapper {
    padding: 18px 30px;
    background: linear-gradient(-180deg, #4FA6FF 0%, #007EFF 100%);
}

.header__wrapper .header__profile .dropdown-menu {
    padding: 15px;
    min-width: 120px;
}

.header__wrapper .header__profile .dropdown-menu a {
    font-weight: 600;
}

.header__wrapper .header__profile .dropdown-menu a:hover {
    color: #2691ff;
    transition: all 0.6s ease-in-out;
}

.header__wrapper .dropdown-menu {
    top: 60px !important;
    left: 0 !important;
    right: auto !important;
    transform: translateX(-45%) !important;
    background-color: rgba(17, 20, 29, 0.96);
    box-shadow: 0px 38px 45px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.header__wrapper .dropdown-menu a {
    color: #ffffff;
}

.header__wrapper .nav-item .dropdown-menu a:hover {
    color: #2691ff;
    transition: all 0.6s ease-in-out;
}

.header__wrapper .logo {
    max-width: 4%;
    flex: 0 0 4%;
}

.header__menu .nav-item .nav-link {
    font-size: 17px;
    color: #ffffff;
    padding: 0;
    font-weight: 700;
}

.header__menu .nav-item .nav-link:hover {
    color: var(--primary-green-color);
    transition: all 0.6s ease-in-out;
}

.header__search {
    max-width: 36%;
    flex: 0 0 36%;
}

.header__search .form-control {
    background-color: rgba(11, 13, 19, 0.2);
    border-radius: 12px;
    height: auto;
    border: none;
    color: rgb(255, 255, 255);
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
    font-family: inherit;
}

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

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

.header__search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.header__search .form-control:focus+.search__btn i:before {
    content: "\f00d";
}

.header__search .search__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    width: 27px;
    height: 27px;
    line-height: 35px;
    padding: 0;
    background-color: transparent;
}

.header__search .search__btn i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 22px;
}

.profile__wrapper {
    max-width: 30%;
    flex: 0 0 30%;
}

.profile__wrapper .header__notification .notification__icon {
    border-radius: 6px;
    padding: 12px;
}

.profile__wrapper .show .notification__icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.profile__wrapper .header__profile {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 30px;
    margin: 0 30px;
}

.profile__wrapper .profile__img {
    width: 55px;
    min-width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
}

.profile__wrapper .profile__img img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.profile__wrapper .profile__range {
    margin-right: 25px;
}

.profile__wrapper .profile__range i {
    color: rgba(255, 255, 255, 0.2);
    font-size: 30px;
}

.profile__wrapper .profile__range .progress {
    height: 6px;
    width: 106px;
    border-radius: 20px;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}

.profile__wrapper .profile__range .progress .progress-bar {
    background-color: #ffffff;
    border-radius: 20px;
}

.notification__list {
    width: 400px;
    max-height: 470px;
    padding: 30px;
    overflow: auto;
    margin: 30px 0 0px 13px;
    padding: 0 30px 0 13px;
    /* width */
    /* Track */
    /* Handle */
}

.notification__list .notification__item {
    padding-bottom: 25px;
}

.notification__list .notification__item:not(:last-child) {
    border-bottom: 1px solid #242B3E;
    margin-bottom: 20px;
}

.notification__list .notification__item .notification__time {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.notification__list .notification__item .notification__title {
    font-size: 18px;
    font-weight: 700;
}

.notification__list .notification__item p {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 12px;
}

.notification__list .notification__item p a {
    text-decoration: underline;
}

.notification__list::-webkit-scrollbar {
    width: 4px;
}

.notification__list::-webkit-scrollbar-track {
    background: #1E2333;
    border-radius: 4px;
}

.notification__list::-webkit-scrollbar-thumb {
    background: #333C56;
    border-radius: 4px;
}

.mCSB_container {
    overflow: visible;
    position: inherit !important;
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #1E2333;
    width: 4px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #333C56;
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: #00f5a3;
}


/* Team Invitation Modal CSS */

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

.team__invitation-modal .modal-header h5 {
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.team__invitation-modal .modal-dialog {
    max-width: 415px;
}

.team__invitation-modal .modal-content {
    border: none;
}

.team__invitation-modal .modal-footer {
    padding: 10px 0 0 !important;
    background: transparent !important;
    border-color: #49526D;
    margin: 0 -2px;
}

.team__invitation-modal .modal-footer .btn {
    width: calc(50% - 4px);
    margin: 0 2px;
}

.team__invitation-modal .player__msg {
    margin: 20px auto;
    width: 70%;
}

.team__invitation-modal .player__msg p {
    font-weight: 500;
}

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


/* Team Invitation Modal CSS */


/* 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 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: 3px;
    position: relative;
    z-index: 9;
}

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

.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: 10px;
}

.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;
}

.team__player .player__details .game__tags .badge img {
    margin-left: 5px;
}


/* Team Box CSS */

@media (max-width: 1600px) {
    .header__wrapper {
        padding: 12px 20px;
    }
    .header__wrapper .dropdown-menu {
        top: 40px !important;
    }
    .header__wrapper .header__profile .dropdown-menu {
        top: 50px !important;
    }
    .header__menu .nav-item .nav-link {
        font-size: 16px;
    }
    .header__search {
        padding-right: 50px;
    }
    .profile__wrapper .header__profile {
        padding: 0 15px;
        margin: 0 15px;
    }
    .notification__icon img {
        width: 22px;
    }
    .profile__wrapper .profile__img {
        width: 45px;
        min-width: 45px;
        height: 45px;
    }
    .profile__wrapper .profile__img img {
        width: 45px;
    }
    .profile__wrapper .profile__range i {
        font-size: 26px;
    }
    .header__search .form-control {
        padding: 10px;
        font-size: 14px;
    }
    .header__search .search__btn {
        line-height: 28px;
    }
    .header__search .search__btn i {
        font-size: 16px;
    }
    .notification__list {
        max-height: 300px;
    }
}

@media (max-width: 1199px) {
    .menu__icon {
        display: block;
    }
    .mobile__menu {
        position: absolute;
        top: 85px;
        left: 0;
        width: 300px;
        height: calc(100vh - 145px);
        background-color: rgba(16, 20, 28, 0.9);
        padding: 30px;
        overflow: auto;
    }
    .mobile__menu ul li .nav-link {
        color: #ffffff;
        font-weight: 700;
        font-size: 16px;
    }
    .mobile__menu .header__search {
        display: block;
        padding: 30px 0 0;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .mobile__menu .header__search .form-control {
        background-color: #0b0d13;
    }
    .header__menu,
    .header__search,
    .header__notification,
    .header__settings {
        display: none;
    }
    .header__search {
        padding-right: 0;
    }
    .header__wrapper {
        justify-content: space-between;
    }
    .header__wrapper .header__profile {
        padding: 0;
        border: none;
    }
}

@media (max-width: 767px) {
    .header__wrapper .logo {
        max-width: 12%;
        flex: 0 0 12%;
    }
    .profile__wrapper .profile__img {
        order: 1;
        width: 38px;
        height: 38px;
        min-width: 38px;
        margin-right: 30px;
    }
    .mobile__menu {
        top: 80px;
        height: calc(100vh - 140px);
    }
}

@media (max-width: 360px) {
    .profile__wrapper .profile__range .progress {
        width: 60px;
    }
}

.notification__list .nofi__read {
    border-bottom: 1px solid #242B3E !important;
    background-color: rgbA(77, 94, 145, 0.16);
    border: 1px solid #383838;
    padding: 15px;
    border-radius: 5px;
}

.notification__list .nofi__unread {
    background-color: #07271d;
    border: 1px solid #00f3a2;
    padding: 15px;
    border-radius: 5px;
}

.notification-badge {
    background-color: rgba(17, 20, 29, 0.96);
    min-width: 18px;
    height: 18px;
    line-height: 13px;
    border-radius: 50px;
    /* position: absolute;
    left: 28px;
    top: 5px; */
    font-size: 10px;
    color: #ffffff;
    text-align: center;
}

.nf__viewall--btn {
    padding: 10px;
}

.nf__viewall--btn .blue-gradiant-1 {
    width: 100%;
    max-width: 90%;
}

@media(max-width:575px){
    .header__main .header__logo img {
        width: 70px;
    }

    .header__main > div > div > div:last-child > ul,.header__main > div > div > div:last-child > ul li {
        padding-right: 0;
        margin-bottom: 0;
        margin-left: 0;
    }

    .toggle__menu {
        top: 7px;
        left: 8px;
    }

    .nf_country-drop .dropdown-toggle {
        font-size: 14px;
        padding: 9px;
    }

    .header__main > div > div > div:last-child > ul li svg {
        width: 23px;
        position: relative;
        right: 4px;
    }
}
html[dir="rtl"] body .header__menu ul {
    gap: 20px !important;
    flex-wrap: wrap;
}

html[dir="rtl"] body .header__menu .nav-item .nav-link {
    font-size: 14px;
}
body .header__menu ul {
    gap: 20px !important;
    flex-wrap: wrap;
}

body .header__menu .nav-item .nav-link {
    font-size: 14px;
}

.lang_links {
    display: flex;
    position: relative;

}

.lang_links a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(-180deg, #464E66 0%, #32384B 100%);
    padding: 6px 10px;
    border-radius: 8px;
    scale: 0.8;
    position: relative;
    opacity: 0.6;
}

.lang_links a img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 40px;
}

.lang_links a:first-child {
    margin-left: -45px;
}

.lang_links a.active {
    scale: 1;
    z-index: 99;
    opacity: 1;
    left: 0;
}

html,body {
    font-family: "Nunito", sans-serif !important;
    font-weight: normal;
    font-style: normal;
}

html[dir="rtl"] .lang_links a.english-lan {
    flex-direction: row-reverse;
}

body header a.nav-link ,body header a, body .counter-value{
    font-family: 'Roboto Flex' !important;
}
/* articles page notification dropbox not proper start - 19-05-2025 */
header {
    position: relative;
    z-index: 999;
}
/* articles page notification dropbox not proper end  */
