@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@400;700&display=swap');

:root {
    --primary-color: #03142D;
    --secondary-color: #01FFFF;
    --text-color: #002355;
    --body-background: #EDEEF1;
    --heading-color: var(--primary-color);
    --button-background: var(--secondary-color);
    --button-hover-background: var(--primary-color);
    --button-hover-text: var(--secondary-color);
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--body-background);
    color: var(--text-color);
}
p, li, a {
    color: var(--text-color);
}
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}
h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: var(--heading-color);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}
h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: var(--heading-color);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}
h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: var(--heading-color);
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}
button, .btn {
    font-family: 'Roboto', sans-serif;
    background-color: var(--button-background);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s;
}
button:hover, .btn:hover {
    background-color: var(--button-hover-background);
    color: var(--button-hover-text);
}
.section__padding{
    padding: 80px 0;
}
.section__heading {
    margin-bottom: 14px;
}
hr {
    border: 2px solid #DDE2F5;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
::-webkit-scrollbar-corner {
  background: #f1f1f1;
}

/*scrollbar-width: thin;
scrollbar-color: #888 #f1f1f1;*/

@media (min-width: 1251px){
    .page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main, .container, .container-lg, .container-md, .container-sm, .container-xl{
        max-width: 1200px;
        width: 1200px;
        padding: 0;
    }
}
@media (max-width: 1250px){
    .page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main, .container, .container-lg, .container-md, .container-sm, .container-xl{
        max-width: 100%;
        width: 100%;
        padding: 0 16px;
    }
}

/* HEADER */


header.site-header {
    background: #fff;
    border-radius: 20px;
    max-height: 84px;
    margin: 18px 0;
    z-index: 2;
}
header.site-header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}
.mobile-nav-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
}
.mobile-nav-icon .bar {
    background-color: #000;
    height: 4px;
    width: 100%;
    transition: all 0.3s ease;
}
.mobile-nav-icon.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-icon.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-nav-icon.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
img.custom-logo {
    max-width: 258px;
    object-fit: contain;
}
#menu-main-menu {
  margin: 0;
}
#menu-main-menu li {
  display: inline-block;
  margin: 0 20px;
  position: relative;
  overflow: visible;
}
#menu-main-menu li::before {
  content: "";
  position: absolute;
  /*top: 100%;*/
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  /*transition: top .35s ease;*/
  z-index: 1;
  opacity: 0;
  border-radius: 8px; 
}
#menu-main-menu li:hover::before {
  top: 0;
  opacity: 1;
}
#menu-main-menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
  font-family: 'Montserrat';
  color: var(--primary-color);
  position: relative;
  z-index: 2;
  padding: 5px 7px 3px 7px;
  transition: color .35s ease;
  white-space: nowrap;
}
#menu-main-menu li:hover a {
  color: #fff;
}
#menu-main-menu li.menu-item-has-children > a {
  padding-right: 20px;
}
#menu-main-menu li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 6px;
  background-image: url('/wp-content/uploads/2025/11/nav-dropdown.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform .35s ease;
}
#menu-main-menu li.menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.site-navigation ul.menu li ul li{
    border: none;
}
.site-navigation ul.menu li ul{
    left: inherit;
    right: 0;
}
#menu-main-menu .sub-menu {
  position: absolute;
  background: currentColor;
  padding: 0;
  border-radius: 6px;
  min-width: 180px;
  top: 100%;
  /*left: 0;*/
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s 0.35s;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  /*margin-top: 2px;*/
}
#menu-main-menu li .sub-menu > li {
    border-radius: 0;
    width: 100%;
    padding: 0;
    margin: 0;
}
#menu-main-menu .sub-menu a {
  color: #fff !important;
  padding: 10px 15px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
  width: 100%;
  display: block;
  transition: padding-left .25s ease, background .25s ease;
}
#menu-main-menu .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 20px;
  text-shadow: none;
}
#menu-main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.site-navigation ul.menu li.menu-item-has-children::after {
  display: none;
}
#menu-main-menu li:hover a::after {
  filter: brightness(0) invert(1);
}


/* HOME PAGE */
.hero__banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    gap: 20px;
    height: auto;
    min-height: 297px;
    background: radial-gradient(66.36% 66.36% at 50% 50%, #0F59D0 0%, #002355 100%);
    border-radius: 20px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}
.hero__banner-content h1 {
    text-align: center;
    color: #fff;
    max-width: 550px;
    margin: 0 auto;
}
.hero__banner-content h1 b {
    color: var(--secondary-color);
}


/* Games */
.game__pkg-card {
    background: #fff;
    border-radius: 20px;
    position: relative;
}
.game__pkg-status{
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}
.game__pkg-status a{
    background: #4285F4;
    width: 177px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
section.game__packages .container .row:last-child .col-md-6:first-child .game__pkg-card .game__pkg-img:after, section.game__packages .container .row:last-child .col-md-6:first-child .game__pkg-card .game__pkg-status{
    display: none;
}
.game__pkg-img{
    position: relative;
}
.game__pkg-img:after{
    content: '';
    background: url(/wp-content/uploads/2025/11/game-img-layer.svg);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    border-radius: 20px 20px 0 0;
}
.game__pkg-img img{
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 311px;
    object-fit: cover;
}
.game__pkg-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 30px 3px 30px;
}
.game__pkg-content {
    padding: 10px 0;
}
.game__pkg-content h4{
    padding: 8px 30px 8px 30px;
}
.game__pkg-content h4 a{
    text-decoration: none;
}
.game__pkg-iconBox {
    display: flex;
    align-items: center;
}
.game__pkg-iconBox p {
    margin: 0;
    max-width: 195px;
    margin-left: 10px;
    line-height: 1.3em;
}
.hero__banner__intro-text p {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 15px;
}
/* Recent News */
section.news__section.section__padding {
    padding-top: 0;
}
.news__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.tsa___nav .swiper-button-prev {
    right: 100px;
    left: inherit;
    background: url(/wp-content/uploads/2025/11/arrow-left.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 34px;
    height: 34px;
}
.tsa___nav .swiper-button-next {
    background: url(/wp-content/uploads/2025/11/arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 34px;
    height: 34px;
}
.tsa___arrow svg.swiper-navigation-icon {
    display: none;
}
.swiper-counter {
    font-size: 22px;
    font-weight: 400;
    color: #03142D;
    display: inline-block;
    position: absolute;
    top: 16px;
    right: 53px;
}
.news___card {
    background: #fff;
    border-radius: 20px;
    height: 452px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news___img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.news___badge{
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(90deg, #F60F26 0%, #BE0003 100%);
    width: 60px;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.news___title {
    padding: 20px 16px;
}
.news___desc {
    padding: 0 16px;
}
.news___meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}
.news___meta p, .news___views span, .news___category{
    font-size: 14px;
    font-weight: 400;
    color: #DDE2F5;
    margin: 0;
    text-transform: uppercase;
    display: inline-block;
}
.news___views span{
    margin-left: 5px;
}
.news___category{
    padding: 0 16px 16px 16px;
}
.news___card hr {
    margin: 0;
}
.news___swiper .swiper-wrapper .swiper-slide .news___desc{
    display: none;
}
/*.news___swiper .swiper-wrapper .swiper-slide.swiper-slide-active .news___img{
    display: none;
}*/
/*.news___swiper .swiper-wrapper .swiper-slide.swiper-slide-active .news___title {
    padding-top: 60px;
}*/
/*.news___swiper .swiper-wrapper .swiper-slide.swiper-slide-active .news___desc{
    display: block;
}*/
/* Calculators */
.game__calc{
    height: 0;
}
.game__calc-tabs a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    opacity: 40%;
    margin-right: 40px;
}
.game__calc-tabs {
    display: flex;
    align-items: center;
}
.game__calc-tabs a span {
    color: #0052FE;
    padding-right: 4px;
}
.game__calc-tabs a.active span {
    padding: 0;
    line-height: 1em;
}
.game__calc-tabs a.active{
    opacity: 1;
    background: #fff;
    padding: 11px 25px;
    border-radius: 20px;
    display: inline-flex;
    flex-direction: column;
}
.game__calc-wrapper {
    background: #fff;
    margin-top: 20px;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.calc__form form{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form-group-wrapper {
    display: block;
    width: 100%;
    max-width: 49.2%;
    flex: 0 0 49.2%;
}
.calc__form form .form-group {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 20px;
}
.form-group-wrapper label {
    margin-bottom: 10px;
    font-weight: 700;
}
.form-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-labels label:nth-child(2) {
    margin-right: 62px;
}
.calc__form form select, .calc__form form .select2-selection {
    background: #EEF2F5;
    border: 0;
    border-radius: 20px;
    padding: 20px 24px;
    font-size: 20px;
    font-weight: 400;
    color: #444;
    font-family: 'Roboto';
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/wp-content/uploads/2025/11/form-dropdown.svg');
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 23px;
    height: 70px;
    cursor: pointer;
}
.calc__form form input {
    background: #EEF2F5;
    border: 0;
    border-radius: 20px;
    padding: 20px 24px;
    font-size: 20px;
    font-weight: 400;
    color: #878C92;
    font-family: 'Roboto';
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*background-image: url('/wp-content/uploads/2025/11/form-dropdown.svg');*/
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 23px;
    height: 70px;
    cursor: pointer;
}
.calc__form .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
    padding: 0;
}
.calc__form .select2-container--default .select2-selection--single .select2-selection__rendered{
    padding: 0;
}
.calc__form form select:focus, .calc__form form select:focus-visible, .calc__form form input:focus, .calc__form form input:focus-visible{
    border: 0;
    outline: 0;
    background-color: #EEF2F5;
    z-index: 0;
    position: relative;
    box-shadow: none;
}
.calc__form form button {
    background: #0052FE;
    width: 100%;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto';
    padding: 20px 24px;
}
.calc__details {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 70px;
}
.calc__result, .calc__cost {
    background: #EEF2F5;
    border-radius: 20px;
    padding: 20px;
}
.calc__result{
    max-width: 34.5%;
    flex: 0 0 34.5%;
}
.calc__cost {
    max-width: 64%;
    flex: 0 0 64%;
}
.calc__cost-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}
.evolution-cost .calc__cost-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}
.cost__card {
    background-color: rgb(255 255 255 / 40%);
    border: 1px solid #DDE2F5;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    min-height: 207px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 24px;
}
.cost__img img {
    width: 100%;
    max-width: 70px;
    height: auto;
    margin-bottom: 8px;
}
.calc__cost-wrapper .cost__card:hover, .calc__cost-wrapper .cost__card:first-child{
    background: #fff;
}
.cost__card p {
    font-size: 16px;
    font-weight: 400;
    color: #878C92;
    /*max-width: 90px;*/
    margin: 0;
    line-height: 1.2em;
}
.cost__card span {
    font-size: 24px;
    font-weight: 700;
    color: #878C92;
}
.calc__cost h4, .calc__result h4{
    margin-bottom: 22px;
    color: #878C92;
}
.calc__result table, .calc__result table tr, .calc__result table td, .calc__result table th, .calc__result table tbody {
    border: 0;
    background: transparent !important;
}
.calc__result table tbody tr:first-child td {
    font-size: 22px;
    font-weight: 800;
    color: #878C92;
    font-family: 'Montserrat';
    padding-top: 20px;
}
.calc__result table tbody tr td {
    font-size: 18px;
    color: #878C92;
    font-weight: 500;
    font-family: 'Montserrat';
    padding: 0;
}

.select2-container--open .select2-dropdown--below {
    background: #FFFFFF;
    box-shadow: 0px 4px 17px 10px rgba(0, 0, 0, 0.04);
    border-radius: 0 0 10px 10px;
    /*margin-top: 30px;*/
    padding: 12px;
}
.select2-container--default .select2-results>.select2-results__options {
    max-height: 150px;
    overflow-y: auto;
}
.select2-container--default .select2-results>.select2-results__options{
    scrollbar-width:thin;
    scrollbar-color:#D9D9D9 #EEF2F5;
}
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar{
    width:5px;
}
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track{
    background:#EEF2F5;
    height:322px;
}
.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb{
    background:#D9D9D9;
    border-radius:4px;
    height:60px;
}
.select2-container--default .select2-results__option--selected{
    background-color: #EEF2F5;
    color: #878C92;    
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #EEF2F5;
    color: #878C92;
}
.select2-results__option--selectable {
    font-size: 18px;
    font-family: 'Montserrat';
    font-weight: 400;
    height: 46px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    margin-right: 12px;
}
form select{
    scrollbar-width:thin;
    scrollbar-color:#D9D9D9 #EEF2F5;
}
form select::-webkit-scrollbar{
    width:5px;
}
form select::-webkit-scrollbar-track{
    background:#EEF2F5;
    height:322px;
}
form select::-webkit-scrollbar-thumb{
    background:#D9D9D9;
    border-radius:4px;
    height:60px;
}
.calc__form form button:hover, .calc__form form button:focus-visible, .calc__form form button:focus, .calc__form form button:focus-within, .calc__form form button:active, .calc__form form button:target {
    background: var(--primary-color) !important;
    color: #fff !important;
}




/* FOOTER */
.footer-content {
    background: #fff;
    border-radius: 20px;
    height: 226px;
    padding: 30px 30px 27px 30px;
    margin-left: 0;
    margin-right: 0;
}
.copyright {
    background: #DDE2F5;
    border-radius: 20px;
    text-align: center;
    padding: 12px;
    height: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.copyright p{
    margin: 0;
}
.footer-social ul {
    margin: 0;
    padding: 0;
    display: flex;
}
.footer-social{
   margin-left:6px;	
}
.footer-social ul li {
    list-style: none;
}
.footer-social ul li a {
    width: 50px;
    height: 50px;
    background: #F2F2F4;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.footer-games ul li:first-child a, #menu-footer-menu li:first-child a {
    opacity: 1;
}
.footer-social p {
    margin: 0;
    max-width: 198px;
    margin-top: 20px;
	line-height:20px;
}
.footer-games ul {
    margin: 0;
    padding: 0;
	line-height:30px;
}
.footer-games ul li {
    list-style: none;
}
.footer-games ul li a, #menu-footer-menu li a {
    text-decoration: none;
    font-size: 18px;
    opacity: 40%;
}
.footer-games ul li a:hover, #menu-footer-menu li a:hover{
    opacity: 1;
}
.footer-games h4 {
    margin-bottom: 32px;
}
nav.footer-nav ul {
    padding: 0;
    margin: 0;
}
#menu-footer-menu li{
    list-style: none;
}
nav.footer-nav a {
    font-size: 18px;
    text-decoration: none;
}
nav.footer-nav > a {
    margin-bottom: 10px !important;
    display: block;
}

/* GAME PAGE */
.breadcrumb__list {
    display: flex;
    margin: 0 0 16px 0;
    align-items: center;
}
.breadcrumb__list li {
    list-style: none;
    text-decoration: none;
    position: relative;
    margin-right: 17px;
}
.breadcrumb__list li:after {
    content: '';
    background: #878C92;
    width: 2px;
    height: 20px;
    position: absolute;
}
.breadcrumb__list li:last-child{
    margin: 0;
}
.breadcrumb__list li:last-child:after{
    display: none;
}
.breadcrumb__list li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    color: #878C92;
    padding-right: 15px;
}
.breadcrumb__list li:last-child a{
    padding: 0;
}
.breadcrumb__list li a:hover{
    pointer-events: cursor;
    color: var(--primary-color);
}
section.main__banner {
    margin-bottom: 20px;
}
.main__banner-img img {
    width: 100%;
    object-fit: cover;
/*     max-width: 892px; */
    min-height: 290px;
    border-radius: 20px;
}
.main__banner-card{
    background: #4285F4;
    min-height: 290px;
    max-width: 300px;
    border-radius: 20px;
    padding: 20px;
}
.main__banner-card > h6, .main__banner-card > h5 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: 'Montserrat';
}
.main__banner-card > h5{
    text-transform: uppercase;
}
.main__banner-card p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 25px;
    font-family: 'Roboto';
    margin: 0;
}
.discount{
    margin-top: 5px;
}
.main__banner-card h2 {
    font-size: 60px;
    font-weight: 900;
    font-family: 'Montserrat';
    color: #fff;
    margin: 15px 0 22px 0;
}
.main__banner-card a {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}
.calc__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 484px;
    margin: 0 auto;
    height: 64px;
    background: #fff;
    border-radius: 89px;
    padding: 8px;
    gap: 8px;
    margin-top: 10px;
}
.calc__social {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-right: 20px;
    margin-left: 10px;
}
.calc__social li {
    list-style: none;
}
.calc__social li a img{
    object-fit: cover;
    height: 23px;
}
.calc__cat, .calc__text {
    border-radius: 117px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #878C92;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Montserrat';
    padding: 9px 20px;
    text-transform: capitalize;
}
.calc__cat.active, .calc__text.active {
    background: #EEF2F5;
    border-radius: 117px;
    padding: 9px 20px;
    font-weight: 700;
}
section.game__table {
    margin: 20px 0 20px 0;
}
section.game__table .container .tierData {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
}
.tier-head {
    text-align: center;
}
.tier-head h2 {
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}
.tier-head p {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Montserrat';
}
.tier__tabs {
    text-align: center;
    margin-bottom: 20px;
}
.tier__tabs a {
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 700;
    color: #8F97A3;
    text-decoration: none;
    text-transform: capitalize;
    width: 129px;
    display: inline-flex;
    height: 45px;
    align-items: center;
    justify-content: center;
}
.tier__tabs a.active, .tier__tabs a:hover {
    background: #fff;
    border-radius: 20px;
    color: #03142D;
}
.tierData > div {
    background: #EEF2F5;
    padding: 30px;
    border-radius: 20px;
}
.tierlists {
    display: flex;
    align-items: stretch;
    margin-top: 30px;
}
.tierlists:first-child{
    margin: 0;
}
.tierData > div .tierName{
    width: 80px;
    height: auto;
    background: #002355;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 12px;
}
.tierData > div .tierName a{
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.tierlists .image__group__wrapper {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
    align-self: flex-start;
}
.tierlists .image__group__wrapper .image-group {
    display: flex;
    gap: 12px;
    background: #002355;
    height: 134px;
    width: 100%;
    max-width: 378px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.tierlists .image__group__wrapper .image-group img{
    width: 100%;
    height: auto;
    object-fit: cover;
    height: 110px;
    max-width: 110px;
}

.tierlists:nth-child(1) .tierName{
    background-color: #002355;
}
.tierlists:nth-child(2) .tierName{
    background-color: #0D3978;
}
.tierlists:nth-child(3) .tierName{
    background-color: #255498;
}
.tierlists:nth-child(4) .tierName{
    background-color: #4071B8;
}
.tierlists:nth-child(5) .tierName{
    background-color: #598EDC;
}
.tierlists:nth-child(1) .image__group__wrapper .image-group {
    background-color: #002355;
}
.tierlists:nth-child(2) .image__group__wrapper .image-group {
    background-color: #0D3978;
}
.tierlists:nth-child(3) .image__group__wrapper .image-group {
    background-color: #255498;
}
.tierlists:nth-child(4) .image__group__wrapper .image-group {
    background-color: #4071B8;
}
.tierlists:nth-child(5) .image__group__wrapper .image-group {
    background-color: #598EDC;
}




.game__table-card {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}
.game__table-card:last-child{
    margin-bottom: 0;
}
.game__table-title {
    font-size: 22px;
    font-weight: 700;
    color: rgb(3 20 45 / 40%);
    margin-bottom: 25px;
}
.game__table-list {
    margin: 0;
    padding-left: 20px;
}
.game__table-list li{
    list-style: none;
}
.game__table-list li{
    margin-bottom: 17px;
}
.game__table-list li:last-child{
    margin-bottom: 0;
}
.game__table-list li a {
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: rgb(3 20 45 / 40%);
    line-height: 21px;
}
.evolution-cost-form .form-group {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.calc__form form .form-group .select2.select2-container {
    max-width: 80%;
    flex: 0 0 80%;
}
.calc__form form .form-group select:nth-child(3) {
    max-width: 20%;
}
.calc__form form .form-group .select2-selection__rendered img {
    /*min-width: 50px;*/
    min-width: 20px;
    height: 50px;
    object-fit: contain;
}
.calc__form .select2-container--default .select2-selection--single .select2-selection__rendered {
    position: relative;
    /*top: -10px;*/
}
.result_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.result_content{
    display: flex;
    align-items: center;
    max-width: 198px;
}
.result_content img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.result_content p, .result_number p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2em;
    margin: 0;
    margin-left: 10px;
}
.leve-up-cost .result_content p, .leve-up-cost .result_number p {
    margin: 0;
    color: #878C92;
}
.leve-up-cost .result_wrapper:nth-child(2) .result_content p, .leve-up-cost .result_wrapper:nth-child(2) .result_number p {
    font-size: 22px;
    /*font-weight: 800;*/
    max-width: 140px;
    margin-bottom: 50px;
}

.evolution-cost .calc__form form .form-group-wrapper:nth-child(5) select, .evolution-cost .calc__form form .form-group-wrapper:nth-child(5) .select2-selection{
    background-image: none;
    pointer-events: none;
    background: #EEF2F5;
}
.evolution-cost .calc__form form .form-group-wrapper:nth-child(7) select, .evolution-cost .calc__form form .form-group-wrapper:nth-child(7) .select2-selection{
    background-image: none;
    pointer-events: none;
    background: #EEF2F5;
} 


.evolution-cost .calc__form form .form-group-wrapper:nth-child(5) label, .evolution-cost .calc__form form .form-group-wrapper:nth-child(7) label {
    display: none;
}


/* SOLDIER ANTS FORM */
.formWrapper {
    display: flex;
    justify-content: space-between;
}
.formBlock1, .formBlock2 {
    max-width: 49%;
    flex: 0 0 49%;
}
.calc__form.ants-cost-form form {
    display: block;
}
.calc__form.ants-cost-form form .form-group-wrapper label {
    font-family: 'Roboto';
    font-size: 20px;
    color: #878C92;
    font-weight: 400;
}
.calc__form.ants-cost-form .form-control {
    border-radius: 10px;
    background-color: #EEF2F5;
}
.ants-cost-form h4 {
    margin: 0 0 14px 0;
    font-size: 20px;
    text-transform: uppercase;
    text-align: left;
    color: #002355;
    font-family: 'Roboto';
}
.ants-cost-form h4:first-child{
    margin-top: 0;
}
.input-style {
    position: relative;
}
.input-content-wrapper {
    margin: 0;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}
.inner-img img {
    width: 50px;
    height: 50px;
    border-radius: 100px;
}
.inner-text{
    margin-left: 15px;
}
.input-style p {
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: #878C92;
    margin: 0;
    line-height: 1.2em;
}
.input-style span {
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
    color: #444;
    line-height: 1em;
}
.calc__form.ants-cost-form .form-group-wrapper {
    display: block;
    max-width: 100%;
/*    justify-content: space-between;
    gap: 30px;*/
}
.form-inline {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
}
.calc__form.ants-cost-form .form-group-wrapper:last-child .form-inline:last-child {
    margin-bottom: 0;
}
.calc__form.ants-cost-form .form-group-wrapper .input-wrapper:first-child {
/*    max-width: 60.5%;
    flex: 0 0 60.5%;*/
    max-width: 65.5%;
    flex: 0 0 65.5%;
}
.calc__form.ants-cost-form .form-group-wrapper .input-wrapper {
    max-width: 13.5%;
    flex: 0 0 13.5%;
}
.ants-details .calc__result{
    max-width: 64%;
    flex: 0 0 64%;
}
.ants-details .calc__cost {
    max-width: 35%;
    flex: 0 0 35%;
}
.ants-details .calc__cost-wrapper{
    grid-template-columns: repeat(2, 1fr);
}
.ants-details .cost__img img {
    border-radius: 100px;
}



.calc__form.ants-cost-form form .form-group{
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}
.calc__form.ants-cost-form .form-group-wrapper[data-block="building1"] .form-inline:first-child .input-wrapper:nth-child(3) {
    margin-top: 30px;
}
.calc__form.ants-cost-form .form-group-wrapper .input-wrapper:nth-child(3) {
    margin-top: 1px;
    position: relative;
}
.calc__form.ants-cost-form .form-group-wrapper .input-wrapper:nth-child(3):before {
    content: "-";
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    left: -14px;
    color: #878C92;
    width: 5px;
    height: 100%;
    font-size: 20px;
    font-weight: 700;
}
/*.calc__form.ants-cost-form .form-group-wrapper[data-block="crystals"] .input-wrapper:first-child {
    max-width: 82%;
    flex: 0 0 82%;
}*/
.calc__form.ants-cost-form form .form-group .select2.select2-container {
    max-width: 82.7%;
    flex: 0 0 82.7%;
}
.calc__form.ants-cost-form .form-group-wrapper[data-block="crystals"] .input-wrapper:first-child {
/*    max-width: 82.7%;
    flex: 0 0 82.7%;*/
    max-width: 75.7%;
    flex: 0 0 75.7%;
}
.calc__form.ants-cost-form .form-group-wrapper[data-block="crystals"] .input-wrapper {
    max-width: 20.5%;
    flex: 0 0 20.5%;
}
.calc__form.ants-cost-form .form-labels label:nth-child(2) {
    margin-right: 25px;
}
.form-group-wrapper[data-block="evoCurrent"] {
    display: block !important;
}
.calc__form.ants-cost-form .evo-wrap .form-inline {
    display: block;
}
.calc__form.ants-cost-form .evo-wrap .form-inline .form-group-wrapper {
    gap: 0;
    margin-bottom: 20px;
}
.calc__form.ants-cost-form .evo-wrap .form-inline, .calc__form.ants-cost-form .evo-wrap .form-inline .form-group-wrapper[data-block="evoCurrentSibling2"] {
    margin-bottom: 0 !important;
}
.calc__form.ants-cost-form form select, .calc__form form .select2-selection{
    display: flex;
    align-items: center;
}
.calc__form.ants-cost-form form .form-group .select2-selection__rendered img {
    min-width: 50px !important;
    height: 50px !important;
}
.calc__form.ants-cost-form form .form-group-wrapper[data-block="evoCurrentSibling1"] .form-group .select2-selection__rendered img, .calc__form.ants-cost-form form .form-group-wrapper[data-block="evoCurrentSibling2"] .form-group .select2-selection__rendered img {
    margin-right: 15px !important;
}
.calc__form.ants-cost-form form .form-group-wrapper[data-block="evoCurrentSibling1"] .form-group .select2-selection, .calc__form.ants-cost-form form .form-group-wrapper[data-block="evoCurrentSibling2"] .form-group .select2-selection {
    background-image: none;
}
.formBlock {
    border: 1px solid #EEF2F5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.calc__form.ants-cost-form .form-control:disabled {
    background-color: #EEF2F5;
}
.calc__form.ants-cost-form form select, .calc__form form .select2-selection {
    border-radius: 10px;
    color: #878C92;
}
.calc__form.ants-cost-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #878C92;
    line-height: 28px;
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 400;
}
.calc__form.ants-cost-form form input {
    padding: 20px 15px;
}
.calc__form.ants-cost-form .evo-wrap .form-inline .form-group-wrapper[data-block="evoCurrentSibling1"] .select2, .calc__form.ants-cost-form .evo-wrap .form-inline .form-group-wrapper[data-block="evoCurrentSibling2"] .select2{
    pointer-events: none;
}


/* T11 RESULTS */
.t11__results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.tll__resultWrap {
    background: #EEF2F5;
    border-radius: 20px;
    padding: 30px;
}
.tll__resultHead {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tllHead__img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    object-fit: cover;
    object-position: center;
}
.tllHead__text {
    color: #878C92;
    font-family: 'Montserrat';
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.tll__resultBody {
    margin-top: 30px;
}
.tll__resultBody h4 {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Roboto';
    color: #878C92;
    line-height: 1.2em;
}
.tllAmp__box {
    display: flex;
    align-items: center;
    height: 108px;
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    gap: 20px;
    margin-top: 10px;
}
.tllAmp__img img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    object-fit: cover;
    min-width: 80px;
}
.tllAmp__content {
    text-align: left;
}
.tllAmp__content h5 {
    font-family: 'Montserrat';
    font-size: 16px;
    color: #878C92;
    font-weight: 700;
    line-height: 1.2em;
}
.tll__resultFooter {
    margin-top: 30px;
}
.tll__resultFooter h5 {
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 600;
    color: #878C92;
    line-height: 1.2em;
}
.t11__duration {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}
.t11__duration p {
    font-family: 'Roboto';
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 400;
    color: #878C92;
    margin-bottom: 8px;
}
.t11__duration .tll__time {
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 400;
}
.t11__footer {
    border: 1px solid #EEF2F5;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    display: flex;
    gap: 30px;
}
.t11__footer p {
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    color: #878C92;
    margin-bottom: 0;
    line-height: 1.2em;
}

.result_wrapper[data-name="mainInsect"] > .result_content p, .result_wrapper[data-name="mainInsect"] > .result_number p {
    font-size: 18px !important;
    margin-bottom: 10px !important;
}
.result_wrapper[data-name="Feeder1"] > .result_content p, .result_wrapper[data-name="Feeder1"] > .result_number p, .result_wrapper[data-name="Feeder2"] > .result_content p, .result_wrapper[data-name="Feeder2"] > .result_number p {
    font-size: 18px !important;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px !important;
}
.result_wrapper[data-name="Sacrifices"] > .result_content p, .result_wrapper[data-name="Sacrifices"] > .result_number p{
    font-size: 18px !important;
    font-weight: 700;
    margin-top: 30px !important;
}
.sacrifice_row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.evolution-btn, .level-up-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* loader hidden by default */
.evolution-btn .btn-loader, .level-up-btn .btn-loader{
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

/* loading state */
.evolution-btn.is-loading, .level-up-btn.is-loading {
    pointer-events: none;
    opacity: 0.8;
}

.evolution-btn.is-loading .btn-text, .level-up-btn.is-loading .btn-text{
    opacity: 0.6;
}

.evolution-btn.is-loading .btn-loader, .level-up-btn.is-loading .btn-loader{
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.news___card{
    cursor:pointer;
}
.news___card *{
    pointer-events:none;
}

section.antsSec {
    padding-bottom: 20px;
}
.antsSec__wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    gap: 20px;
    align-items: stretch;
}
.antsSec__box {
    padding: 20px;
    border-radius: 20px;
    background: #F8F8F8;
    height: 100%;
    margin-bottom: 20px;
}
.antsSec__box:last-child {
    margin: 0;
}
.antsSec__box h3 {
    color: #03142D;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.antsSec__box ul {
    margin: 0;
}
.antsSec__box ul li {
    list-style: none;
    margin-bottom: 10px;
}
.antsSec__box ul li:last-child {
    margin: 0;
}
.antsSec__box ul li a {
    font-size: 18px;
    font-weight: 400;
    color: #03142D;
    text-decoration: none;
}
.antsSec__box ul li a:hover{
    text-decoration: underline;
}
/* .antsSec__box:last-child h3, .antsSec__box:last-child ul li a {
    opacity: 0.5;
} */

/*  */
@media (max-width: 1050px){
    #menu-main-menu li {
        margin: 0 10px;
    }
    header.site-header > .container {
        padding: 12px 10px;
    }
    h1, h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    .hero__banner-content h1{
        font-size: 45px;
    }
    .game__pkg-content h4 {
        padding: 5px 15px 0 15px;
    }
    .game__pkg-footer {
        padding: 0 15px 3px 15px;
    }
    .game__pkg-footer {
        align-items: flex-start;
        flex-direction: column;
    }
    .game__pkg-iconBox {
        margin-bottom: 10px;
    }
    .game__pkg-iconBox p {
        max-width: 100%;
    }
    .swiper-counter {
        font-size: 22px;
        top: 10px;
    }
    .news___img img {
        height: 280px;
    }
    .footer-games ul li a, #menu-footer-menu li a {
        font-size: 14px;
    }
    .footer-games h4 {
        margin-bottom: 20px;
    }
    nav.footer-nav a {
        font-size: 14px;
    }
    .footer-social ul li a {
        width: 35px;
        height: 35px;
        padding: 5px;
    }
    .footer-social p {
        margin-top: 15px;
    }
    .footer-content {
        padding: 20px;
    }
    .calc__cost-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1200px) and (min-width: 768px){
    header.site-header {
        padding: 0 15px !important;
        margin: 20px 0;
        width: 97% !important;
    }
    section.main__banner .container .row:nth-child(2) {
        display: block;
        width: 100%;
    }
    section.main__banner .container .row:nth-child(2) .col-lg-9, section.main__banner .container .row:nth-child(2) .col-lg-3 {
        width: 100%;
    }
    .main__banner-img img {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .main__banner-card {
        max-width: 100%;
        min-height: 100%;
    }
    .main__banner-card h2 {
        font-size: 50px;
        margin: 10px 0 15px 0;
    }
    section.game__table{
        margin: 20px;
    }
}
@media (min-width: 768px){
    .leve-up-cost .result_wrapper:nth-child(2) .result_content p, .leve-up-cost .result_wrapper:nth-child(2) .result_number p {
      font-weight: 800;
    }
    .calc__mobile__details{
        display: none !important;
    }
    .img-mobile { display: none; }
    .img-desktop { display: block; }
    .game__calc-tabs a.active {
        flex-direction: row;
    }
    .game__calc-tabs a.active span {
        display: block;
        margin-top: 4px;
        margin-right: 5px;
    }
    #menu-main-menu li {
        padding: 7px 10px;
    }
    #menu-main-menu li:last-child {
        margin: 0;
    }
/*    #menu-main-menu li:hover > .sub-menu {
        transform: translateY(5px);
    }*/
    #menu-main-menu .sub-menu li::before{
        background: #007bb0;
    }
}
@media (max-width: 767px){
    .img-mobile { display: block; }
    .img-desktop { display: none; }
    header.site-header > .container {
        padding: 0;
    }
    header.site-header{
        margin: 0 0 15px 0;
        width: 100% !important;
        border-radius: 0;
        padding: 0 0 0 15px !important;
        height: 60px;
    }
    .mobile-menu-wrapper{
        background: #DDE2F5;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-games ul li a, #menu-footer-menu li a {
        font-size: 18px;
    }
    nav.footer-nav a {
        font-size: 18px;
    }
    img.custom-logo {
        max-width: 200px;
        object-fit: contain;
        object-position: left;
    }
    .custom__breadcrumb {
        display: none;
    }
    #menu-main-menu {
        margin: 15px;
        background: currentColor;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        border-radius: 20px;
    }
    #menu-main-menu li {
        width: 100%;
        text-align: left;
        margin: 0 !important;
    }
    #menu-main-menu li a {
        color: #fff;
    }
    #menu-main-menu li.menu-item-has-children > a::after{
        filter: brightness(0) invert(1);
    }
    #menu-main-menu .sub-menu {
        background: #053680;
        min-width: 100%;
        margin-top: 0;
        border-radius: 10px;
    }
    h1, h2 {
        font-size: 24px;
    }
    .hero__banner-content h1 {
        font-size: 26px !important;
        text-align: left;
        padding: 0;
    }
    .hero__banner-content{
        padding: 0 30px;
    }
    .hero__banner {
        justify-content: flex-start;
        padding: 20px;
        min-height: 210px;
    }
    h3 {
        font-size: 30px;
    }
    h4 {
        font-size: 18px;
    }
    .section__padding {
        padding: 50px 0;
    }
    .hero__banner .container, .hero__banner .col-md-12 {
        padding: 0;
    }
    .hero__banner__intro-text p {
        font-size: 16px;
        text-align: left;
    }
    .news___badge {
        width: 47px;
        height: 23px;
        font-size: 16px;
    }
    .game__pkg-img img {
        height: 144px;
    }
    section.game__packages .container .row .col-md-12, section.game__packages .container .row .col-md-6 {
        padding: 0 !important;
    }
    .game__packages .container .row .col-md-6:first-child .game__pkg-card {
        margin-bottom: 30px;
    }
    .tsa___nav{
        position: absolute;
        top: 22px;
        right: 0;
    }
    .tsa___nav .swiper-button-prev {
        right: 64px;
        width: 25px;
        height: 25px;
    }
    .swiper-counter {
        top: -20px;
        font-size: 16px;
        right: 35px;
    }
    .tsa___nav .swiper-button-next {
        width: 25px;
        height: 25px;
    }
    .footer-content {
        height: 100%;
    }
    .copyright {
        height: 100%;
    }
    footer.site-footer .col-md-12{
        padding: 0;
    }
    section.news__section .col-md-12 {
        padding: 0;
    }
    nav.footer-nav {
        margin: 15px 0;
    }
    .footer-content {
        padding: 15px;
    }
    .footer-content .col-md-2, .footer-content .col-md-4, .footer-content .col-md-3{
        padding: 0;
    }
    /**/
    .mobile-nav-icon {
        display: flex;
    }
    .site-navigation {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #DDE2F5;
        width: 100%;
        text-align: center;
    }
    .site-navigation.open {
        display: block;
    }
    .site-navigation ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .site-navigation li {
        margin: 10px 0;
    }
    .game__pkg-status a {
        width: 150px;
        font-size: 16px;
    }
    .footer-games {
        margin-top: 36px;
    }
    .footer-games h4{
        margin-bottom: 10px;
    }
    .breadcrumb__list {
        padding: 0;
        width: 100%;
        overflow-x: auto;
    }
    .breadcrumb__list li {
        min-width: fit-content;
        padding-bottom: 5px;
    }
    .main__banner-img img {
        width: 100%;
        object-fit: cover;
        max-width: 100%;
        min-height: auto;
        border-radius: 8px;
        height: 144px;
        object-position: left;
    }
    .main__banner-card {
        min-height: auto;
        max-width: 100%;
        margin-top: 15px;
    }
    .main__banner-card h2 {
        font-size: 40px;
        margin: 5px 0 10px 0;
    }
    .calc__wrapper {
        display: block;
        border-radius: 20px;
        margin-top: 15px;
        height: auto;
    }
    section.game__table {
        margin: 15px;
    }
    .mobile-nav-icon.active .bar:nth-child(1) {
        transform: translateY(2px) rotate(45deg);
    }
    .mobile-nav-icon {
        width: 20px;
        height: 12px;
    }
    .mobile-nav-icon .bar{
        background-color: var(--primary-color);
        height: 2px;
        width: 20px;
        transition: all 0.3s ease;
    }
    .site-footer {
        padding: 0 !important;
    }
    footer.site-footer .container {
        padding: 0px;
        padding-bottom: 0;
    }
    .footer-content {
        padding: 30px 15px;
        border-radius: 16px;
        position: relative;
        z-index: 2;
    }
    .copyright {
        justify-content: flex-start;
        margin: 0;
        margin-top: -5px;
        padding: 35px 15px 40px 15px;
        border-radius: 0;
        z-index: 0;
        position: relative;
    }
    .copyright p{
        text-align: left;
    }
    .copyright p:first-child {
        margin-bottom: 20px;
    }
    #menu-main-menu {
        margin: 0;
        background: #EDEEF1;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        border-radius: 0;
        text-align: center;
        height: 100vh;
    }
    #menu-main-menu li a {
        color: var(--primary-color);
    }
    #menu-main-menu li {
        text-align: center;
        padding: 0;
    }
    #menu-main-menu li a {
        padding: 24px 0;
    }
    #menu-main-menu li a:hover, #menu-main-menu li::before{
        background: #4285F4;
        border-radius: 8px;
    }
    #menu-main-menu li.menu-item-has-children > a::after {
        filter: initial;
    }
    #menu-main-menu li.menu-item-has-children > a::after{
        right: 15px;
    }
    #menu-main-menu .sub-menu {
        background: #edeef1;
        box-shadow: none;
    }
    #menu-main-menu .sub-menu a {
        color: var(--primary-color) !important;
    }
    #menu-main-menu li .sub-menu > li:hover a{
        color: #fff !important;
    }
    .calc__cat, .calc__text {
        font-size: 16px;
    }

    section.game__table .container {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }
    .game__table-list {
        display: none;
    }
    .game__table-title.active + .game__table-list {
        display: block;
    }
    .game__table-card {
        background: transparent;
        border-radius: 0;
        padding: 0;
        margin-top: 7px;
    }
    .game__table-title {
        background: rgb(255 255 255 / 40%);
        padding: 12px 10px;
        font-weight: 400;
        border-radius: 8px;
        position: relative;
        margin: 0;
    }
    .game__table-title.active {
        background: #ffff;
        color: #03142D;
    }
    .game__table-title:after{
        content: '';
        background: url(/wp-content/uploads/2025/11/tabs-dropdown.svg);
        width: 17px;
        height: 11px;
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);    
    }
    .game__table-list {
        margin: 0;
        padding: 17px 12px 12px 12px;
        background: #F6F7FC;
        margin-top: -5px;
        border-radius: 0 0 8px 8px;
    }
    .game__table-list li a {
        color: #03142D;
        font-weight: 300;
    }
    .calc__cost-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc__cost-wrapper {
        gap: 10px;
    }
    .game__table-card {
        margin-bottom: 0;
    }
    .calc__details {
        display: block;
        margin-top: 50pX;
    }
    .calc__result {
        max-width: 100%;
    }
    .calc__cost {
        max-width: 100%;
        margin-top: 20px;
    }
    .calc__result, .calc__cost {
        padding: 10px;
    }
    .footer-logo, .footer-games, nav.footer-nav, .copyright p {
        text-align: center;
    }
    .footer-social ul {
        justify-content: center;
    }
    .footer-social p {
        margin: 0 auto;
        margin-top: 15px;
        text-align: center;
    }

    #menu-main-menu li:hover > .sub-menu {
        background: #DDE2F5;
        border-radius: 0 0 8px 8px;
    }
    #menu-main-menu .sub-menu {
        position: relative;
        top: 0;
    }
    .calc__social {
        display: none;
    }
    .game__calc-tabs a.active {
        padding: 10px 15px;
        border-radius: 8px;
    }
    .game__calc-tabs a {
        font-size: 16px;
        margin-right: 15px;
    }
    .calc__form form {
        display: block;
    }
    .calc__form form .form-group {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .calc__form form select, .calc__form form .select2-selection {
        padding: 15px 20px;
        font-size: 16px;
        background-size: 15px;
        height: 60px;
        background-position: right 15px center;
        border-radius: 8px;
    }
    .calc__form form button {
        border-radius: 8px;
        font-size: 16px;
        padding: 15px 20px;
    }
    .leve-up-cost .result_wrapper:nth-child(2) .result_content p, .leve-up-cost .result_wrapper:nth-child(2) .result_number p {
        font-size: 16px;
        margin-bottom: 0px;
    }
    .calc__result, .calc__cost {
        padding: 20px;
    }
    .cost__card span {
        font-size: 20px;
    }
    .cost__card {
        min-height: 190px;
    }
    .calc__form form .form-group .select2.select2-container {
        max-width: 75%;
        flex: 0 0 75%;
    }
    .calc__form form select, .calc__form form .select2-selection {
        padding: 15px;
    }
    .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .sub-menu.open {
        max-height: 1000px;
    }
    .evolution-cost .calc__form form, .leve-up-cost .calc__form form {
        display: flex;
        flex-direction: column;
    }

    .evolution-cost .calc__form form .form-group-wrapper:nth-child(1) {
        order: 1;
    }
    .evolution-cost .calc__form form .form-group-wrapper:nth-child(2) {
        display: none;
    } 
    .evolution-cost .calc__form form .form-group-wrapper:nth-child(3) {
        order: 2;
    }
    .evolution-cost .calc__form form .form-group-wrapper:nth-child(4) {
        order: 5;
    }
    .evolution-cost .calc__form form .form-group-wrapper:nth-child(5) {
        order: 3;
    }
    .evolution-cost .calc__form form .form-group-wrapper:nth-child(5) label, .evolution-cost .calc__form form .form-group-wrapper:nth-child(7) label {
        display: none;
    }
    .evolution-cost .calc__form form .form-group-wrapper:nth-child(6) {
        display: none;
    }
    .evolution-cost .calc__form form .form-group-wrapper:nth-child(7) {
        order: 4;
    }
    .evolution-cost .calc__form form .btn:nth-child(9) {
        order: 6;
    }
    .calc__form form input {
        padding: 20px 15px !important;
    }
    .leve-up-cost .result_wrapper:nth-child(1) .result_content p, .leve-up-cost .result_wrapper:nth-child(1) .result_number p {
        font-weight: 800;
    }
    .leve-up-cost .calc__form form .form-group-wrapper:nth-child(1) {
        order: 1;
    }
    .leve-up-cost .calc__form form .form-group-wrapper:nth-child(2) {
        order: 2;
    }
    .leve-up-cost .calc__form form .form-group-wrapper:nth-child(3) {
        order: 3;
    }
    .leve-up-cost .calc__form form .form-group-wrapper:nth-child(4) {
        order: 4;
/*        border-bottom: 1px solid #0052FE;
        margin-bottom: 20px;
        padding-bottom: 5px;*/
    }
    .leve-up-cost .calc__form form .btn:nth-child(5) {
        order: 5;
    }
    .calc__details.evo__desktop{
        display: none !important;
    }
    .select2-results__option--selectable {
        font-size: 14px;    
    }
    .calc__form form input {
        border-radius: 8px;
        font-size: 16px;
        height: 60px;
    }
    .calc__mobile__details{
        display: block;
    }
    .calc__mobile__tabs {
        display: flex;
    }
    .calc__mobile__details .calc__result, .calc__mobile__details .calc__cost {
        background: transparent;
        padding: 0;
    }
    .calc__mobile__details .cost__card {
        background: #F6F7FC;
    }
    .calc__mobile__details .calc__result__tab {
        margin-left: 20px;
    }
    .calc__mobile__details h4 {
        color: rgb(3 20 45 / 40%);
    }
    .calc__mobile__details h4.active, .calc__mobile__details h4:hover {
        color: var(--primary-color);
        border-bottom: 3px solid var(--primary-color);
        cursor: pointer;
    }
    .tab-content.hidden {
        display: none;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    .tab-content.active {
        display: block;
        height: auto;
    } 
    .calc__cost.tab-content, .calc__result.tab-content{
        margin-top: 25px;
        border-radius: 0;
    } 
    .result_wrapper {
        margin-top: 0;
        border-radius: 0;
        margin-bottom: 15px;
    }
    .result_wrapper:last-child{
        margin-bottom: 0;
    }
    .evolution-cost .calc__cost-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }  
    .select2-container--default .select2-results>.select2-results__options {
        max-height: 300px;
    }
    .select2-container--open .select2-dropdown--below{
        margin-top: 45px;
    }

    .select2-results__option--selectable {
        margin-right: 0;
    }
    .select2-results__option {
        display: flex !important;
        align-items: center !important;
    }
    .select2-results__option img {
        width: 24px !important;
        height: 24px;
        margin-right: 6px !important;
        flex-shrink: 0;
        border-radius: 100px !important;
    }
    .select2-results__option span {
        font-size: 12px;
        line-height: 1.4em;
        display: inline-flex;
        align-items: center; 
    }
    .calc__form form select, .calc__form form .select2-selection {
        font-size: 14px;
    }
    .calc__form form button {
        font-size: 14px;
    }
    .form-group-wrapper {
        max-width: 100%;
    }
    .select2-container--open .select2-dropdown--below {
        margin-top: 0;
    }
    #menu-main-menu li::before {
        transition: none;
    }
    .form-labels label:nth-child(2){
        margin-right: 30px;
    }
    .result_content{
        max-width: 100%;
    }
    .result_content p, .result_number p {
        font-size: 16px;
    }
    /* T11 */
    .calc__form.ants-cost-form .form-group-wrapper {
        display: block;
    }
    .calc__form.ants-cost-form .form-group-wrapper[data-block="building1"] .form-inline:nth-child(2) .input-wrapper label{
        display: none;
    }
    .calc__form.ants-cost-form .input-style p {
        font-size: 14px;
        line-height: 1em;
        margin-top: 5px;
    }
    .calc__form.ants-cost-form .input-style span.formsubheading{
        font-size: 12px;
    }  
    .ants-cost-form h4 {
        margin: 15px 0;
        font-size: 18px;
    } 
    .calc__form.ants-cost-form .input-content-wrapper {
        left: 8px;
    }
    .inner-text {
        margin-left: 5px;
    }
    .calc__form.ants-cost-form .inner-img img {
        width: 30px;
        height: 30px;
        border-radius: 100px;
    }
    .calc__form.ants-cost-form .form-group-wrapper[data-block="evoCurrent"] {
        flex: 0 0 100%;
    }
    .calc__form.ants-cost-form .form-group-wrapper[data-block="crystals"] .form-inline:nth-child(2) {
        margin-top: 15px;
    }
    .calc__form.ants-cost-form form .form-group .select2.select2-container {
        max-width: 79%;
        flex: 0 0 79%;
    }
    .calc__form.ants-cost-form .form-group-wrapper .input-wrapper:nth-child(3) {
        margin-left: -5px;
        margin-top: 1px;
    }
    .row.soldier-ants .game__calc-wrapper {
        padding: 15px;
    }
    /**/
    .formWrapper {
        display: block;
    }
    .formBlock1, .formBlock2 {
        max-width: 100%;
    }
    .form-inline {
        gap: 10px;
        margin-bottom: 15px;
    }
    .formBlock {
        padding: 15px;
        margin-bottom: 15px;
    }
    .calc__form.ants-cost-form .form-group-wrapper .input-wrapper {
        max-width: 17%;
        flex: 0 0 17%;
    }
    .calc__form.ants-cost-form .form-group-wrapper .input-wrapper {
        max-width: 18%;
        flex: 0 0 18%;
    }
    .calc__form.ants-cost-form .form-group-wrapper .input-wrapper:nth-child(3):before {
        top: 75%;
        left: -15px;
    }
    .calc__form.ants-cost-form form .form-group-wrapper label {
        font-size: 14px;
    }
    .calc__form.ants-cost-form .form-group-wrapper[data-block="building1"] .form-inline:first-child .input-wrapper:nth-child(3) {
        margin-top: 25px;
    }
    .calc__form.ants-cost-form .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 14px;
    }
    .calc__form.ants-cost-form form .form-group {
        gap: 10px;
    }
    .calc__form.ants-cost-form form .form-group-wrapper[data-block="evoCurrentSibling1"] .form-group .select2-selection__rendered img, .calc__form.ants-cost-form form .form-group-wrapper[data-block="evoCurrentSibling2"] .form-group .select2-selection__rendered img {
        margin-right: 5px !important;
    }
    .calc__form.ants-cost-form form .form-group .select2-selection__rendered img {
        min-width: 30px !important;
        height: 30px !important;
        border-radius: 100px !important;
        margin-right: 2px !important;
    }
    .calc__form.ants-cost-form .form-labels label:nth-child(2) {
        margin-right: 20px;
    }
    /**/
    .t11__results {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 30px;
    }
    .tll__resultWrap {
        border-radius: 8px;
        padding: 20px;
    }
    .tllHead__text {
        font-size: 20px;
    }
    .tll__resultBody h4 {
        font-size: 18px;
    }
    .tllAmp__box {
        padding: 15px;
        gap: 10px;
    }
    .tll__resultFooter{
        margin-top: 20px;
    }
    .tll__resultFooter h5 {
        font-size: 18px;
    }
    .t11__duration p {
        font-size: 18px;    
        margin-bottom: 0;
    }
    .t11__duration .tll__time {
        font-size: 16px;
    }
    .t11__footer {
        display: block;
    }
    .t11__free {
        margin-bottom: 15px;
    }
    .tllAmp__img img{
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    .tllHead__img img {
        width: 80px;
        height: 80px;
    }
    .calc__form.ants-cost-form .form-group-wrapper .input-wrapper:first-child {
        max-width: 50%;
        flex: 0 0 50%;
    }
    .calc__form.ants-cost-form .formBlock1 .form-group-wrapper .form-inline {
        gap: 26px;
    }
    .calc__form.ants-cost-form .form-group-wrapper[data-block="crystals"] .input-wrapper:first-child {
        max-width: 72%;
        flex: 0 0 72%;
    }
    .calc__form.ants-cost-form .form-group-wrapper[data-block="crystals"] .input-wrapper {
        max-width: 23.5%;
        flex: 0 0 23.5%;
    }

    .tier-head h2{
        font-size: 22px;
    }
    .tier-head p {
        font-size: 16px;
    }
    .tier__tabs a {
        font-size: 16px;
        width: 110px;
        height: 38px;
    }
    section.game__table .container .tierData{
        padding: 20px;
    }
    .tierData > div .tierName a {
        font-size: 20px;
    }
    .tierData > div {
        padding: 20px;
    }
    .tierlists .image__group__wrapper .image-group {
        height: 100%;
        padding: 10px;
        max-width: 100%;
        justify-content: space-between;
        gap: 0;
    }
    .tierData > div .tierName {
        width: 100%;
        margin-bottom: 0px;
        max-width: 16%;
        margin-right: 10px;
    }
    .tierlists .image__group__wrapper .image-group img {
        height: auto;
        max-width: 32%;
    }
    .tierlists .image__group__wrapper {
        gap: 10px;
    }
    .tierlists {
        margin-top: 15px;
    }
    #menu-main-menu .sub-menu li::before {
        border-radius: 0;
        border-top: 1px solid #fff;
    }
    .antsSec__wrapper {
        padding: 20px;
        border-radius: 16px;
    }
    .antsSec__box {
        padding: 15px;
        border-radius: 8px;
    }
    .antsSec__box ul {
        padding-left: 15px;
    }
    .antsSec__box h3 {
        font-size: 20px;
    }
    .antsSec__box ul li {
        margin-bottom: 5px;
    }
    .antsSec__box ul li a {
        font-size: 16px;
    }
}
/* Hamza CSS */
.single-blog {
    max-width:730px;
    margin: auto;
    padding: 20px;
	margin-bottom:20px;
	
}
.single-blog p{
	color:#666C71;
	font-size:18px;
}
.single-blog li{
	color:#666C71;
	font-size:18px;
}
.single-blog h2{
     font-size:26px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}
.main-breadcrumb{
    max-width:730px;
    margin: auto;
    padding: 0px 20px 10px 12px;

}
.breadcrumb span > span {
    margin: 0 8px;   /* Adjust spacing as needed */
}
.breadcrumb a {
    color: #878C92;
    font-size: 16px;
    text-transform: capitalize;
	text-decoration:none;
	font-weight: 400;
}
.breadcrumb_last {
    font-size: 16px;
	font-weight:700;
	 color: #878C92;
}



/* Meta Row */
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 15px;
}

/* Featured Image */
.featured-image img {
    width: 100%;
    border-radius: 4px;
}

/* Quick Summary Box */
.quick-summary {
    border: 1px solid #E2AA4F;
    margin-top: 20px;
	border-radius:4px;
	margin-bottom:8px;
}

.quick-summary-title {
    background: #E2AA4F;
    text-align: center;
    font-weight: bold;
    padding: 8px;
	font-size:20px;
	color:#03142D;
	text-transform: uppercase;
}

.quick-summary-content {
   padding: 15px 15px 0px 15px;
}
.quick-summary-content ul{
    padding-left: 0;
}
.quick-summary-content ul li{
	list-style: none;
    padding-left: 0;
}
.quick-summary-content ul li {
    position: relative;
    padding-left: 19px;
    margin-bottom: 7px;
}

.quick-summary-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top:11px;
    width: 12px;
    height: 9px;
    background-image: url('/wp-content/uploads/2026/03/Vector-5-Stroke.svg'); /* change path */
    background-size: contain;
    background-repeat: no-repeat;
}

.mian-single-blog{
    background-color: #fff;
    border-radius: 20px;
}
.highlight-icon {
    padding: 15px 0px;
}
/* dynamic content */
.content-section{
	padding-top:30px;
}
.content-section h2{
	font-size:20px;
	padding-bottom:10px;	
	font-family: 'Roboto', sans-serif;
}
.section-content p {
    margin-bottom: 10px;
}
.highlight-box {
    display: flex;
    justify-content: space-between;
	align-items: center;
    background-color: #EEF2F5;
    border-radius: 4px;
    padding: 0px 15px 0px 15px;
	margin: 15px 0px;
}
.highlight-icon img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 4px;
}
.highlight-wrapper p {
    margin-bottom: 13px;
}
.section-content p {
    margin-bottom: 5px;
}
.highlight-text ul{
    padding-left: 0;
	margin-bottom:0;
}
.highlight-text ul li{
	list-style: none;
    padding-left: 0;
}
.highlight-text ul li {
    position: relative;
    padding-left: 19px;
    margin-bottom: 8px;
}

.highlight-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top:11px;
    width: 12px;
    height: 9px;
    background-image: url('/wp-content/uploads/2026/03/Vector-5-Stroke.svg'); /* change path */
    background-size: contain;
    background-repeat: no-repeat;
}
.highlight-box ol {
    padding-left: 19px;
    padding-top: 12px;
}
.season-notice {
    border: 1px solid #E2AA4F;
    border-radius: 4px;
    padding: 16px 16px 4px 16px;
	margin-top:40px;
	margin-bottom:20px;
}
.season-notice a {
    color: #E2AA4F;
}
span.post-date {
    color: #878C92;
	font-family: Inter, sans-serif;
	display:flex;
}
.viewscount{
	padding-left:2px;
}
.post-date span {
    padding-right: 9px;
    font-size: 16px;
}

.heateor_sss_facebook .heateor_sss_svg {
    background-image: url('/wp-content/uploads/2026/03/Frame-1321315427.svg') !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 50% !important; /* keep circular */
}

/* Optionally hide the existing SVG */
.heateor_sss_facebook .heateor_sss_svg svg {
    display: none !important;
}
.share-buttons{
   display: flex;
   align-items: center;
   gap: 11px;
   color: #878C92;	
	font-size:16px;
}

.section-content p a strong {
    color: #E2AA4F;
}
.section-content p a {
    text-decoration:none;
}
.highlight-wrapper p a strong{
	color: #E2AA4F;
}
.highlight-wrapper p a {
	text-decoration:none;
}
.honor-mian {
    display: flex;
    justify-content: space-evenly;
    width: 553px;
    margin: 0 auto;
    padding: 16px 0px;
    align-items: center;
}
.outer-honor {
    background-color: #EEF2F5;
	border-radius:4px;
	margin-top: 14px;
	margin-bottom:10px;
}

/*  table css */
.table-container table {
    text-align: center !important;
}
.table-container table td, table th{
	padding:4px !important;
}
.table-container table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th{
	background-color:white;
}
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

.table-container table {
    width: 100%;
    min-width: 301px; /* Prevents squishing */
    border-collapse: collapse;
}
thead {
    background-color: #EEF2F5;
}
p.onmobile {
    display: none;
}

#scrollTopBtn {
	    background-color: #00000000;
    border-radius: 131px;
    padding: 0px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
}

#scrollTopBtn img {
    pointer-events: none;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    transform: translateY(-4px);
}
.single-blog {
    overflow: visible; /* important */
}
.table-container.colortable {
    overflow: visible;
}
.footer-logo{
   margin-left:10px;	
}
.footer-games{
   margin-left:-5px;	
}
a.news___card {
    text-decoration: none;
}
@media (min-width: 1200px) {
.single-blog .table-container.colortable table {
    min-width: 1180px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
}

@media (max-width: 1198px) {
.single-blog .table-container.colortable table {
    min-width: 1150px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
}
@media (max-width: 1150px) {
.single-blog .table-container.colortable table {
    min-width: 1100px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
}
@media (max-width: 1100px) {
.single-blog .table-container.colortable table {
    min-width: 1050px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
}


@media (max-width: 1080px) {
.single-blog .table-container.colortable table {
    min-width: 1000px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
}

@media (max-width: 1024px) {
.single-blog .table-container.colortable table {
    min-width: 1000px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
}
@media (max-width: 995px) {
.single-blog .table-container.colortable table {
    min-width: 950px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
}
@media (max-width: 980px) {
.single-blog .table-container.colortable table {
    min-width: 878px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
}

/* Mobile */
@media (max-width: 768px) {
	.table-container.colortable {
    overflow-x: auto;
    max-width: 100%;
}
	.table-container{
	-webkit-overflow-scrolling: touch;
	}
	   	.single-blog .table-container.colortable  table td:first-child,
   	.single-blog .table-container.colortable  table th:first-child {
        position: sticky;
        left: -2px;
        background: #fff;
        z-index: 2;
    }
	.single-blog .table-container.colortable table {
		min-width: 100%;
		position: relative;
		left: 0;
		transform: translateX(0%);
}
    #scrollTopBtn {
        right: 20px;
    }

    #scrollTopBtn img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 600px) {
	.footer-social {
    margin-top: 21px;
}
	
	span.post-date {
	flex-direction: column;
}
	.viewscount{
	padding-left:0px;
}
	
	p.onmobile {
    display: none;
    line-height: 42px;
}
	.honor-mian{
		flex-direction:column;
		width:auto;
		padding: 15px 19px;
	}
	.share-buttons {
    gap: 0px;
    flex-direction: column;
}
	.featured-image {
		height:340px;
	}
	.featured-image img{
		width:100%;
		height:100%;
	object-fit:cover;
		object-position:center;
	}
	.highlight-box{
		    flex-direction: column;
	}
	.guide.container.mian-single-blog {
    display: none;
}
	.footer-social p a{
		    margin-left: -26px;
	}
}