:root {
    --base: #ff8503;
    --base-secondary: #ff7843;
    --base-rgba: rgba(255, 133, 3, 0.6);
    --google-red: #d93025;
    --google-hover: #bb2419;
    --facebook-blue: #3b5998;
    --facebook-hover: #4c70ba;
}

@font-face {
    font-family: "Cyberverse";
    src: url("../fonts/CyberverseBold.otf") format("truetype");
}

@font-face {
    font-family: "Cyberverse400";
    src: url("../fonts/CyberverseNormal.otf") format("truetype");
}

@font-face {
    font-family: "KdamThmorPro";
    src: url("../fonts/KdamThmorProRegular.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    /* background: url(../images/body.jpg); */
    /* background-size: cover; */
    /* background-position: center; */
    background-color: #181A24;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: .75rem;
    color: #828099;
}

/* Add this CSS to your stylesheet */

/* Style for the navbar link */
.navbar-link {
    display: flex;
    align-items: center;
    padding: 10px 15px; /* Adjust padding to add space around the text */
    text-decoration: none;
    color: #fff; /* Text color */
    background-color: #007bff; /* Default background color */
    border-radius: 5px; /* Optional: Add border radius for rounded corners */
    transition: background-color 0.3s; /* Add a smooth transition effect for background color */
    font-weight: 500;
}

/* Hover effect */
.navbar-link:hover {
    background-color: #0056b3; /* Change the background color on hover */
    color: #fff;
}

/* Optional: Text Styles */
.navbar-link span {
    font-weight: 500;
}

/* Add your styles for the product detail page here */
    #backArrow {
      display: none; /* Initially hide the arrow */
      cursor: pointer;
      font-size: 24px;
      color: #333;
    }

h1,
h2,
h3,
h4,
h5 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

h1 {
    font-size: 22px;
}

h2 {
    font-size: 0.875rem;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: .75rem;
    font-weight: 600;
}

h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24.38px;
    letter-spacing: -0.07999999821186066px;
    text-align: left;  

}

a {
    text-decoration: none;
}

.btn:focus {
    -webkit-box-shadow: 0 0 0 0rem var(--base);
    box-shadow: 0 0 0 0rem var(--base);
}

/* Define the custom class */
.itempack {
    flex: 0 0 auto;
    width: 33.33333333%;
    padding: 5px; /* You can adjust the padding as needed */
}

/* For large screens (desktop) */
@media (min-width: 1200px) {
    .itempack {
        width: 20%; /* Display 3 items on desktop */
    }
}

/* For medium screens (tablets) */
@media (max-width: 1199px) and (min-width: 768px) {
    .itempack {
        width: 50%; /* Display 2 items on tablets */
    }
}

/* For small screens (mobile) */
@media (max-width: 767px) {
    .itempack {
        width: 50%; /* Display 1 item on mobile */
    }
}
    /* start Css for cards */
.topup-section .img-box,
.popular-section .img-box,
.giftcard-section .img-box,
.voucher-section .img-box {
    margin: 0;
    position: relative;
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack children vertically */
    overflow: hidden; /* Hide overflow content */
    transition: transform 0.3s; /* Add smooth transition */
}

.popular-section .img-box,
.latest-section .img-box,
.topup-section .img-box,
.voucher-section .img-box,
.giftcard-section .img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.img-box a {
    display: flex;
    flex-direction: column;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s; /* Add smooth transition */
}

.tags {
    margin-top: auto; /* Push tags to the bottom */
    transition: opacity 0.3s; /* Add smooth transition */
}

p.pt-2.mb-0 {
    margin-top: auto; /* Push title to the bottom */
    color: #fff; /* Example text color */
    transition: opacity 0.3s; /* Add smooth transition */
}
/* start card new style */

/* Hover effect - Changes text color */
p.homeitemtitle:hover {
    color: #fff;
    transition: opacity 0.3s;
}
p.homeitemtitle {
    margin: 0;
    font-size: 15px !important; /* Default font size */
    padding: 10px 4px !important; /* Default padding */
    color: #eaeaeae3 !important;
}

@media only screen and (max-width: 600px) {
    p.homeitemtitle {
        font-size: 11px !important; /* Adjusted font size for mobile */
        padding: 8px 2px !important; /* Adjusted padding for mobile */
    }
}


.looop {
    background: #202432;
    text-align: center;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.img-box:hover .tags,
.img-box:hover p.pt-2.mb-0 {
    opacity: 0.8; /* Reduce opacity on hover */
}

/* End Css for cards */

/* Start Css for loop */
.looplist {
    display: grid;
    grid-gap: 15px;
}

/* For larger screens (greater than 900px), show 5 columns */
@media (min-width: 900px) {
    .looplist {
        grid-template-columns: repeat(6, minmax(125px, 1fr));
    }
}

/* For medium-sized screens (600px to 899px), show 4 columns */
@media (min-width: 600px) and (max-width: 899px) {
    .looplist {
        grid-template-columns: repeat(4, minmax(180px, 1fr));
    }
}

/* For smaller screens (up to 599px), show 3 columns */
@media (max-width: 599px) {
    .looplist {
        grid-template-columns: repeat(3, minmax(110px, 1fr));
    }
}
/* End Css for loop */
/* start Css for price */
.pricetag {
    width: 100%;
    background: #1B1D24;
    text-align: center;
    padding: 10px;
    margin-bottom: -20px;
    border-radius: 1px;
    font-weight: 700;
}
/* End Css for price */
/* Srat Css for Warpertop */
.warpertop {
    display: flex;
    max-height: 100px;
    overflow-x: auto;
}
.a,.linkbtn{
    padding: 4px 10px;
    height: 35px;
    min-width: 100px;
    max-width: 138px;
    text-align: center;
    color: #121212;
    border-radius: 50px;
    margin-right: 4px;
    font-size: 0.688rem;
    font-weight: 500;
    line-height: 25px;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
/* End Css for Warpertop */
/* Start for item details info */
.region,.secure{
    font-size: 10px;
    border: 1px solid #cccccc1a;
    border-radius: 50px;
    padding: 5px 10px;
    background: var(--bs-primary);
    color: #fff;
    /* background: rgb(2,0,36);
    background-image: linear-gradient(to left, #434343, #333333, #242424, #161616, #000000);*/
}
.secure{
    margin-left: 5px;
}
.icondesc, .icondetails{
    width: 16px;
    padding-right: 3px;
}
/* End for item details info */


/* Start Social Buttons */
.social_login {
    background: #121212;
    width: 50%;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

@media (max-width: 767px) {
    .social_login {
        width: 100%;
        margin-right: 0; /* Remove margin-right on mobile */
    }
}

.socialelements{
    display: flex;
    align-items: center;
    justify-content: center;
}
  .social-button {
    font-weight: 600;
    padding: 10px 20px;
    font-size: .75rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #fff; /* Text color */
    text-decoration: none; /* Remove default link underline */
    display: inline-block;
    margin-left: 10px;
  }

  .google-social-button {
    background-color: var(--google-red);
    width: 100%;
  }

  .google-social-button:hover {
    background-color: var(--google-hover);
    color: #eeeeeee6;
  }

  .facebook-social-button {
    background-color: var(--facebook-blue);
    width: 100%;
  }

  .facebook-social-button:hover {
    background-color: var(--facebook-hover);
    color: #eeeeeee6;
  }

  .social-button img {
    height: 24px;
    width: 24px;
    margin-right: 10px;
    vertical-align: middle;
  }

  .line-container {
     display: flex;
     align-items: center;
     justify-content: center;
        }

  .line {
     flex: 1;
     border-top: 1px solid #ccc;
     margin: 0px;
        }

/* End Social Buttons */


.game-btn,
.game-btn-sm {
    color: var(--bs-gray-dark);
    position: relative;
    text-transform: uppercase;
    width: 270px;
    display: inline-block;
    text-decoration: none;
    height: 60px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    transition: .4s;
    cursor: pointer;
    /* background: linear-gradient(90deg,rgba(2,0,36,1) 0%,rgba(253,200,48,1) 0%,rgba(243,115,53,1) 100%); */
    line-height: 3;
}

.game-btn img,
.game-btn-sm img {
    position: relative;
    right: -10px;
    padding-bottom: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

/* .game-btn::before,
.game-btn-sm::before {
    content: "";
    position: absolute;
    background: var(--base-secondary);
    width: 110%;
    height: 100%;
    left: -80%;
    bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
    -webkit-transform: skewX(-37deg);
    transform: skewX(-37deg);
} */

.game-btn:hover,
.game-btn-sm:hover {
    /* background-color: var(--base); */
    background-color: #F5CD4B;
}

.game-btn:hover img,
.game-btn-sm:hover img {
    right: -20px;
}

.game-btn:hover::before,
.game-btn-sm:hover::before {
    left: 0;
}

.game-btn-sm {
    width: 155px;
    height: 45px;
}

.header-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 5px 50px 5px;
    text-align: center;
}

.header-text h2 {
    text-transform: uppercase;
    position: relative;
}

.header-text-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 5px 50px 5px;
}

.header-text-link h2 {
    text-transform: uppercase;
}

.header-text-link a {
    color: var(--base);
    text-decoration: none;
    text-transform: uppercase;
}

.header-text-link a img {
    position: relative;
    right: -10px;
    padding-bottom: 2px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.header-text-link a i {
    position: relative;
    top: 2px;
    right: -5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 20px;
}

.header-text-link a:hover img {
    right: -20px;
}
.header-link {
    padding-top: 30px;
}

.category-container {
    width: 100%;
}

.category-btn {
    /* font: bold 12px Arial; */
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    text-decoration: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 0;
    height: 40px;
    border-radius: 20px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.25rem!important;
    /* border-top: 1px solid #CCCCCC;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #CCCCCC; */
}

.category-btn:hover {
    /* background: red; */
    color: var(--base);
    //background: var(--base);
    border: 1px solid var(--base);

}

.category-btm {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    height: 35px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: none;
}

.category-btm a{
    /* background: linear-gradient(125deg, var(--base-secondary) 36%, var(--base) 36%); */
    /* background: var(--base-secondary); */

    height: 35px;
    color: #fff;

    /* padding: 10px; */
    /* width: 170px; */

    text-decoration: none;



    cursor: pointer;
    /*
    position: relative;

    width: 270px;
    display: inline-block;



    border-radius: 10px;
    font-size: 16px;
    */
    /* -webkit-clip-path: polygon(9% 0, 100% 0, 100% 0, 100% 70%, 91% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(9% 0, 100% 0, 100% 0, 100% 70%, 91% 100%, 0 100%, 0 100%, 0% 30%); */
}

/* .category-btn:hover{

    background-color: #F5CD4B;
} */


/* .header-link a{
    padding-left: 5px;
    text-decoration: none;

} */
.header-text-service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 5px 10px 5px;
}

.load-more-link {
    width: 100%;
    text-align: center;

}

.load-more-link a{
    color: var(--base);
    text-decoration: none;
    text-transform: uppercase;
}

.navbar {
    padding: 10px 30px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background: #14141a;
    backdrop-filter: blur(10px);
}

.navbar .navbar-brand img {
    max-width: 140px;
    max-height: 70px;
}

.navbar .navbar-toggler {
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 0;
    background: var(--base-secondary);

}

.navbar .navbar-toggler:focus {
    -webkit-box-shadow: 0 0 0 0rem;
    box-shadow: 0 0 0 0rem;
}

.navbar .navbar-collapse .navbar-nav .nav-item {
    margin: 7.5px;
}
.navbar .navbar-collapse .navbar-nav > .nav-item {
    margin-right: 20px;
}
.header{
    width: 100%;
}
@media (min-width: 992px) {
    .header .nav-item.search-form {
        margin-right: -40px;
    }
}
@media (max-width: 991px) {
    .header .nav-item.search-form {
        margin-bottom: 10px;
    }
}
.header .nav-item.search-form input {
    background: #181A24;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    width: 300px;
    padding-left: 30px;
    color: #828099;
}

@media (max-width: 991px){
    .header .nav-item.search-form input {
        width: auto;
    }
}
.header .nav-item.search-form input:focus {
    box-shadow: none;
}
.header .nav-item.search-form .input-group-text {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background: #181A24;
    border: #181A24;
    background: #181A24;
    position: relative;
}
.header .nav-item.search-form .input-group-text:after {
    content: " ";
    position: absolute;
    border-left: 1px #6c757d solid;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    height: 50%;
    margin-top: auto;
    margin-bottom: auto;
    z-index: 3;
}
.header .nav-item.search-form button {
    background-color: transparent;
    border: navajowhite;
}
@media (max-width: 991px){
    .header .logo{
        padding: 5px 0 10px;
    }
    .header .user-account{
        padding: 5px 0 10px;
    }
    .header .user-account .btn{
        padding: 0.25rem 0.6rem;
    }
}

.navbar .navbar-collapse .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    background: rgba(0, 0, 0, 0.8);
    display: block;
    padding: 0;
    border: none;
}

/* .navbar .navbar-nav .input-group .input-group-text button { */
.search-box .input-group .input-group-text button {
    background: var(--base-secondary);
    height: 100%;
    width: 100%;
    border: none;
}

.search-box .input-group .input-group-text {
/* .navbar .navbar-nav .input-group .input-group-text { */
    padding: 0px !important;
    border: none !important;
}



.navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle {
    width: 120px;
}

.navbar .navbar-collapse .navbar-nav .nav-item.dropdown i {
    margin-left: 5px;
}

.navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    margin-left: 0;
    vertical-align: 0;
}

.navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu {
    display: none;
    border-radius: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #f7f7f8;
    font-size: .75rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--base);
    background: transparent;
}

.navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--base);
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: inline-block;
    min-width: 100px;
    height: 40px;
    padding-top: 10px;
    text-align: center;
    position: relative;
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0px;
    left: 0;
    border: 2px solid transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 0, 100% 70%, 88% 100%, 0 100%, 0 100%, 0 30%);
    clip-path: polygon(12% 0, 100% 0, 100% 0, 100% 70%, 88% 100%, 0 100%, 0 100%, 0 30%);
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active::after, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::after {
    color: var(--base);
    border: 2px solid var(--base);
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: var(--base);
}

.navbar .navbar-text {
    display: flex;
    justify-content: end;
}

.navbar .navbar-text .notification-icon {
    margin-right: 20px;
    background: none;
    padding: 0;
    border: none;
}

.navbar .navbar-text .notification-icon .badge {
    position: relative;
    right: 14px;
    bottom: 10px;
    background: var(--base);
    color: #fff;
    border-radius: 10px;
    line-height: 0.9;
    padding: 5px 6px 3px 6px;
}
.user-account{
    text-align: right;
}
.user-account .user-panel{
    position: relative;
}
.navbar .navbar-text .user-icon,
.navbar .user-account .user-icon
{
    background: none;
    padding: 0;
    border: none;
}

.navbar .navbar-text .game-btn-sm {
    font-size: .75rem;
}

.navbar .navbar-text .game-btn-sm img {
    left: -10px;
}

.navbar .user-panel .user-drop-dropdown {
    /*background: #fff;*/
    background: #202432;
    background-size: cover;
    position: absolute;
    top: 43px;
    width: 180px;
    min-height: 140px;
    right: 0;
    padding: 10px 0 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    z-index: 3;
}

.navbar .user-panel .user-drop-dropdown ul {
    padding-left: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.navbar .user-panel .user-drop-dropdown ul li {
    list-style: none;
    text-align: left;
}

.navbar .user-panel .user-drop-dropdown ul li a {
    /*color: #0b0231;*/
    color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding: 10px 20px;
    display: block;
    position: relative;
}
.navbar .user-panel .user-drop-dropdown ul li a:hover {
    color: #fff;
    background: var(--base);
}

/*.navbar .user-panel .user-drop-dropdown ul li a:hover {*/
/*    color: var(--base);*/
/*}*/

/*.navbar .user-panel .user-drop-dropdown ul li a:hover {*/
/*    background-color: rgb(24 13 30 / 60%);*/
/*    color: #fff;*/
/*}*/


.navbar .user-panel:hover .user-drop-dropdown {
    visibility: visible;
    opacity: 1;
}

.navbar .notification-panel {
    position: relative;
}

.navbar .notification-panel .notifications {
    background: #202432;
    /*border: 1px solid var(--base);*/
    background-size: cover;
    position: absolute;
    top: 43px;
    width: 300px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 10px;
    z-index: 3;
    overflow: hidden;
    padding: 15px 10px 0 10px;
}

.navbar .notification-panel .notifications .notification:last-child {
    padding-bottom: 10px;
}

.navbar .notification-panel .notifications .notification-box {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 350px;
}


.navbar .notification-panel .notifications .notification-box::-webkit-scrollbar {
    width: 5px;
    height: 80px;
}

.navbar .notification-panel .notifications .notification-box::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 100px;
}

.navbar .notification-panel .notifications .notification-box::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 6px;
}

.navbar .notification-panel .notifications .notification-box::-webkit-scrollbar-thumb:hover {
    background: var(--base);
}

.navbar .notification-panel .notifications .notification {
    padding: 10px 15px 0;
    width: 100%;
    text-align: left;
    align-items: center;
    border-right: 5px;
    transition: all 0.2s ease-in-out;
}
.navbar .notification-panel .notifications .notification:hover {
    background-color: rgba(13, 153, 255, 0.05);
    cursor: pointer;
    border: none;
}

.navbar .notification-panel .notifications .notification a {
    margin-bottom: 5px;
    display: inline-block;
    color: #fff;
}

.navbar .notification-panel .notifications .notification span {
    color: var(--base);
    font-size: 0.688rem;
}

.navbar .notification-panel .notifications .notification .img-box {
    background: var(--base);
    height: 32px;
    width: 63px;
    padding: 7px;
    border-radius: 5px;
    margin-right: 10px;
}

.navbar .notification-panel .notifications .notification .img-box i {
    font-size: 17px;
    color: #fff;
}

.navbar .notification-panel .notifications .clear-notification {
    /*position: absolute;*/
    /*border-top: 1px solid var(--base);*/
    color: var(--base);
    text-align: center;
    padding: 15px 20px 10px 20px;
    display: inline-block;
    bottom: 0;
    left: 0;
    width: 110%;
    margin-top: 21px;
    margin-left: -10px;
    background: #2E3447;
    border-top: 1px solid #70788
}

.navbar .notification-panel:hover .notifications {
    visibility: visible;
    opacity: 1;
}

.navbar .notification-icon:hover + .notification-panel {
    opacity: 1;
    z-index: 0;
}

.navbar.active {
    background: #14141a;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.banner {
    height: 100vh;
}

.banner .text-box {
    text-align: center;
    margin-bottom: 300px;
}

.banner .text-box h1 {
    font-size: 100px;
    text-shadow: -4px 6px #ff7843;
    letter-spacing: 10px;
    margin-bottom: 30px;
}

.banner .text-box h5 {
    text-transform: uppercase;
    letter-spacing: 30px;
    text-shadow: -15px 3px rgba(255, 255, 255, 0.1);
}

.search-area {
    padding: 150px 0 100px 0;
}

.search-area .input-box {
    margin: 0 5px;
    padding: 75px;
    background: url(../images/abstract-orange-shapes.jpg);
    background-size: cover;
    position: relative;
    border-radius: 10px;
}

.search-area .input-box .spartan {
    max-width: 400px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-radius: 10px;
    z-index: 0;
}

.search-area .input-group {
    max-width: 600px;
    margin: auto;
    z-index: 1;
}

.search-area .input-group .form-control {
    border: none;
    background: rgba(0, 0, 0, 0.4);
    caret-color: #202432;
    padding: 12px 24px;
}

.search-area .input-group .form-control:focus {
    color: #fff;
    border-color: var(--base);
    -webkit-box-shadow: 0 0 0 0rem var(--base);
    box-shadow: 0 0 0 0rem var(--base);
}

.search-area .input-group .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.search-area .input-group .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.search-area .input-group .form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.search-area .input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.search-area .input-group .form-select {
    border: none !important;
    border-radius: 0;
    border-right: 0px !important;
    padding-top: 3px;
    color: var(--base);
    text-transform: uppercase;
    width: 190px;
    padding: 19px 0 19px 19px;
    max-width: 190px;
    font-size: .75rem;
    cursor: pointer;
    -webkit-clip-path: polygon(9% 0, 100% 0, 100% 0, 100% 100%, 91% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(9% 0, 100% 0, 100% 0, 100% 100%, 91% 100%, 0 100%, 0 100%, 0% 30%);
}

.search-area .input-group .search-btn {
    border: none !important;
    background: transparent;
    height: 60px;
    width: 60px;
    background: rgba(0, 0, 0, 0.4);
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(0% 0%, 100% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 100%, 0% 30%);
}

.search-area .input-group .game-btn {
    position: relative;
    background-color: var(--base);
    right: -1px;
}

.latest-section,
.popular-section,
.topup-section,
.giftcard-section,
.voucher-section {
    padding: 20px 0 10px 0;
    overflow: hidden;
}

.popular-section .img-box,
.latest-section .img-box,
.topup-section .img-box,
.voucher-section .img-box,
.giftcard-section .img-box {
    position: relative;
    /* padding: 10px; */
}

.popular-section .img-box img,
.latest-section .img-box img,
.topup-section .img-box img,
.voucher-section .img-box img,
.giftcard-section .img-box img {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-radius: 6px;
}

.popular-section .img-box p,
.latest-section .img-box p,
.topup-section .img-box p,
.voucher-section .img-box p,
.giftcard-section .img-box p {
    text-align: center;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #ffffff;

}

.topup-section .img-box,
.popular-section .img-box,
.giftcard-section .img-box,
.voucher-section .img-box {
    margin: 0px;
    position: relative;
}

topsectiontext{
    font-size: 28px;
    font-weight: 700;
}

.popular-section .img-box .tags,
.latest-section .img-box .tags,
.topup-section .img-box .tags,
.voucher-section .img-box .tags,
.giftcard-section .img-box .tags {
    position: absolute;
    top: 0px;
    width: 100%;
    right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.popular-section .img-box .tags span,
.latest-section .img-box .tags span,
.topup-section .img-box .tags span,
.voucher-section .img-box .tags span,
.giftcard-section .img-box .tags span {
    color: #fff;
    font-size: 0.688rem;
    text-transform: uppercase;
    padding: 5px 5px 5px 20px;
    border-radius: 0px 0px 10px 0px;
    border: none;
    margin: 0 10px;
    background: #fd0d0d;
    font-weight: bold;
    /* margin: 0 10px; */
}

/* .giftcard-section {
    padding: 10px 0 60px 0;
} */

/* .giftcard-section .img-box {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
}

.giftcard-section .img-box img {
    border-radius: 10px;
}

.giftcard-section .img-box .tags {
    position: absolute;
    top: 10px;
    width: 100%;
    right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.giftcard-section .img-box .tags span {
    background: var(--base);
    color: #fff;
    font-size: 0.688rem;
    text-transform: uppercase;
    padding: 2px 6px;
    margin: 0 10px;
} */

.about-section {
    padding: 100px 0 60px 0;
    overflow-x: hidden;
}

.about-section .img-box {
    margin: 0 5px 40px 5px;
}

.about-section .img-box img {
    border-radius: 10px;
}

.about-section .text-box {
    margin: 0 5px 40px 5px;
}

.about-section .text-box h2 {
    margin-bottom: 50px;
}

.about-section .text-box p {
    color: #f1f1f1;
    margin-bottom: 30px;
}

.about-section .text-box ul {
    padding-left: 15px;
    margin-bottom: 30px;
}

.text-box{
    font-style: normal;
}
.about-section .text-box ul li {
    color: #f1f1f1;
    list-style: none;
    margin-bottom: 10px;
}

.about-section .text-box ul li img {
    margin-right: 10px;
}

.choose-section {
    padding: 100px 0 60px 0;
    overflow-x: hidden;
}

.choose-section .img-box {
    margin: 0 5px 40px 5px;
}

.choose-section .img-box img {
    border-radius: 10px;
}

.choose-section .text-box {
    margin: 0 5px 40px 5px;
}

.choose-section .text-box h2 {
    margin-bottom: 50px;
}

.choose-section .text-box .choose-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 50px;
}

.choose-section .text-box .choose-box img {
    margin-right: 30px;
}

.choose-section .text-box .choose-box .text h5 {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.choose-section .text-box .choose-box .text span {
    color: #f1f1f1;
}

.faq-section {
    padding: 100px 0 60px 0;
    overflow-x: hidden;
}

.faq-section .img-box {
    margin: 0 5px 40px 5px;
}

.faq-section .img-box img {
    border-radius: 10px;
}

.faq-section .text-box {
    margin: 0 5px 40px 5px;
}

.faq-section .text-box h2 {
    margin-bottom: 50px;
    text-transform: uppercase;
}

.faq-section .text-box .accordion-item {
    background: none;
    margin-bottom: 15px;
    border-radius: 0px;
}

.faq-section .text-box .accordion-item .accordion-button {
    background: none;
    border-radius: 0px !important;
    padding: 20px 0px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-transform: uppercase;
}

.faq-section .text-box .accordion-item .accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.faq-section .text-box .accordion-item .accordion-button:not(.collapsed) {
    color: var(--base);
    background-color: none;
    -webkit-box-shadow: 0 5px 10px -5px rgba(13, 110, 253, 0.25);
    box-shadow: 0 5px 10px -5px rgba(13, 110, 253, 0.25);
    -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
}

.faq-section .text-box .accordion-item .accordion-button::after {
    background-image: url(../images/icon/plus.png);
}

.faq-section .text-box .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/minus.png);
}

.faq-section .text-box .accordion-item .accordion-body {
    padding: 0 0 30px 0;
}

.faq-section .text-box .accordion-item .accordion-body p {
    margin-bottom: 0;
    font-size: .75rem;
    color: #f1f1f1;
}

.counter-section {
    padding: 100px 0 0 0;
}

.counter-section .counter-box {
    margin: 0 5px 100px 5px;
    text-align: center;
}

.counter-section .counter-box h2 {
    color: var(--base);
}

.pricing-section {
    padding: 100px 0 60px 0;
    overflow-x: hidden;
}

.pricing-section .pricing-box {
    margin: 0 5px 40px 5px;
    padding: 50px 50px;
    text-align: center;
    border: 6px solid rgba(255, 255, 255, 0.1);
    border: 4px solid var(--base);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-clip-path: polygon(13% 0, 100% 0, 100% 0, 100% 90%, 87% 100%, 0 100%, 0 100%, 0 10%);
    clip-path: polygon(13% 0, 100% 0, 100% 0, 100% 90%, 87% 100%, 0 100%, 0 100%, 0 10%);
}

.pricing-section .pricing-box h5 {
    text-transform: uppercase;
}

.pricing-section .pricing-box h2 {
    color: var(--base);
    margin-bottom: 30px;
}

.pricing-section .pricing-box ul {
    padding-left: 0;
    margin-bottom: 30px;
    display: inline-block;
}

.pricing-section .pricing-box ul li {
    list-style: none;
    color: #f1f1f1;
    margin-bottom: 15px;
}

.pricing-section .pricing-box ul li:last-child {
    margin-bottom: 0;
}

.pricing-section .pricing-box ul li img {
    margin-right: 10px;
    display: none;
}

.pricing-section .pricing-box .game-btn-sm {
    font-size: .75rem;
    display: block;
    margin: auto;
}

.pricing-section .pricing-box .game-btn-sm img {
    width: 15px;
}

.pricing-section .pricing-box:hover {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 0);
}

.testimonial-section {
    padding: 100px 0 100px 0;
}

.testimonial-section .review-box {
    margin: 0 5px 0px 5px;
    padding: 50px 50px 0px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.testimonial-section .review-box .img-box {
    width: 30%;
}

.testimonial-section .review-box .img-box img {
    width: 100px;
    padding-right: 15px;
}

.testimonial-section .review-box .text-box {
    width: 70%;
    color: #f1f1f1;
}

.testimonial-section .review-box .text-box .description {
    margin-bottom: 30px;
}

.testimonial-section .review-box .text-box h5 {
    text-transform: uppercase;
}

.testimonial-section .review-box .text-box .title {
    color: var(--base);
    text-transform: uppercase;
    font-size: 0.688rem;
}

.testimonial-section .review-box .quote {
    position: absolute;
    width: 32px;
    bottom: 15px;
    right: 50px;
}

.testimonial-section .owl-carousel {
    position: relative;
}

.testimonial-section .owl-carousel .owl-nav {
    display: none !important;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    width: 102%;
    height: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    padding-bottom: 100px;
    z-index: -1;
}

.testimonial-section .owl-carousel .owl-nav button {
    display: inline-block;
    z-index: 2;
}

.testimonial-section .owl-carousel .owl-nav button span {
    font-size: 32px;
    color: #fff;
}

.testimonial-section .owl-carousel .owl-dots {
    display: none;
    background: none;
    height: 30px;
    text-align: center;
    margin-top: 50px;
}

.testimonial-section .owl-carousel .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    margin: 0 9px;
    background: #000;
    -webkit-box-shadow: 0 0 0px 4px var(--base);
    box-shadow: 0 0 0px 4px var(--base);
}

.testimonial-section .owl-carousel .owl-dots .owl-dot.active {
    background: #fff;
}

.blog-section {
    padding: 100px 0 60px 0;
    overflow-x: hidden;
}

.blog-section .blog-box {
    margin: 0 5px 40px 5px;
}

.blog-section .blog-box .img-box {
    margin-bottom: 30px;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.blog-section .blog-box .img-box img {
    border-radius: 0px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    height: 250px;
}

.blog-section .blog-box .img-box .author {
    background: var(--base);
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 30%, 100% 70%, 90% 100%, 0 100%, 0% 70%, 0% 30%);
    clip-path: polygon(10% 0, 100% 0, 100% 30%, 100% 70%, 90% 100%, 0 100%, 0% 70%, 0% 30%);
    position: absolute;
    padding: 4px 10px 2px 10px;
    bottom: 15px;
    left: 15px;
    color: #fff;
    float: right;
    text-transform: uppercase;
    font-size: 0.688rem;
}

.blog-section .blog-box .text-box .title {
    text-transform: uppercase;
}

.blog-section .blog-box .text-box .title a {
    color: #fff;
}

.blog-section .blog-box .text-box .date {
    color: var(--base);
    text-transform: uppercase;
    font-size: 0.688rem;
}

.blog-section .blog-box:hover .img-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.footer-section {
    padding: 0px;
    background: #202432;
}

.footer-section .footer-box {
    margin: 0 5px 40px 5px;
}

.footer-section .footer-box .navbar-brand img {
    width: 80px;
    margin-bottom: 30px;
}

.footer-section .footer-box p {
    color: #f1f1f1;
    margin-bottom: 30px;
}

.footer-section .footer-box h5 {
    margin-bottom: 30px;
    margin-top: 40px;
    text-transform: uppercase;
}

.footer-section .footer-box a {
    text-decoration: none;
    color: #f1f1f1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.footer-section .footer-box a:hover {
    color: var(--base);
}

.footer-section .footer-box ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer-section .footer-box ul li {
    list-style: none;
    color: #f1f1f1;
    margin-bottom: 15px;
}

.footer-section .footer-box ul li img,
.footer-section .footer-box ul li i {
    margin-right: 10px;
}

.footer-section .footer-box .social-links {
    margin-bottom: -40px;
}

.footer-section .footer-box .social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    text-align: center;
    margin-right: 15px;
    padding-top: 12px;
    background: var(--base-secondary);
    border-radius: 10px;
    /* -webkit-clip-path: polygon(29% 0, 100% 0, 100% 30%, 100% 70%, 71% 100%, 0 100%, 0% 70%, 0% 30%);
    clip-path: polygon(29% 0, 100% 0, 100% 30%, 100% 70%, 71% 100%, 0 100%, 0% 70%, 0% 30%); */
}

.footer-section .footer-box .social-links a img {
    width: 18px;
}

.footer-section .footer-box .social-links a i {
    font-size: 0.875rem;
    color: #fff;
}

.footer-section .footer-box .input-group .form-control {
    border-radius: 0px;
    border: none;
    height: 48px;
    font-size: .75rem;
    padding: 15px;
    caret-color: var(--base);
}

.footer-section .footer-box .input-group .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.footer-section .footer-box .input-group .input-group-text {
    border: none;
    border-radius: 0px;
    padding: 0;
}

.footer-section .footer-box .input-group .input-group-text button {
    background: var(--base-secondary);
    height: 100%;
    width: 60px;
    border: none;
}

.footer-section .footer-bottom {
    margin-top: 20px;
    color: #fff;
    font-size: 0.688rem;
    padding-bottom: 99px;
}
.copyright{
	text-align: center;
}

.footer-section .footer-bottom .copyright a {
    color: var(--base);
}

.footer-section .footer-bottom .language {
    text-align: right;
    color: #fff;
}

.footer-section .footer-bottom .language a {
    color: var(--base);
    margin-right: 15px;
}

.scroll-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    text-align: center;
    margin-right: 15px;
    padding-top: 12px;
    background: #121212;
    border-radius: 50%;
    position: fixed;
    right: 30px;
    bottom: 118px;
}

.scroll-top i {
    font-size: 0.875rem;
    color: #fff;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    background: #0b0231;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader.loaded .triangle,
.preloader.loaded .pen {
    -webkit-animation: none;
    animation: none;
}

.wrapper-triangle {
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    width: 304px;
    height: 250px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.line-triangle {
    position: absolute;
    width: 250px;
    height: 54px;
    border: 1px solid transparent;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.line-triangle:nth-last-of-type(1) {
    left: 313px;
    bottom: -21px;
    -webkit-transform: rotate(-120deg);
    transform: rotate(-120deg);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.line-triangle:nth-last-of-type(2) {
    left: 156px;
    top: -54px;
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
}

.line-triangle:nth-last-of-type(3) {
    top: 217px;
    left: 0;
}

.triangle:nth-of-type(1) {
    -webkit-animation: tri1 1.5s linear infinite;
    animation: tri1 1.5s linear infinite;
}

@-webkit-keyframes tri1 {
    0% {
        opacity: 0;
    }
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tri1 {
    0% {
        opacity: 0;
    }
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(2) {
    -webkit-animation: tri2 1.5s linear infinite;
    animation: tri2 1.5s linear infinite;
}

@-webkit-keyframes tri2 {
    0% {
        opacity: 0;
    }
    14.28571% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tri2 {
    0% {
        opacity: 0;
    }
    14.28571% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(3) {
    -webkit-animation: tri3 1.5s linear infinite;
    animation: tri3 1.5s linear infinite;
}

@-webkit-keyframes tri3 {
    0% {
        opacity: 0;
    }
    28.57143% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tri3 {
    0% {
        opacity: 0;
    }
    28.57143% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(4) {
    -webkit-animation: tri4 1.5s linear infinite;
    animation: tri4 1.5s linear infinite;
}

@-webkit-keyframes tri4 {
    0% {
        opacity: 0;
    }
    42.85714% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tri4 {
    0% {
        opacity: 0;
    }
    42.85714% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(5) {
    -webkit-animation: tri5 1.5s linear infinite;
    animation: tri5 1.5s linear infinite;
}

@-webkit-keyframes tri5 {
    0% {
        opacity: 0;
    }
    57.14286% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tri5 {
    0% {
        opacity: 0;
    }
    57.14286% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(6) {
    -webkit-animation: tri6 1.5s linear infinite;
    animation: tri6 1.5s linear infinite;
}

@-webkit-keyframes tri6 {
    0% {
        opacity: 0;
    }
    71.42857% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tri6 {
    0% {
        opacity: 0;
    }
    71.42857% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.triangle:nth-of-type(7) {
    -webkit-animation: tri7 1.5s linear infinite;
    animation: tri7 1.5s linear infinite;
}

@-webkit-keyframes tri7 {
    0% {
        opacity: 0;
    }
    85.71429% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tri7 {
    0% {
        opacity: 0;
    }
    85.71429% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.triangle {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border: 31px solid transparent;
    border-bottom: 54px solid var(--base);
    -webkit-animation: tri 1.5s linear infinite;
    animation: tri 1.5s linear infinite;
}

.triangle:nth-of-type(1) {
    left: 0px;
}

.triangle:nth-of-type(2) {
    left: 31px;
}

.triangle:nth-of-type(3) {
    left: 63px;
}

.triangle:nth-of-type(4) {
    left: 94px;
}

.triangle:nth-of-type(5) {
    left: 125px;
}

.triangle:nth-of-type(6) {
    left: 156px;
}

.triangle:nth-of-type(7) {
    left: 188px;
}

.triangle:nth-child(even) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 0;
}

.triangle:nth-child(1) {
    -webkit-animation: none;
    animation: none;
}

.line:nth-child(2) .triangle:nth-child(1):before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: -22px;
    bottom: -77px;
    background: transparent;
    border: 13px solid transparent;
    border-bottom: 21px solid #f1ecdb;
    -webkit-animation: tri 1.5s linear infinite;
    animation: tri 1.5s linear infinite;
}

.pen {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 312.5px;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-animation: move 1.5s cubic-bezier(0, 0, 0.5, 0.85) infinite;
    animation: move 1.5s cubic-bezier(0, 0, 0.5, 0.85) infinite;
}

@-webkit-keyframes tri {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes tri {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes move {
    0% {
        -webkit-transform: scale(2.45);
        transform: scale(2.45);
    }
    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes move {
    0% {
        -webkit-transform: scale(2.45);
        transform: scale(2.45);
    }
    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

.shop-section {
    margin: 100px 0;
}

.shop-section h4 {
    text-transform: uppercase;
}

.shop-section .form-select,
.shop-section .form-control {
    border-radius: 0px;
    border: none;
    height: 48px;
    font-size: .75rem;
    padding: 15px;
    caret-color: var(--base);
}

.shop-section .form-select:focus,
.shop-section .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.shop-section .form-select {
    padding: 15px;
    border-radius: 10px;
    /* -webkit-clip-path: polygon(7% 0, 100% 0, 100% 0, 100% 70%, 93% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(7% 0, 100% 0, 100% 0, 100% 70%, 93% 100%, 0 100%, 0 100%, 0% 30%); */
}

.shop-section .filter-area .filter-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
}

.shop-section .filter-area .filter-box h4 {
    margin-bottom: 20px;
}

.shop-section .filter-area .filter-box .input-group .input-group-text {
    border: none;
    border-radius: 0px;
    padding: 0;
}

.shop-section .filter-area .filter-box .input-group .input-group-text button {
    background: var(--base-secondary);
    height: 100%;
    width: 60px;
    border: none;
}

.shop-section .filter-area .filter-box .form-range::-webkit-slider-thumb {
    background: var(--base);
}

.shop-section .filter-area .filter-box .form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
    background: #fff;
    border: none;
    border-radius: 0px !important;
    margin-right: 10px;
}

.shop-section .filter-area .filter-box .form-check .form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 133, 3, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(255, 133, 3, 0.2);
}

.shop-section .filter-area .filter-box .form-check .form-check-input:checked {
    background-color: var(--base);
    border-color: var(--base);
}

.shop-section .filter-area .filter-box .tag-item label {
    background: #fff;
    margin: 0 5px 10px 0;
    border-radius: 0px;
    color: var(--base);
    font-size: 0.688rem;
    text-transform: uppercase;
    border: none;
}

.shop-section .filter-area .filter-box .tag-item .btn-check:checked + .btn-primary {
    background: var(--base) !important;
    color: #fff;
}

.shop-section .filter-area .filter-box .tag-item .btn-check:focus + .btn-primary,
.shop-section .filter-area .filter-box .tag-item .btn-primary:focus {
    color: #fff;
    background-color: #fff;
    border-color: var(--base);
    -webkit-box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.shop-section .item-area .form-select {
    width: 200px;
    background: #493f4f;
    color: #fff;
}


.shop-section .item-area .form-select option:hover {
    color: #fff;
    background: var(--base) !important;
}

.shop-section .item-area .img-box {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
}

.shop-section .item-area .img-box img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.shop-section .item-area .img-box .tags {
    position: absolute;
    top: 20px;
    width: 100%;
    right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.shop-section .item-area .img-box .tags span {
    background: var(--base);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 5px;
}

.shop-section .item-area .img-box .tags span:first-child {
    margin-left: 20px;
}

.shop-section .item-area .img-box .tags span:last-child {
    margin-right: 20px;
}

.shop-section .item-area .img-box h5 {
    margin-bottom: 0;
}

.shop-section .game-box {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.shop-section .game-box .img-box {
    background: none;
    padding: 0;
    margin-right: 15px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.shop-section .game-box .img-box img {
    min-width: 200px;
    width: 200px;
    height: 180px;
    border-radius: 10px;
}

.shop-section .game-box .img-box.owl-carousel .owl-dots {
    text-align: center;
    position: relative;
    top: -43px;
}

.shop-section .game-box .img-box.owl-carousel .owl-dots button.owl-dot {
    margin: 0 3px;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    background: var(--base-rgba);
}

.shop-section .game-box .img-box.owl-carousel .owl-dots button.owl-dot.active {
    background: var(--base);
}

.shop-section .game-box .more-info {
    text-transform: capitalize;
}

.shop-section .game-box .name {
    margin-bottom: 5px;
}

.shop-section .game-box .game-level {
    color: var(--base);
    text-transform: capitalize;
}

.shop-section .game-box .game-btn-sm {
    font-size: 13px;
    height: 45px;
    padding-top: 3px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.shop-section .game-box .game-btn-sm img {
    width: 14px;
    right: -5px;
}

.shop-section .pagination .page-item {
    margin: 2px;
}

.shop-section .pagination .page-item .page-link {
    border-radius: 0 !important;
    padding: 6px 16px;
    border: none;
    color: #fff;
    background: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.shop-section .pagination .page-item .page-link:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.shop-section .pagination .page-item:hover .page-link, .shop-section .pagination .page-item.active .page-link {
    color: #fff;
    background: var(--base);
}

.login-section .contact-box .form-label {
    text-transform: capitalize;
}

.login-section .contact-box .form-control,
.dashboard-section .form-control {
    border-radius: 10px;
    display: inline-block;
    margin: 0px 10px 10px 0;
    border: 1px solid #e9e9e9;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 60px;
    font-size: .75rem;
    padding: 20px;
    caret-color: var(--base);
    /* -webkit-clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%); */
}
.dashboard-section .form-control {
    margin: 0;
    padding: 0 20px;
    height: 30px;
    border-radius: 2px;
    background: #2E3447;
}
.user-dashboard-section .page-link{
    background-color: #2E3447;
    border: 1px solid #2E3447;
    color: var(--base);
}
.user-dashboard-section .page-item.disabled .page-link{
    background-color: #2E3447;
    border: 1px solid #2E3447;
    color: var(--base);
}
.user-dashboard-section .page-item.active .page-link {
    color: #2E3447;
    background-color: var(--base);
    border-color: var(--base);
}
.user-dashboard-section .tab-pane .balance{
    color: var(--base);
    font-weight: bold;
    font-size: 16px;
}

.manual.contact-box .form-control {
    border-radius: 0px;
    display: inline-block;
    margin: 0px 10px 10px 0;
    border: 1px solid #e9e9e9;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 60px;
    font-size: .75rem;
    padding: 20px;
    caret-color: var(--base);
    -webkit-clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%);
}

.login-section .contact-box .form-control:focus {
    color: #fff;
    background-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--base);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.login-section .contact-box .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.login-section .contact-box .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.login-section .contact-box .form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.login-section .contact-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.login-section .contact-box .form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
    background: #fff;
    border: none;
    border-radius: 0px !important;
    margin-right: 10px;
}

.login-section .contact-box .form-check .form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 133, 3, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(255, 133, 3, 0.2);
}

.login-section .contact-box .form-check .form-check-input:checked {
    background-color: var(--base);
    border-color: var(--base);
}

.login-section .contact-box .link a {
    color: var(--base);
}

.page-header {
    padding: 150px 0 100px 0;
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: center top;
}

.page-header .spartan {
    width: 0px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.page-header h2 {
    z-index: 1;
    position: relative;
    text-transform: uppercase;
}

.details-section {
    margin: 10px 0;
}
@media (max-width: 991px){
    .details-section {
        margin-top: 10px;
    }
}

.details-section .text-box h4 {
    text-transform: capitalize;
}

.details-section .order-box {
    /* margin-bottom: 30px; */
    /* background: #202432; */
    padding: 0px 6px 0px 6px;
    position: relative;
    border-radius: 20px;
}

.details-section .order-box h5 {
    text-transform: capitalize;
    margin-bottom: 0px;
    border-radius: 4px 4px 0px 0px;
    padding: 10px 30px;
    font-style: normal;
}

.details-section .order-box p {
    font-size: .75rem;
    margin-bottom: 0;
    margin-top: 4px;
    padding: 10px 10px;
}

.details-section .order-box .input-box .form-select,
.details-section .order-box .input-box .form-control {
    /* border-radius: 0px; */
    display: inline-block;
    /* margin: 0px 10px 10px 0; */
    border: 1px solid #e9e9e9;
    height: 48px;
    width: 100%;
    padding: 15px;
    caret-color: var(--base);
    /* -webkit-clip-path: polygon(7% 0, 100% 0, 100% 0, 100% 70%, 93% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(7% 0, 100% 0, 100% 0, 100% 70%, 93% 100%, 0 100%, 0 100%, 0% 30%); */
    border-radius: 10px;
}

/* .details-section .order-box .input-box .form-container {
    width: 100%;
} */

.details-section .order-box .input-box .form-select:focus,
.details-section .order-box .input-box .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: none;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.details-section .order-box .input-box .form-select::-webkit-input-placeholder,
.details-section .order-box .input-box .form-control::-webkit-input-placeholder {
    color: #212529;
}

.details-section .order-box .input-box .form-select:-ms-input-placeholder,
.details-section .order-box .input-box .form-control:-ms-input-placeholder {
    color: #212529;
}

.details-section .order-box .input-box .form-select::-ms-input-placeholder,
.details-section .order-box .input-box .form-control::-ms-input-placeholder {
    color: #212529;
}

.details-section .order-box .input-box .form-select::placeholder,
.details-section .order-box .input-box .form-control::placeholder {
    color: #212529;
}

.details-section .order-box .info .hovered {
    position: absolute;
    width: 100%;
    left: 0;
    top: 48px;
    border-radius: 5px;
    opacity: 0;
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.details-section .order-box .info .info-icon {
    cursor: pointer;
    padding: 0px 30px;
    height: 16px;
}

.details-section .order-box .info .info-icon:hover + .hovered {
    opacity: 1;
    z-index: 1;
}

.details-section .payment-box {
    margin-bottom: 20px;
    /* background: #202432; */
    padding: 0px 6px;
    border-radius: 20px;
}

.details-section .payment-box h5 {
    text-transform: capitalize;
    margin-bottom: 0px;
    border-radius: 4px 4px 0px 0px;
    padding: 10px 30px;
}

.details-section .payment-box .btn-check + .btn-primary {
    background: #292C35;
    border-color: #4C506F;
    border-radius: 6px;
    padding: 20px 0px 20px 0px;
    display: block;
    color: #ffff;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    overflow: hidden;
    text-align: left;
    background: linear-gradient(to right, #414345, #232526);
}

.itemicon{
    text-align: center !important;
    padding: 20px;
    height: 70px;
    background: linear-gradient(to right, #414345, #232526);
}
.product-text-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    background: #292C35;
    margin-top: 10px;
    margin-bottom: -20px;
    font-size: 0.75rem;

}
.card-code-promo button{
    background: linear-gradient(to right, #414345, #232526);
    color: white;
    border: none;
    border-width: 1px;
    border-radius: .375rem;
    /*border-color: rgb(94 102 110 / 1);*/
    /*border-color: #2E3447;*/
}
#promotions_available .modal-body-custom{
    max-height: 500px;
    overflow-y: auto;
}
#promotions_available .modal-header-custom,
#promotions_available .modal-body-custom,
#confirm_redeem_account .modal-header-custom,
#confirm_redeem_account .modal-body-custom,
#confirm_redeem_account .modal-footer-custom,
#confirm_buy_code .modal-header-custom,
#confirm_buy_code .modal-body-custom,
#confirm_buy_code .modal-footer-custom{
    background: #202432;
    border: none;
}
#promotions_available .modal-title,
#confirm_redeem_account .modal-title,
#confirm_buy_code .modal-title{
    flex-grow: 1;
    text-align: center;
}
#promotions_available .btn-close,
#confirm_buy_code .btn-close,
#confirm_redeem_account .btn-close{
    font-size: 0.875rem;
    background-color: #2e3447;
    background-image: none;
    border-radius: 50%;
}
#promotions_available .btn-close svg,
#confirm_buy_code .btn-close svg,
#confirm_redeem_account .btn-close svg{
    vertical-align: baseline;
}
.card-code-promo .arrow__right{
    right: 0;
    position: absolute;
    background: #6c757d;
    width: 50px;
    height: 100%;
    place-content: center;
    border-radius: .375rem;
}
#promotions_available .card-header{
    background: #FFBD59;
    font-weight: bold;
    font-size: 1.2rem;
}
#promotions_available .card-body{
    background: #FFEEAA;
}
#promotions_available .collapse__header{
    justify-content: space-between;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
#promotions_available .collapse__header .discount{
    font-weight: bold;
    font-size: 2em;
}
#promotions_available .game-btn-sm{
    width: 80px;
    height: auto;
    padding: 0;
    line-height: 2;
}
#promotions_available .collapse__header a {
    color: black;
    margin-left: 1rem;
    font-size: 1.3rem;
}
#promotions_available .card-body.card {
    border: none;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    border-top: 1px dashed rgb(0, 0, 0);
}
#promotions_available .card-body.card ul{
    padding-left: 1rem;
    padding-bottom: 0;
    margin-bottom: 0;
    /* font-weight: 500; */
    font-size: 15px;
}
/*.card-promo {*/
/*    display: flex;*/
/*    position: relative;*/
/*    border: 1px solid;*/
/*    padding: 1rem;*/
/*    border-radius: .5rem;*/
/*    cursor: pointer;*/
/*    border-color: rgb(16 185 129 / 1);*/
/*    background: #2e3447;*/
/*    margin-bottom: 1em;*/
/*}*/
/*.card-promo.inactive {*/
/*    opacity: 0.4;*/
/*    border: none;*/
/*}*/
/*.card-promo .list-conditions{*/
/*    flex: 1 1 0%;*/
/*}*/
/*.card-promo .discount{*/
/*    color: #FDBB06;*/
/*    font-weight: 600;*/
/*}*/
/*.card-promo .success{*/
/*    color: rgb(16 185 129 / 1);*/
/*    font-size: 1.2rem;*/
/*}*/
/*.card-promo .status_promo{*/
/*    position: absolute;*/
/*    bottom: 0.9rem;*/
/*    right: .9rem;*/
/*    border-radius: .375rem;*/
/*    background-color: rgb(16 185 129 / 1);*/
/*    padding-left: .5rem;*/
/*    padding-right: .5rem;*/
/*    color: #fff;*/
/*}*/
/*.card-promo .status_promo.active{*/
/*    background-color: rgb(16 185 129 / 1);*/
/*}*/
/*.card-promo .status_promo.inactive{*/
/*    background-color: rgb(239 68 68 / 1);*/
/*}*/
/*.card-promo .code_promo span{*/
/*    font-weight: bold;*/
/*}*/

/* .product-label-item {
    padding: 15px !important;
} */

.details-section .payment-box .btn-check + .btn-primary .check {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
}

.details-section .payment-box .btn-check + .btn-primary::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.7); */
    top: 0;
    left: 0;
}

/*.details-section .payment-box .btn-check:checked + .btn-primary {*/
/*color: #212529;*/
/*background: #fff !important;*/
/*border: 4px solid var(--base);*/
/*}*/

.details-section .payment-box .btn-check:checked + .btn-primary .check {
    opacity: 1;
    width: 25px;
    height: 25px;
}

.details-section .payment-box .btn-check:checked + .btn-primary::after {
    /* background: none; */
    border: 3px solid #FDBB06;
    border-radius: 6px;
}

.details-section .payment-box .btn-check:focus + .btn-primary,
.details-section .payment-box .btn-primary:focus {
    /* color: #000; */
    color: #ffff;
    /* background-color: #fff; */
    background-color: #2F3757;
    /* border-color: var(--base-secondary); */
    -webkit-box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.details-section .payment-box .payment-options {
    /* height: 171px; */
    /* padding-right: 5px; */
    overflow-y: auto;
    overflow-x: hidden;
}

.details-section .payment-box .payment-options::-webkit-scrollbar {
    width: 6px;
}

.details-section .payment-box .payment-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
}

.details-section .payment-box .payment-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
}

.details-section .payment-box .payment-options::-webkit-scrollbar-thumb:hover {
    background: var(--base);
}

.details-section .payment-box .payment-options .img-fluid {
    height: 120px !important;
}

.img-fluid12{
    width: 115px;
    padding: 5px 10px;

}

#img12payment{
    text-align: left;
}

.details-section .img-box .img-fluid{
    width: 100%;
}

.details-section .estimate-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    padding: 10px 20px;
}

.details-section .estimate-box ul li {
    margin-bottom: 15px;
}

.details-section .estimate-box ul li span {
    float: right;
}

.details-section .estimate-box .game-btn-sm {
    font-size: 16px;
    font-weight: 600;
    color: #14141a;
}

.details-section .estimate-box .game-btn-sm img {
    left: -10px;
}

.details-section .input-box .form-select{
    background-image: url(../images/downward-arrow-black.png) !important;
    padding: 13px 15px !important;
}

.package-details {
    margin: 100px 0;
}

.package-details h4 {
    text-transform: uppercase;
    margin-bottom: 30px;
}

.package-details .description-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 8px;
}

.package-details .description-box .navigator {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.package-details .description-box .navigator button {
    text-transform: uppercase;
    color: var(--base);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: inline-block;
    width: 130px;
    height: 40px;
    padding-top: 3px;
    border: none;
    background: none;
    margin: 0 5px 10px 0;
    text-align: center;
    position: relative;
}

.package-details .description-box .navigator button::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0px;
    left: 0;
    border: 2px solid transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 0, 100% 70%, 88% 100%, 0 100%, 0 100%, 0 30%);
    clip-path: polygon(12% 0, 100% 0, 100% 0, 100% 70%, 88% 100%, 0 100%, 0 100%, 0 30%);
}

.package-details .description-box .navigator button.active::after, .package-details .description-box .navigator button:hover::after {
    color: var(--base);
    border: 2px solid var(--base);
}

.package-details .description-box .navigator button.active, .package-details .description-box .navigator button:hover {
    color: var(--base);
}

.package-details .related-items h4 {
    margin-bottom: 30px;
}

.package-details .related-items .img-box {
    margin-bottom: 15px;
    position: relative;
}

.package-details .related-items .img-box img {
    border-radius: 10px;
}

.package-details .related-items .img-box .tags {
    position: absolute;
    top: 10px;
    width: 100%;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.package-details .related-items .img-box .tags span {
    background: var(--base);
    color: #fff;
    font-size: 0.688rem;
    text-transform: uppercase;
    padding: 2px 6px;
    margin: 0 10px;
}

.package-details #instruction {
    display: none;
}

.package-details #reviews {
    display: none;
}

.package-details #reviews .review-box {
    margin: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.package-details #reviews .review-box .text {
    width: 80%;
}

.package-details #reviews .review-box .text img {
    width: 50px;
    margin-right: 15px;
}

.package-details #reviews .review-box .text p {
    font-size: .75rem;
}

.package-details #reviews .review-box .review-date {
    width: 20%;
    text-align: right;
}

.package-details #reviews .review-box .review-date .date {
    text-transform: uppercase;
    font-size: 0.688rem;
    display: inline-block;
    margin-top: 10px;
}

.package-details #reviews .review-box:last-child {
    border-bottom: none;
}

.package-details #reviews #half-stars-example {
    margin-bottom: 30px;
    /* make hover effect work properly in IE */
    /* hide radio inputs */
    /* set icon padding and size */
    /* add padding and positioning to half star labels */
    /* set default star color */
    /* set color of none icon when unchecked */
    /* if none icon is checked, make it red */
    /* if any input is checked, make its following siblings grey */
    /* make all stars orange on rating group hover */
    /* make hovered input's following siblings grey on hover */
    /* make none icon grey on rating group hover */
    /* make none icon red on hover */
}

.package-details #reviews #half-stars-example .rating-group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: -13px;
}

.package-details #reviews #half-stars-example .rating__icon {
    pointer-events: none;
}

.package-details #reviews #half-stars-example .rating__input {
    position: absolute !important;
    left: -9999px !important;
}

.package-details #reviews #half-stars-example .rating__label {
    cursor: pointer;
    /* if you change the left/right padding, update the margin-right property of .rating__label--half as well. */
    padding: 0 0.1em;
    font-size: 24px;
}

.package-details #reviews #half-stars-example .rating__label--half {
    padding-right: 0;
    margin-right: -16px;
    z-index: 0;
    width: 16px;
}

.package-details #reviews #half-stars-example .rating__icon--star {
    color: var(--base);
}

.package-details #reviews #half-stars-example .rating__icon--none {
    color: #eee;
}

.package-details #reviews #half-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
    color: red;
}

.package-details #reviews #half-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
}

.package-details #reviews #half-stars-example .rating-group:hover .rating__label .rating__icon--star,
.package-details #reviews #half-stars-example .rating-group:hover .rating__label--half .rating__icon--star {
    color: var(--base);
}

.package-details #reviews #half-stars-example .rating__input:hover ~ .rating__label .rating__icon--star,
.package-details #reviews #half-stars-example .rating__input:hover ~ .rating__label--half .rating__icon--star {
    color: #ddd;
}

.package-details #reviews #half-stars-example .rating-group:hover
.rating__input--none:not(:hover)
+ .rating__label
.rating__icon--none {
    color: #eee;
}

.package-details #reviews #half-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
    color: red;
}

.package-details #reviews .pagination .page-item {
    margin: 2px;
}

.package-details #reviews .pagination .page-item .page-link {
    border-radius: 0 !important;
    padding: 6px 16px;
    border: none;
    color: #fff;
    background: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.package-details #reviews .pagination .page-item .page-link:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.package-details #reviews .pagination .page-item:hover .page-link, .package-details #reviews .pagination .page-item.active .page-link {
    color: #fff;
    background: var(--base);
}

.package-details .add-review .form-label {
    text-transform: capitalize;
}

.package-details .add-review .form-control {
    border-radius: 0px;
    display: inline-block;
    margin: 0px 10px 10px 0;
    border: 1px solid #e9e9e9;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 60px;
    font-size: .75rem;
    padding: 20px;
    caret-color: var(--base);
    -webkit-clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%);
}

.package-details .add-review .form-control:focus {
    color: #fff;
    background-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--base);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.package-details .add-review .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.package-details .add-review .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.package-details .add-review .form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.package-details .add-review .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.package-details .add-review textarea.form-control {
    height: 100%;
    -webkit-clip-path: polygon(4% 0, 100% 0, 100% 0, 100% 84%, 96% 100%, 0 100%, 0 100%, 0 16%);
    clip-path: polygon(4% 0, 100% 0, 100% 0, 100% 84%, 96% 100%, 0 100%, 0 100%, 0 16%);
}

.package-details .add-review .game-btn-sm {
    font-size: .75rem;
}

.contact-section {
    padding: 100px 0;
}

.contact-section .contact-box {
    margin-top: 50px;
}

.contact-section .contact-box .form-label {
    text-transform: capitalize;
}

.contact-section .contact-box .form-control {
    border-radius: 10px;
    display: inline-block;
    margin: 0px 10px 10px 0;
    border: 1px solid #e9e9e9;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 60px;
    font-size: .75rem;
    padding: 20px;
    caret-color: var(--base);
    /* -webkit-clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%); */
}

.contact-section .contact-box .form-control:focus {
    color: #fff;
    background-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--base);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.contact-section .contact-box .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-section .contact-box .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-section .contact-box .form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-section .contact-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.contact-section .contact-box textarea.form-control {
    height: 100%;
    border-radius: 10px;
    /* -webkit-clip-path: polygon(4% 0, 100% 0, 100% 0, 100% 84%, 96% 100%, 0 100%, 0 100%, 0 16%);
    clip-path: polygon(4% 0, 100% 0, 100% 0, 100% 84%, 96% 100%, 0 100%, 0 100%, 0 16%); */
}

.blog-details {
    padding: 100px 0 100px 0;
}

.blog-details .blog-box {
    margin: 0 5px 50px 5px;
}

.blog-details .blog-box .img-box {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.blog-details .blog-box .img-box img {
    border-radius: 0px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-details .blog-box .img-box .author {
    background: var(--base);
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 30%, 100% 70%, 90% 100%, 0 100%, 0% 70%, 0% 30%);
    clip-path: polygon(10% 0, 100% 0, 100% 30%, 100% 70%, 90% 100%, 0 100%, 0% 70%, 0% 30%);
    position: absolute;
    padding: 4px 10px 2px 10px;
    bottom: 15px;
    left: 15px;
    color: #fff;
    float: right;
    text-transform: uppercase;
    font-size: 0.688rem;
}

.blog-details .blog-box .text-box .title {
    text-transform: uppercase;
}

.blog-details .blog-box .text-box .title a {
    color: #fff;
}

.blog-details .blog-box .text-box .date {
    color: var(--base);
    text-transform: uppercase;
    font-size: 0.688rem;
}

.blog-details .blog-box .text-box .description {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

.blog-details .blog-box:hover .img-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-details .filter-area .filter-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
}

.blog-details .filter-area .filter-box h4 {
    margin-bottom: 20px;
}

.blog-details .filter-area .filter-box .input-group .input-group-text {
    border: none;
    border-radius: 0px;
    padding: 0;
}

.blog-details .filter-area .filter-box .input-group .input-group-text button {
    background: var(--base-secondary);
    height: 100%;
    width: 60px;
    border: none;
}

.blog-details .filter-area .filter-box .form-control {
    border-radius: 0px;
    border: none;
    height: 48px;
    font-size: .75rem;
    padding: 15px;
    caret-color: var(--base);
}

.blog-details .filter-area .filter-box .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.blog-details .filter-area .filter-box .form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
    background: #fff;
    border: none;
    border-radius: 0px !important;
    margin-right: 10px;
}

.blog-details .filter-area .filter-box .form-check .form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 133, 3, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(255, 133, 3, 0.2);
}

.blog-details .filter-area .filter-box .form-check .form-check-input:checked {
    background-color: var(--base);
    border-color: var(--base);
}

.blog-details .filter-area .filter-box .tag-item label {
    background: #fff;
    margin: 0 5px 10px 0;
    border-radius: 0px;
    color: var(--base);
    font-size: 0.688rem;
    text-transform: uppercase;
    border: none;
}

.blog-details .filter-area .filter-box .tag-item .btn-check:checked + .btn-primary {
    background: var(--base) !important;
    color: #fff;
}

.blog-details .filter-area .filter-box .tag-item .btn-check:focus + .btn-primary,
.blog-details .filter-area .filter-box .tag-item .btn-primary:focus {
    color: #fff;
    background-color: #fff;
    border-color: var(--base);
    -webkit-box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.blog-details .pagination .page-item {
    margin: 2px;
}

.blog-details .pagination .page-item .page-link {
    border-radius: 0 !important;
    padding: 6px 16px;
    border: none;
    color: #fff;
    background: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-details .pagination .page-item .page-link:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.blog-details .pagination .page-item:hover .page-link, .blog-details .pagination .page-item.active .page-link {
    color: #fff;
    background: var(--base);
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1080px;
    }
}

@media (max-width: 991px) {

    .navbar .navbar-collapse .navbar-nav {
        text-align: center;
    }

    .navbar .navbar-collapse .navbar-nav .nav-item {
        margin: 0px;
    }

    .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu {
        text-align: center;
        background: transparent;
    }

    .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
        color: #fff;
        background: none;
        border: none;
    }

    .navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item i {
        font-size: 16px;
        margin-right: 5px;
        margin-left: 0;
        width: 20px;
    }

    .navbar .navbar-collapse .navbar-nav .nav-item:last-child {
        margin-bottom: 30px;
    }

    .navbar .navbar-text {
        right: 110px;
    }

    .navbar .navbar-text .notification {
        margin-right: 20px;
    }

    .details-section .order-box {
        padding: 0px;
        margin-top: 20px;
    }

    .details-section .order-box .input-box .form-control,
    .details-section .order-box .input-box .form-select {
        width: 100%;
        /* -webkit-clip-path: polygon(5% 0, 100% 0, 100% 0, 100% 65%, 95% 100%, 0 100%, 0 100%, 0% 35%);
        clip-path: polygon(5% 0, 100% 0, 100% 0, 100% 65%, 95% 100%, 0 100%, 0 100%, 0% 35%); */
    }



    .details-section .payment-box {
        padding: 0px;
    }

    .details-section .payment-box .btn-check + .btn-primary {
        padding: 0px 0;
    }

    .details-section .payment-box .row {
        --bs-gutter-x: 0.5rem !important;
    }

    .product-text-item{
        padding: 15px;
        text-align: center;
    }

    .package-list {
        width: 100%;
    }
    .header-link {
        padding-top: 10px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 1rem;
    }

    .navbar {
        padding: 0;
    }

    .navbar .navbar-text {
        right: 80px;
    }

    .navbar .navbar-text .notification {
        margin-right: 20px;
    }

    .banner {
        height: 500px;
    }

    .banner .text-box {
        margin-bottom: 100px;
    }

    .banner .text-box h1 {
        font-size: 48px;
        text-shadow: -3px 4px var(--base-secondary);
        letter-spacing: 5px;
    }

    .banner .text-box h5 {
        letter-spacing: 10px;
    }

    .banner .skitter {
        height: 500px !important;
    }

    .banner .skitter .box_clone {
        height: 500px !important;
    }

    .banner .skitter .box_clone img {
        height: 500px !important;
    }

    .banner .skitter .container_skitter {
        height: 500px !important;
    }

    .banner .skitter .container_skitter .image .image_main {
        height: 500px !important;
    }

    .banner {
        height: 500px;
    }

    .banner .text-box {
        margin-bottom: 100px;
    }

    .banner .text-box h1 {
        font-size: 48px;
        text-shadow: -3px 4px #ff7843;
        letter-spacing: 5px;
    }

    .banner .text-box h5 {
        letter-spacing: 10px;
    }

    .banner .skitter {
        height: 500px !important;
    }


    .header-text,
    .header-text-link {
        margin: 0 0 50px 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header-text a,
    .header-text-link a {
        display: inline-block;
        width: 150px;
    }

    .header-link {
        padding-top: 10px;
    }

    .banner .text-box h5 {
        letter-spacing: 5px;
    }

    .game-btn {
        width: 190px;
        height: 55px;
        font-size: .75rem;
    }

    .search-area {
        padding: 100px 0 50px 0;
        margin-top: 50px;
    }

    .search-area .input-box {
        padding: 50px 15px;
    }

    .search-area .input-box .input-group .form-select {
        width: 120px;
        max-width: 120px;
        font-size: 0.688rem;
        padding: 19px 0 19px 10px;
        background: #fff;
    }

    .search-area .input-box .input-group .search-btn {
        width: 50px;
    }

    .search-area .input-box .input-group .form-control {
        padding: 12px 12px;
        font-size: 0.688rem;
    }

    .topup-section,
    .voucher-section,
    .giftcard-section,
    .about-section,
    .choose-section,
    .faq-section,
    .pricing-section,
    .blog-section {
        padding: 50px 0 35px 0;
    }

    .testimonial-section {
        padding: 50px 0;
    }

    .topup-section .img-box,
    .voucher-section .img-box,
    .giftcard-section .img-box {
        margin: 0 0 15px 0;
    }

    .search-area .input-box {
        margin: 0px;
    }

    .about-section .img-box,
    .about-section .text-box,
    .choose-section .img-box,
    .choose-section .text-box,
    .faq-section .img-box,
    .faq-section .text-box {
        margin: 0 0 15px 0;
    }

    .topup-section .img-box .tags,
    .voucher-section .img-box .tags,
    .giftcard-section .img-box .tags {
        display: block;
        float: right;
        text-align: left;
    }

    .topup-section .img-box .tags span,
    .voucher-section .img-box .tags span,
    .giftcard-section .img-box .tags span {
        font-size: 10px;
        display: inline-block;
        margin: 0 10px 5px 10px;
    }

    .pricing-section .pricing-box {
        margin: 0 0 15px 0;
    }

    .testimonial-section .review-box {
        margin: 0;
        padding: 50px 0 0 0;
    }

    .blog-section .blog-box {
        margin: 0 0 40px 0;
    }

    .footer-section .footer-box {
        margin: 0 5px -21px 5px;
	text-align: center;
    }

    .footer-section .footer-box h5 {
        margin-top: 0;
    }

    .shop-section .item-area .img-box .tags {
        display: block;
        float: right;
        text-align: right;
    }

    .shop-section .item-area .img-box .tags span {
        font-size: 10px;
        display: inline-block;
        margin: 0 10px 5px 10px;
    }

    .details-section {
        margin: 10px 0px;
    }

    .details-section .order-box {
        padding: 0px;
    }

    .details-section .order-box .input-box .form-control,
    .details-section .order-box .input-box .form-select {
        width: 100%;
        /* -webkit-clip-path: polygon(5% 0, 100% 0, 100% 0, 100% 65%, 95% 100%, 0 100%, 0 100%, 0% 35%);
        clip-path: polygon(5% 0, 100% 0, 100% 0, 100% 65%, 95% 100%, 0 100%, 0 100%, 0% 35%); */
    }

    .details-section .payment-box {
        padding: 0px;
    }

    .details-section .payment-box .btn-check + .btn-primary {
        padding: 15px 0px;
    }

    .details-section .payment-box .row {
        --bs-gutter-x: 0.5rem !important;
    }

    .package-details {
        margin: 50px 0;
    }

    .package-details .description-box {
        padding: 15px;
    }

    .package-details .description-box .navigator button {
        width: 105px;
        margin: 0 2px 10px 0;
        font-size: 0.688rem;
    }

    .package-details #reviews .review-box .text {
        width: 70%;
    }

    .package-details #reviews .review-box .review-date {
        width: 30%;
    }

    .package-details .related-items .img-box .tags {
        display: block;
        float: right;
        text-align: right;
    }

    .package-details .related-items .img-box .tags span {
        font-size: 10px;
        display: inline-block;
        margin: 0 10px 5px 10px;
    }

    .contact-section {
        padding: 50px 0;
    }

}

/*# sourceMappingURL=style.css.map */

.container_skitter .label_skitter {
    padding: 0 300px;
}


@media (max-width: 575px) {
    .container_skitter .label_skitter {
        padding: 0 0;
    }

    .banner .text-box h5 {
        letter-spacing: 3px;
    }

    .banner .text-box h1 {
        font-size: 30px;
    }

    .header-link {
        padding-top: 0px;
    }
}

.checked-img-circle {
    position: absolute;
    z-index: 1;
    top: 13%;
    left: 4%;
    background: red;
}

.package-list {
    width: 170px;
    text-align: center;
    /*background: #fff;*/
    display: block;
}

.package-list.gateway {
    width: 130px !important;
}

.package-list-active {
    background: red;
    color: #212529;
    /*background: #fff !important;*/
}

.w-15 {
    width: 15%
}

.secbg {
    background: #1e1027;
}

.image-input {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #f0f8ff;
    background: #564d5c;
}

.image-input #image {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.image-input #image-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 100px;
    z-index: 5;
    opacity: 0.3;
    cursor: pointer;
    background-color: #fff;
    font-size: 25px;
    border: 2px dashed #000;
    margin: auto;
    text-align: center;
}

.image-input .preview-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
}

.custom-card.card-lg.bg-gradient .nav-link.active {
    color: #fff;
    background-color: var(--base-secondary);
    border-color: var(--base-secondary) var(--base-secondary) var(--base-secondary);
}

.custom-card.card-lg.bg-gradient .nav-link {
    color: var(--base);
}

.custom-card.card-lg.bg-gradient .nav-tabs .nav-link {
    border: 1px solid var(--base);
}

.custom-card.card-lg.bg-gradient .nav-tabs {
    border-bottom: 1px solid var(--base);
}

.transection__table.table thead tr {
    background: var(--base);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
}

.transection__table.table tbody {
    font-size: .75rem;
}

@media (min-width: 992px) {
    .transection__table.table tbody tr td {
        border-color: rgba(255, 255, 255, 0.1);
    }
}

.transection__table.table tbody tr td {
    color: #fff;
}


.transection__table.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: #fff;
}

.transection__table.table tbody tr td {
    color: #f5f6f6;
    vertical-align: middle;
    padding: 10px 15px;
    border-width: 1px;
}


/*Support Ticket*/
.chat-box.scrollable.position-relative.scroll-height {
    background: rgb(27 15 35 / 37%);
    padding: 10px;
    margin-top: 15px;
}

ul.chat-list.list-style-none {
    padding-left: 15px;
    padding-right: 15px;
}

.chat-list .chat-item .chat-content .msg {
    background-color: rgba(255, 255, 255, 0.11);
    font-size: .75rem;
    max-width: 95%;
    border-radius: 6px;
    margin-top: 5px;
}

li.chat-item.list-style-none.mt-3 {
    list-style: none;
}

li.chat-item.list-style-none.replied.mt-3.text-right {
    display: flex;
    flex-direction: row-reverse;
}

.chat-img {
    padding-top: 9px;
}

.chat-list .chat-item.replied .chat-img {
    margin-left: 15px;
}

.chat-list .chat-item.replied .chat-content .msg {
    text-align: left;
}


#upload {
    opacity: 0;
    cursor: pointer;

}

.new-file-upload {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: initial;
    overflow: hidden;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #5f76e8;
    cursor: pointer;
}

.new-file-upload input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
}

.new-file-upload span,
.new-file-upload span::before {
    cursor: pointer;
}

.upload-btn {
    position: relative;
}

.new-file-upload a {
    color: #fff;
}

.select-files-count {
    position: absolute;
    font-size: 0.688rem;
    white-space: nowrap;
    right: 20px;
}

.ticket-box {
    height: 200px;
    max-height: initial;
    background: #131e51;
}


.card-body-buttons {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn button {
    background: limegreen;
    padding: 9px 13px;
    border-radius: 50%;
    color: white;
    border: 1px solid limegreen;
    transition: background .1s ease;
}

.submit-btn button:hover {
    background: limegreen;
}

.chat-time {
    font-size: 0.688rem;
}


.ticket-reply textarea {
    max-height: initial !important;
    padding: 0 0 0 15px;
}

.preview-form input,
.preview-form textarea {
    color: #fff !important;
}

#replayTicket {
    left: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    line-height: 0;
}


/**Global for this css **/

#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning {
    fill: #fff !important;
}

[v-cloak] {
    display: none;
}

.w-150px {
    width: 150px;
}

textarea.form-control {
    min-height: calc(1.5em + 5.75rem + 2px);
}

.login-section .contact-box select.form-control option {
    background: #3f3345;
    color: #fff;
}

.text-success {
    color: #28C76F !important;
}

.text-danger {
    color: #EA5455 !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}


.login-section .pagination .page-item {
    margin: 2px;
}

.login-section .pagination .page-item .page-link {
    border-radius: 0 !important;
    padding: 6px 16px;
    border: none;
    color: #fff;
    background: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.login-section .pagination .page-item .page-link:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.login-section .pagination .page-item:hover .page-link,
.login-section .pagination .page-item.active .page-link {
    color: #fff;
    background: var(--base);
}

.btn-custom {
    color: #fff;
    background-color: var(--base) bd;
    border-color: var(--base);
}

.media-img img {
    max-width: 80px;
}

.br-4 {
    border-radius: 4px !important;
}

.button-33 {
    background-color: #c2fbd7;
    border-radius: 100px;
    box-shadow: rgb(44 187 99 / 20%) 0 -25px 18px -14px inset, rgb(44 187 99 / 15%) 0 1px 2px, rgb(44 187 99 / 15%) 0 2px 4px, rgb(44 187 99 / 15%) 0 4px 8px, rgb(44 187 99 / 15%) 0 8px 16px, rgb(44 187 99 / 15%) 0 16px 32px;
    color: green;
    cursor: pointer;
    display: inline-block;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}


.btn-base {
    color: #fff;
    position: relative;
    text-transform: uppercase;
    width: 270px;
    display: inline-block;
    text-decoration: none;
    height: 60px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    transition: 0.4s;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(253,200,48,1) 0%, rgba(243,115,53,1) 100%);
    line-height: 3.0;

}

.btn-base:hover {
    color: #fff;;
}

.bg-custom {
    color: var(--base);
    background-color: var(--base);
}

.modal-header-custom {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid var(--base);
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header-custom .modal-title {
    font-size: 0.875rem;
}

.modal-footer-custom {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    /*border-top: 1px solid #804301;*/
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
    color: #481666;
    background-color: #574c5c;
}

.modal-body-custom {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
    background-color: #574c5c;
}

.btn-success-custom:hover,
.btn-success-custom {
    color: #fff;
    background-color: var(--base);
    border-color: var(--base);
}

.shop-section {
    margin: 100px 0;
}

.shop-section h4 {
    text-transform: uppercase;
}

.shop-section .form-select,
.shop-section .form-control {
    border-radius: 0px;
    border: none;
    height: 48px;
    font-size: .75rem;
    padding: 15px;
    caret-color: var(--base);
}

.shop-section .form-select:focus,
.shop-section .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.shop-section .form-select {
    padding: 15px;
    border-radius: 10px;
    /* -webkit-clip-path: polygon(
        7% 0,
        100% 0,
        100% 0,
        100% 70%,
        93% 100%,
        0 100%,
        0 100%,
        0% 30%
    );
    clip-path: polygon(
        7% 0,
        100% 0,
        100% 0,
        100% 70%,
        93% 100%,
        0 100%,
        0 100%,
        0% 30%
    ); */
}

.shop-section .filter-area .filter-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 8px;
}

.shop-section .filter-area .filter-box h4 {
    margin-bottom: 20px;
}

.shop-section .filter-area .filter-box .input-group .input-group-text {
    border: none;
    border-radius: 0px;
    padding: 0;
}

.shop-section .filter-area .filter-box .input-group .input-group-text button {
    background: var(--base-secondary);
    height: 100%;
    width: 60px;
    border: none;
}

.shop-section .filter-area .filter-box .form-range::-webkit-slider-thumb {
    background: var(--base);
}

.shop-section .filter-area .filter-box .form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
    background: #fff;
    border: none;
    border-radius: 0px !important;
    margin-right: 10px;
}

.shop-section .filter-area .filter-box .form-check .form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 133, 3, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(255, 133, 3, 0.2);
}

.shop-section .filter-area .filter-box .form-check .form-check-input:checked {
    background-color: var(--base);
    border-color: var(--base);
}

.shop-section .filter-area .filter-box .tag-item label {
    background: #fff;
    margin: 0 5px 10px 0;
    border-radius: 0px;
    color: var(--base);
    font-size: 0.688rem;
    text-transform: uppercase;
    border: none;
}

.shop-section
.filter-area
.filter-box
.tag-item
.btn-check:checked
+ .btn-primary {
    background: var(--base) !important;
    color: #fff;
}

.shop-section
.filter-area
.filter-box
.tag-item
.btn-check:focus
+ .btn-primary,
.shop-section .filter-area .filter-box .tag-item .btn-primary:focus {
    color: #fff;
    background-color: #fff;
    border-color: var(--base);
    -webkit-box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.shop-section .item-area .form-select {
    width: 200px;
}

.shop-section .item-area .form-select option:hover {
    color: #fff;
    background: var(--base) !important;
}

.shop-section .item-area .img-box {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
}

.shop-section .item-area .img-box img {
    border-radius: 10px;
    margin-bottom: 10px;
}

.shop-section .item-area .img-box .tags {
    position: absolute;
    top: 20px;
    width: 100%;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.shop-section .item-area .img-box .tags span {
    background: var(--base);
    color: #fff;
    font-size: 0.688rem;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 5px;
}

.shop-section .item-area .img-box .tags span:first-child {
    margin-left: 20px;
}

.shop-section .item-area .img-box .tags span:last-child {
    margin-right: 20px;
}

.shop-section .item-area .img-box h5 {
    margin-bottom: 0;
}

.shop-section .game-box {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.shop-section .game-box .img-box {
    margin-right: 15px;
}

.shop-section .game-box .img-box img {
    width: 200px;
}

.shop-section .game-box .more-info {
    text-transform: capitalize;
}

.shop-section .game-box .name {
    margin-bottom: 5px;
}

.shop-section .game-box .game-level {
    color: var(--base);
    text-transform: capitalize;
}

.shop-section .game-box .game-btn-sm {
    font-size: 13px;
    height: 45px;
    padding-top: 3px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.shop-section .game-box .game-btn-sm img {
    width: 14px;
    right: -5px;
}

.shop-section .pagination .page-item {
    margin: 2px;
}

.shop-section .pagination .page-item .page-link {
    border-radius: 0 !important;
    padding: 6px 16px;
    border: none;
    color: #fff;
    background: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.shop-section .pagination .page-item .page-link:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.shop-section .pagination .page-item:hover .page-link,
.shop-section .pagination .page-item.active .page-link {
    color: #fff;
    background: var(--base);
}

.sell-post-details {
    padding: 100px 0;
}


.sell-post-details .game-box {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.sell-post-details .game-box .img-box {
    margin-right: 15px;
}

.sell-post-details .game-box .img-box img {
    width: 200px;
    border-radius: 10px;
}

.sell-post-details .game-box .more-info {
    text-transform: capitalize;
}

.sell-post-details .game-box .name {
    margin-bottom: 5px;
}

.sell-post-details .game-box .game-level {
    color: var(--base);
    text-transform: capitalize;
}

.sell-post-details .game-box .game-btn-sm {
    font-size: 13px;
    height: 45px;
    padding-top: 3px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.sell-post-details .game-box .game-btn-sm img {
    width: 14px;
    right: -5px;
}


.sell-post-details .game-box {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.sell-post-details .game-box .img-box {
    margin-right: 15px;
    width: 200px;
    height: 200px;
}

.sell-post-details .game-box .img-box img {
    min-width: 200px;
    width: 200px;
    height: 200px;
    border-radius: 10px;
}

.sell-post-details .game-box .img-box.owl-carousel .owl-dots {
    text-align: center;
    position: relative;
    top: -33px;
}

.sell-post-details .game-box .img-box.owl-carousel .owl-dots button.owl-dot {
    margin: 0 3px;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    background: var(--base-rgba);
}

.sell-post-details .game-box .img-box.owl-carousel .owl-dots button.owl-dot.active {
    background: var(--base);
}

.sell-post-details .game-box .more-info {
    text-transform: capitalize;
}

.sell-post-details .game-box .name {
    margin-bottom: 5px;
}

.sell-post-details .game-box .game-level {
    color: var(--base);
    text-transform: capitalize;
}

.sell-post-details .game-box .game-btn-sm {
    font-size: 13px;
    height: 45px;
    padding-top: 3px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.sell-post-details .game-box .game-btn-sm img {
    width: 14px;
    right: -5px;
}

.sell-post-details form {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
}

.sell-post-details form .form-label {
    text-transform: capitalize;
}

.sell-post-details form .form-control {
    border-radius: 0px;
    display: inline-block;
    margin: 0px 10px 10px 0;
    border: 1px solid #e9e9e9;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 60px;
    font-size: .75rem;
    padding: 20px;
    caret-color: var(--base);
    -webkit-clip-path: polygon(
        6% 0,
        100% 0,
        100% 0,
        100% 70%,
        94% 100%,
        0 100%,
        0 100%,
        0% 30%
    );
    clip-path: polygon(
        6% 0,
        100% 0,
        100% 0,
        100% 70%,
        94% 100%,
        0 100%,
        0 100%,
        0% 30%
    );
}

.sell-post-details form .form-control-sm {
    height: 50px;
    padding: 0 15px;
}

.sell-post-details form .form-control:focus {
    color: #fff;
    background-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--base);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.sell-post-details form .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.sell-post-details form .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.sell-post-details form .form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.sell-post-details form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.sell-post-details form textarea.form-control {
    height: 100%;
    -webkit-clip-path: polygon(
        4% 0,
        100% 0,
        100% 0,
        100% 84%,
        96% 100%,
        0 100%,
        0 100%,
        0 16%
    );
    clip-path: polygon(
        4% 0,
        100% 0,
        100% 0,
        100% 84%,
        96% 100%,
        0 100%,
        0 100%,
        0 16%
    );
}

.sell-post-details form .game-btn-sm {
    font-size: .75rem;
}

@media (max-width: 767px) {
    .game-box {
        text-align: center;
    }

    .game-box .img-box {
        margin-bottom: 15px;
    }

    .shop-section .game-box .game-btn-sm {
        position: relative !important;
        top: 0;
        right: 0;
        margin-top: 15px;
    }
}

.upload-sell-post {
    padding: 100px 0;
}

.upload-sell-post .selected-image {
    border-radius: 10px;
    max-height: 176px;
    min-height: 176px;
    width: 100%;
}

.upload-sell-post .upload-img {
    position: relative;
    padding: 8px 12px;
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #b2bac2;
}

.upload-sell-post .upload-img h5 {
    margin-bottom: 0;
}

.upload-sell-post .upload-img input {
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100% !important;
    margin: auto;
    cursor: pointer !important;
}

.upload-sell-post .upload-img:hover h5 {
    color: var(--base);
}

.upload-sell-post .form-box {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
}

.upload-sell-post .form-group {

    margin-bottom: 15px;
}

.upload-sell-post .form-box .form-label {
    text-transform: capitalize;
}

.upload-sell-post .form-box .form-select,
.upload-sell-post .form-box .form-control {
    border-radius: 0px;
    display: inline-block;
    /*margin: 0px 10px 10px 0;*/
    border: 1px solid #e9e9e9;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 60px;
    font-size: .75rem;
    padding: 20px;
    caret-color: var(--base);
    -webkit-clip-path: polygon(
        3% 0,
        100% 0,
        100% 0,
        100% 70%,
        97% 100%,
        0 100%,
        0 100%,
        0% 30%
    );
    clip-path: polygon(
        3% 0,
        100% 0,
        100% 0,
        100% 70%,
        97% 100%,
        0 100%,
        0 100%,
        0% 30%
    );
}

.upload-sell-post .form-box .form-select:focus,
.upload-sell-post .form-box .form-control:focus {
    color: #fff;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--base);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.upload-sell-post .form-box .form-select::-webkit-input-placeholder,
.upload-sell-post .form-box .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.upload-sell-post .form-box .form-select:-ms-input-placeholder,
.upload-sell-post .form-box .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.upload-sell-post .form-box .form-select::-ms-input-placeholder,
.upload-sell-post .form-box .form-control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.upload-sell-post .form-box .form-select::placeholder,
.upload-sell-post .form-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.upload-sell-post .form-box .form-select option {
    color: #000;
}

.upload-sell-post .form-box textarea.form-control {
    height: 100%;
    -webkit-clip-path: polygon(
        2% 0,
        100% 0,
        100% 0,
        100% 88%,
        98% 100%,
        0 100%,
        0 100%,
        0 12%
    );
    clip-path: polygon(
        2% 0,
        100% 0,
        100% 0,
        100% 88%,
        98% 100%,
        0 100%,
        0 100%,
        0 12%
    );
}

.note {
    color: #fff;
    background-color: var(--base-secondary);
    border-color: var(--base-secondary);
}

.dark-bg {
    background: rgba(25, 14, 31, 0.3);
}


.header-box-title,
.header-box-link {
    margin: 0 0 20px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-box-title .info {
    cursor: pointer
}

.
.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #e2e0e3;
    text-align: center;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #6d6572;
    border-radius: 0.25rem;
    caret-color: var(--base);
    -webkit-clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%);
}

.removeFile {
    border-radius: unset !important;
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    z-index: 1;
}

.z0 {
    z-index: 0 !important;
}

.z9 {
    z-index: 9 !important;
}

.logo-text img {
    max-width: 100%;
    max-height: 100%;
}

.image-input .preview-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
}

.image-input .preview-image-product {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    height: 85%;
}

.image-preview {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.sell-post-details .offer-maker-list {
    /*background: rgba(255, 255, 255, 0.2);*/
    background: rgb(27 15 35 / 37%);
    padding: 30px;
}

#sortByActionBtn.dropdown-toggle::after,
#offerActionBtn.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: none;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

#sortByActionBtn + ul,
#offerActionBtn + ul {
    min-width: 0;
    margin: 0;
    background: rgba(27, 15, 35, 0.62);
    border: 1px solid var(--base);
}


.base-color {
    color: var(--base);
}

#sortByActionBtn + ul > li > a,
#offerActionBtn + ul > li > a {
    color: #fff;
}

#sortByActionBtn + ul > li > a:hover,
#offerActionBtn + ul > li > a:hover {
    background-color: rgb(24 13 30 / 60%);
    color: #fff;
}

#btnSellAll.game-btn-sm {
    width: 117px;
    height: 40px;
}

#offerList.sell-post-details {
    padding: 0px 0;
}

/*WA CHat Box*/

.report .card {
    border: none;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-image: linear-gradient(to bottom, rgb(10 11 16 / 45%), rgb(25 26 33 / 45%)), url(../../../uploads/logo/wa.jpg);
}

.report img {
    border-radius: 20px;
}


.report .adiv {
    background: #2A2F32;
    border-radius: 15px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 0.688rem;
    height: 46px
}

.report .adiv p {
    font-size: 0.875rem;
    margin-top: 0;
}

.report .chat {
    border: none;
    background-color: #262D31;
    font-size: .75rem;
    border-radius: 5px;
}

.report .bg-white {
    border: 1px solid #056263;
    font-size: .75rem;
    border-radius: 10px;
    background-color: #056263 !important;
}

.text-wa {
    color: #fff;
    font-size: .75rem;
}

.report .myvideo img {
    border-radius: 20px
}

.writing-box {
    background: #2A2F32 !important;
}

.writing-box .send {
    padding-right: 10px;
}

.report .writing-box .input--group.px-3 {
    padding: 25px 15px 0 20px !important;
    width: 100%;
}

.report .form--control {
    background: #33383B;
    border-radius: 15px;
    min-height: 20px;
    max-height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 15px;
    font-weight: 400;
    word-wrap: break-word;
    white-space: pre-wrap;
    outline: none;
    padding: 10px 20px;
}

.report .form-control:focus {
    box-shadow: none
}

.report .form-control::placeholder {
    font-size: 8px;
    color: #E3E3E5;
}

.timmer {
    font-size: 10px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding-right: 20px;
    padding-bottom: 5px;
}

.chat-length {
    min-height: 500px;
    max-height: 600px;
    overflow-x: hidden;
}

.type_msg {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border: 0 !important;
    color: white !important;
    height: 60px !important;
    overflow-y: auto;
}

.type_msg:focus {
    box-shadow: none !important;
    outline: 0 !important;
}

/* End WA chat*/
.btn-success {
    background-color: #2ecc71 !important;
    border-color: #2ecc71 !important;
}

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.writing-box .send {
    padding-right: 10px;
}

.text-center {
    text-align: center !important;
}

.la, .las {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 900;
}

.la, .lab, .lad, .lal, .lar, .las {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.input-group:not(:last-child) {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mw-130 {
    min-width: 140px;
}

.user img {
    border: 3px solid !important;
}

.user .batti {
    font-size: 10px;
    right: 3% !important;
    bottom: 12% !important;
}

.padding {
    padding-top: 0.25rem !important;
    padding-right: 1.5rem !important;
}

.user img {
    border: 3px solid #6f6873 !important;
}

.active-light {
    bottom: 0px;
    right: 0px;
    font-size: 10px;
}

.w-90 {
    width: 90%;
}

.offer-maker-list .paid-making-payment {
    padding: 5px;
    background: #483b4f;
}

.contact-box .select-background {
    background: #6d6572 !important;
}


.sell-post-details .item-area .img-box .tags span {
    background: var(--base);
    color: #fff;
    font-size: 0.688rem;
    text-transform: uppercase;
    padding: 2px 6px;
    margin: 0 10px;
}

.sell-post-details .pagination .page-item {
    margin: 2px;
}

.sell-post-details .pagination .page-item .page-link {
    border-radius: 0 !important;
    padding: 6px 16px;
    border: none;
    color: #fff;
    background: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.sell-post-details .pagination .page-item .page-link:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.sell-post-details .pagination .page-item:hover .page-link, .sell-post-details .pagination .page-item.active .page-link {
    color: #fff;
    background: var(--base);
}

.offer-list-form form {
    background: transparent !important;
    padding-bottom: 0 !important;
}

.offer-list-form .contact-box {
    background-color: rgba(255, 255, 255, 0.2);
    padding-bottom: 20px !important;
}

.offer-list-form.search-box .contact-box {
    background-color: rgba(255, 255, 255, 0.2);
    padding-bottom: 20px !important;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.sortByBtn {
    float: right
}

@media (max-width: 767px) {

    .sortByBtn {
        float: left
    }
}

.offer-list-form .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--base-secondary);
}

.withdraw-detail .form-control:disabled,
.withdraw-detail .form-control[readonly] {
    background-color: #7c7181;
    border: #7c7181;
    color: white;
    opacity: 1;
}

.withdraw-detail .form-control:disabled,
.withdraw-detail .form-control[readonly]:focus {
    outline: none !important;
    border: #7c7181;
    box-shadow: 0 0 0px #7c7181;
}

.withdraw-detail .form-control {
    background-color: rgb(27 15 35 / 37%);
    border: rgb(27 15 35 / 37%);
    color: white;
    opacity: 1;
}

.withdraw-detail .form-control:focus {
    outline: none !important;
    border: rgb(27 15 35 / 37%);
    box-shadow: 0 0 0px #7c7181;
}

.earn.form-control {
    background-color: #7c7181;
    border: #7c7181;
    color: #121212e0;
    opacity: 1;
}

.earn.form-control {
    outline: none !important;
    border: #7c7181;
    box-shadow: 0 0 0px #7c7181;
}

.modal-price.form-control {
    background-color: #7c7181;
    border: #7c7181;
    color: white;
    opacity: 1;
}

.modal-price.form-control {
    outline: none !important;
    border: #7c7181;
    box-shadow: 0 0 0px #7c7181;
}

.card-preview {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #4d4454;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
}

.preview-list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #eae9eb;
    text-decoration: none;
    background-color: #fff;
    border: 1px solidrgba(0, 0, 0, .125);
}

.w-20 {
    width: 27% !important;
}

.wh-200-150 {
    width: 223px;
    height: 150px;
}

.input-group:not(:last-child) {
    margin-top: 00px;
    margin-bottom: 00px;
}

.fileinput .thumbnail {
    display: inline-block;
    margin-bottom: 5px;
    overflow: hidden;
    text-align: left !important;
    vertical-align: middle;
    max-width: 60%;
    max-height: 60%;
}

.img-define {
    max-height: 145px !important;
}

.custom-success {
    background-color: #2ecc71 !important;
    border-color: #2ecc71 !important;
}

.dashboard__card-1 {
    background: #193576 !important;
}

.dashboard__card-icon-1, .dashboard__card .view-btn-1 {
    color: #193576 !important;
}

.dashboard__card-2 {
    background: #1B75BC !important;
}

.dashboard__card-icon-2, .dashboard__card .view-btn-2 {
    color: #1B75BC !important;
}

.dashboard__card-3 {
    background: #F6296E !important;
}

.dashboard__card-icon-3, .dashboard__card .view-btn-3 {
    color: #F6296E !important;
}

.dashboard__card-4 {
    background: #1562A1 !important;
}

.dashboard__card-icon-4, .dashboard__card .view-btn-4 {
    color: #1562A1 !important;
}

.dashboard__card-5 {
    background: #ad0a0a !important;
}

.dashboard__card-icon-5, .dashboard__card .view-btn-5 {
    color: #ad0a0a !important;
}

.dashboard__card-6 {
    background: #1c3364 !important;
}

.dashboard__card-icon-6, .dashboard__card .view-btn-6 {
    color: #1c3364 !important;
}

.dashboard__card-7 {
    background: #FB542B !important;
}

.dashboard__card-icon-7, .dashboard__card .view-btn-7 {
    color: #FB542B !important;
}

.dashboard__card-8 {
    background: #c17416 !important;
}

.dashboard__card-icon-8, .dashboard__card .view-btn-8 {
    color: #c17416 !important;
}

.dashboard__card-9 {
    background: #506e2e !important;
}

.dashboard__card-icon-9, .dashboard__card .view-btn-9 {
    color: #506e2e !important;
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .dashboard__card {
        padding: 25px;
    }
}

.dashboard__card-content .price {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #fff;
}

@media (max-width: 1399px) {
    .dashboard__card-content .price {
        font-size: 15px;
    }
}

.dashboard__card-content .info {
    color: #fff;
    font-size: 0.688rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .dashboard__card-content .info {
        font-size: 13px;
    }
}

.dashboard__card-icon {
    color: var(--brand-color);
    background: #fff;
    font-size: 1rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-shadow: 2px 3px 5px;
    box-shadow: 0 3px 12px 3px rgba(255, 255, 255, 0.15);
}

@media (max-width: 1399px) and (min-width: 992px) {
    .dashboard__card-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media (max-width: 1399px) and (max-width: 450px) {
    .dashboard__card-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
}

@media (max-width: 991px) {

    .dashboard__card-content .info {
        font-size: 0.688rem;
    }

    .dashboard__card-icon {
        width: 45px;
        height: 45px;
        font-size: 0.875rem;
    }
}

.dashboard-section {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
}

div[class*=col]:nth-of-type(4n + 1) .dashboard__card {
    background: #352b3a;
}

.rating, .header-bottom-area, .menu, .contact-info-item, .dashboard__card, .deposit-group, .post__item-content .post-creator {
    display: flex;
    flex-wrap: wrap;
}

.dashboard__card {
    background: linear-gradient(-45deg, #0F054C 0%, #22196D 100%);
    padding: 18px;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
}

div[class*=col]:nth-of-type(4n + 1) .dashboard__card-icon {
    color: #352b3a;
}

.preloader, .video-button, .dashboard__card-icon, .dashboard-link, .feature-item_icon, .counter-item_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard__card-icon {
    color: var(--brand-color);
    background: #fff;
    font-size: 1rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-shadow: 2px 3px 5px;
    box-shadow: 0 3px 12px 3px rgb(255 255 255 / 15%);
}

.dashboard__card-icon img {
    max-width: 25px;
}

.sell-post-details {
    margin: 100px 0;
}

.sell-post-details .text-box {
    margin-top: 30px;
}

.sell-post-details .text-box h4 {
    text-transform: uppercase;
}

.sell-post-details .payment-box {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
}

.sell-post-details .payment-box h5 {
    text-transform: uppercase;
    margin-bottom: 30px;
}

.sell-post-details .payment-box .btn-check + .btn-primary {
    background: #fff;
    border: 4px solid #fff;
    border-radius: 0px;
    /* margin-bottom: 10px; */
    padding: 10px;
    display: block;
    color: #212529;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.sell-post-details .payment-box .btn-check + .btn-primary .check {
    position: absolute;
    left: 5px;
    top: 5px;
    opacity: 0;
}

.sell-post-details .payment-box .btn-check + .btn-primary::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    top: 0;
    left: 0;
}

.sell-post-details .payment-box .btn-check:checked + .btn-primary .check {
    opacity: 1;
}

.padding-x-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.sell-post-details .payment-box .btn-check:checked + .btn-primary::after {
    background: none;
}

.sell-post-details .payment-box .btn-check:focus + .btn-primary,
.sell-post-details .payment-box .btn-primary:focus {
    color: #000;
    background-color: #fff;
    border-color: var(--base-secondary);
    -webkit-box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.sell-post-details .payment-box .payment-options {
    height: 171px;
    padding-right: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.sell-post-details .payment-box .payment-options::-webkit-scrollbar {
    width: 6px;
}

.sell-post-details .payment-box .payment-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 100px;
}

.sell-post-details .payment-box .payment-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
}

.sell-post-details .payment-box .payment-options::-webkit-scrollbar-thumb:hover {
    background: var(--base);
}

.sell-post-details .estimate-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sell-post-details .estimate-box ul li {
    margin-bottom: 15px;
}

.sell-post-details .estimate-box ul li span {
    float: right;
}

.sell-post-details .estimate-box .game-btn-sm {
    font-size: .75rem;
}

.sell-post-details .estimate-box .game-btn-sm img {
    left: -10px;
}

.package-details {
    margin: 100px 0;
}

.sell-post-details form {
    background: rgb(27 15 35);
    padding: 0px;
}

.sell-post-details-custom form {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px;
}


.cursor-pointer {
    cursor: pointer
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    color: #f5f6f6;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}

.table-custom {
    overflow-x: inherit !important;
}

.recent-blog a {
    color: #fff;
    font-size: 16px;
    line-height: 2.8;
}

.recent-blog a:hover {
    color: var(--base);
}

.recent-blog a + p {
    font-size: 0.688rem;
}

.navbar .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item.active {
    background-color: transparent !important;
}

.btn-site {
    color: #fff;
    background-color: var(--base);
    border-color: var(--base);
}

.btn-site:hover {
    color: #fff;
    background-color: var(--base);
    border-color: var(--base);
}

.btn-check:focus + .btn-site, .btn-site:focus {
    color: #fff;
    background-color: var(--base);
    border-color: var(--base);
    box-shadow: none;
}

.form-box .input-group.prepend .game-btn {
    width: 80px;
    font-size: 13px;
    height: 60px;
    -webkit-clip-path: polygon(16% 0, 100% 0, 100% 0, 100% 70%, 100% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(16% 0, 100% 0, 100% 0, 100% 70%, 100% 100%, 0 100%, 0 100%, 0% 30%);
}

.form-box .input-group.append .form-control,
.form-box .input-group.append .form-select {
    -webkit-clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 100% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(3% 0, 100% 0, 100% 0, 100% 70%, 100% 100%, 0 100%, 0 100%, 0% 30%);
}

.form-box .input-group.append .game-btn {
    width: 80px;
    font-size: 13px;
    height: 60px;
    -webkit-clip-path: polygon(0% 0, 100% 0, 100% 0, 100% 70%, 84% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(0% 0, 100% 0, 100% 0, 100% 70%, 84% 100%, 0 100%, 0 100%, 0% 30%);
}

.form-box .input-group.prepend .form-control,
.form-box .input-group.prepend .form-select {
    /* -webkit-clip-path: polygon(0% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%);
    clip-path: polygon(0% 0, 100% 0, 100% 0, 100% 70%, 97% 100%, 0 100%, 0 100%, 0% 30%); */
}

.bg-form-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
}

.custom-card.card-lg.bg-gradient .nav-tabs .nav-link {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.form-select {
    background-image: url(../images/downward-arrow.png) !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
}

.prepend-btn {
    background: #1d1024;

    -webkit-clip-path: polygon(0% 0, 100% 0, 100% 0, 100% 70%, 100% 100%, 0 100%, 0 100%, 0% 30%) !important;
    clip-path: polygon(0% 0, 100% 0, 100% 0, 100% 70%, 100% 100%, 0 100%, 0 100%, 0% 30%) !important;
}

.prepend-btn::before, .prepend-btn::before {
    content: "";
    background: #1d1024;
}

.shop-section .form-select:focus,
.shop-section .form-control:focus {
    background-color: #493f4f;
    color: #fff;
}

.form-select option:checked {
    color: #fff;
    background-color: var(--base) !important;
}

.form-select option:hover {
    color: #fff;
    background-color: var(--base) !important;
}

.form-select:focus > .form-select option:checked {
    background-color: var(--base) !important;
}

.text-cursor {
    cursor: text !important;
}

.btn.btn-custom:hover {
    color: var(--base);
}

@media (max-width: 1399px) {

    .footer-section .footer-box h5 {
        font-size: 16px;
    }

    .footer-section .footer-box .social-links a {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        padding-top: 10px;
    }

    .footer-section .footer-box .social-links a i {
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .navbar .navbar-brand img {
        max-height: 100px;
    }

    .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
        min-width: 80px;
    }

    .banner .text-box h5 {
        letter-spacing: 24px;
    }

    .navbar .navbar-text {
        right: 20px;
    }

    .shop-section .game-box .game-btn-sm.makeOffer {
        font-size: 10px;
        height: 33px;
        padding-top: 3px;
        position: absolute;
        top: 15px;
        right: 8px;
        width: 100px;
    }
}

@media (max-width: 1020px) {
    .navbar .navbar-brand img {
	width: 100%;
    }

    .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
        min-width: 60px;
    }

    .footer-section .footer-box .social-links a {
        width: 30px;
        height: 30px;
        margin-right: 10px;
        padding-top: 6px;
    }

    .footer-section .footer-box .social-links a i {
        font-size: .75rem;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-text {
        right: 110px;
    }

    .banner .text-box h5 {
        letter-spacing: 12px;
    }

    .banner .text-box h1 {
        font-size: 80px;
    }

    .banner .text-box {
        margin-bottom: 388px;
    }

    h5 {
        font-size: 15px;
    }

    .shop-section .game-box .game-btn-sm.makeOffer {
        font-size: 10px;
        padding-top: 3px;
        position: absolute;
        right: 8px;
        top: unset;
        bottom: 10px;
        width: 200px;
        height: 40px;

    }

    .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
        min-width: 100px;
    }

}

@media (max-width: 767px) {
    .banner .text-box h5 {
        letter-spacing: 7px;
    }

    h2 {
        font-size: 24px;
    }

    .shop-section .game-box .img-box + div {
        float: left;
    }

    .shop-section .game-box .name {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .banner .text-box {
        margin-bottom: 130px;
    }

    .banner .text-box h1 {
        font-size: 42px;
    }

    .banner .text-box h5 {
        letter-spacing: 2px;
    }

    .topup-section .img-box img,
    .voucher-section .img-box img,
    .giftcard-section .img-box img {
        /*width: 100%;*/
    }

    section.shop-section.sell-post .col-md-8.mt-5.mt-lg-0 .col-md-12.col-sm-6 {
        width: 50%;
    }

    .img-box.image-slider.owl-carousel.owl-loaded.owl-drag {
        width: 100%;
    }

    .shop-section .game-box .game-btn-sm.makeOffer {
        width: 100%;
    }

}

@media (max-width: 480px) {
    .banner .text-box {
        margin-bottom: 130px;
    }

    .banner .text-box h1 {
        font-size: 42px;
    }

    .banner .text-box h5 {
        letter-spacing: 2px;
    }

    .shop-section .item-area .col-md-3.col-sm-4.col-4 {
        width: 50%;
    }
}


@media (max-width: 450px) {

    .topup-section .col-lg-2.col-md-3.col-sm-4.col-4,
    .voucher-section .col-lg-2.col-md-3.col-sm-4.col-4,
    .giftcard-section .col-lg-2.col-md-3.col-sm-4.col-4 {
        width: 50%;
    }

    section.shop-section.sell-post .col-md-8.mt-5.mt-lg-0 .col-md-12.col-sm-6 {
        width: 100%;
    }

    .img-box.image-slider.owl-carousel.owl-loaded.owl-drag {
        width: 200px;
    }

    .shop-section .game-box .game-btn-sm.makeOffer {
        max-width: 100%;
    }
}


@media (max-width: 414px) {
    .page-header {
        padding: 120px 0 80px 0;
    }
}

@media (max-width: 350px) {
    .navbar .navbar-text .notification-icon {
        margin-right: 16px;
    }

    .navbar .navbar-text {
        right: 90px;
    }

    h2 {
        font-size: 20px;
    }

    .header-text a, .header-text-link a {
        display: inline-block;
        width: 105px;
    }

    .header-text-link a i {
        position: relative;
        top: 2px;
        right: -1px;
        -webkit-transition: 0.4s;
        transition: 0.4s;
        font-size: 0.875rem;
    }

    .voucher-section .img-box .tags span,
    .topup-section .img-box .tags span,
    .giftcard-section .img-box .tags span {
        padding: 2px 3px;
    }

    .banner .text-box {
        margin-bottom: 130px;
    }

    .banner .text-box h1 {
        font-size: 1rem;
    }

    .banner .text-box h5 {
        letter-spacing: 2px;
    }
}

.table {
    margin: 0;
    border: none;
    width: 100%;
    border-collapse: collapse;
}

.table thead tr {
    background: var(--base);
}

.table thead tr th {
    padding: 10px 15px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table tbody {
    font-size: .75rem;
}

.table tbody tr {
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.table tbody tr td {
    color: #f5f6f6;
    vertical-align: middle;
    padding: 10px 15px;
    border-width: 1px;
}

.table tbody tr td .badge {
    text-transform: capitalize;
}

@media (min-width: 992px) {
    .table tbody tr td {
        border-color: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 991px) {

    .table tbody tr td {
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: end;
        padding-left: 25px;
    }

    .table tbody tr td:last-child {
        border: none;
    }

    .table tbody tr td::before {
        content: attr(data-label);
        font-family: 'Montserrat', Arial, Helvetica, sans-serif;
        font-size: 15px;
        color: #ffffff;
        font-weight: 500;
    }
}

img.gateway.w-100 {
    min-height: 80px !important;
}
.card.card-type-1{
    background: transparent !important;
}

.card-icon {
    border: 1px solid var(--base);
    max-height: 142px !important;
}

button.btn.btn-site.addFund{
    border-radius: 0;
}



/* support  section Css*/

.contact-us {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #333, #222); /* Darker gradient */
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}

.contact-us h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-us p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure items wrap on small screens */
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 0.875rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Adding depth */
}

.contact-option:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3); /* Hover shadow */
}

.contact-option i {
    font-size: 22px;
}

.contact-option a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

/* Messenger and Instagram brand colors */
.contact-option.messenger {
    background-color: #006AFF; /* Messenger Blue */
    color: #fff; /* White text for better contrast */
}

.contact-option.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Instagram Gradient */
    color: #fff; /* White text for contrast */
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .contact-option {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .contact-options {
        gap: 10px; /* Reduce gap for mobile */
    }
}



/* My Order page css */
/* Main container styles */
.dashboard-right-sidebar {
    background-color: #1c1c1e; /* Dark theme background */
    padding: 20px;
    border-radius: 8px;
    color: #f1f1f1; /* Light text color for contrast */
}

/* Tab content */
.title-section h2 {
    font-size: 1.6rem; /* Slightly increased for better visibility */
    font-weight: 700; /* Bolder */
    margin-bottom: 25px; /* More space below title */
    color: #f1f1f1; /* Bright title */
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

/* Date range input styles */
.date-range-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.date-input {
    position: relative;
    flex: 1;
}

.date-input input {
    width: 100%;
    padding: 12px; /* Slightly increased padding */
    border: 1px solid #555; /* Darker border */
    border-radius: 5px;
    background-color: #2c2c2e; /* Dark input background */
    color: #f1f1f1; /* Light text color */
    font-size: 1rem;
}

.date-input input::placeholder {
    color: #aaa; /* Placeholder in light gray */
}

.date-input .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888; /* Icon color */
    cursor: pointer;
}

/* Search input and button */
.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #555; /* Darker border for better visual separation */
    border-radius: 4px;
    background-color: #2c2c2e;
    color: #f1f1f1;
    font-size: 1rem;
}

.form-input::placeholder {
    color: #aaa;
}

.search-btn {
    background-color: #007bff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.search-btn img {
    width: 16px;
    height: 16px;
}

/* Dropdown styling */
.dropdown-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.form-dropdown {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #2c2c2e;
    color: #f1f1f1;
    font-size: 1rem;
    cursor: pointer;
}
/* Main container */
.responsive-card {
    background-color: #2d2f36;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin: 15px auto;
    /*max-width: 350px; */
    color: #fff;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* Order and date section */
.responsive-order-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.responsive-order-id, .responsive-order-date {
    font-size: 13px;
    color: #ccc;
}

.responsive-order-id span {
    font-weight: bold;
    color: #ffcc00;
}

.responsive-copy-icon {
    margin-left: 8px;
    color: #ffcc00;
    cursor: pointer;
}

/* Status section */
.responsive-status {
    font-size: 15px;
    color: #28a745;
    font-weight: bold;
    margin-bottom: 10px;
}

/* CSS for Order Statuses */
.status-complete { color: #2ecc71; }    /* Green for complete */
.status-processing { color: #FE9305; }  /* Amber for processing */
.status-unpaid { color: #e74c3c; }      /* Red for unpaid */
.status-refund { color: #00BCD4; }      /* Cyan for refund */


/* Game Information */
.responsive-game-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.responsive-game-name {
    font-weight: bold;
    font-size: 15px;
}

.responsive-game-info {
    color: #ccc;
    font-size: 0.688rem;
}

.responsive-game-price {
    font-size: 20px;
    color: #ffcc00;
    font-weight: bold;
}

/* User Information */
.responsive-user-info {
    font-size: 0.688rem;
    color: #ccc;
}

.responsive-user-info p {
    margin: 5px 0;
}

/* Buttons (Buy Again and Review) */
.responsive-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.responsive-buttons a {
    flex: 1; /* Allows buttons to occupy equal space */
    padding: 8px 12px;
    background-color: #ffcc00;
    color: #000;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    margin: 0 5px; /* Space between buttons */
    transition: background-color 0.3s;
}

.responsive-buttons a:hover {
    background-color: #e6b800;
}


/* Contact Page css start  */
.social-icons-container {
    display: flex;
    justify-content: start;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    background-color: #333;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #f8b500; /* Change hover color to match theme */
    color: #fff;
}

.social-icons-container a i {
    line-height: 50px; /* Vertically align the icons */
}

.contact-box form {
    background-color: #1c1c1e;
    padding: 20px;
    border-radius: 8px;
}

.form-control {
    /* background-color: #2c2c2e; */
    border: none;
    border-radius: 6px;
    /* color: #fff; */
    /* margin-bottom: 10px; */
}

.form-control:focus {
    border-color: #f8b500;
    box-shadow: none;
}

.game-btn {
    background-color: #f8b500;
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.game-btn:hover {
    background-color: #e09e00;
    color: #fff;
}




.regular-pay{
    font-size: .75rem;
    color: gray;
    text-decoration: line-through;
}
.regular{
    font-size: 20px;
    color: gray;
}
svg.line-svg {
    display: block;
    width: 100%;
    height: 20px; /* Set the height of the hr */
    margin: 30px 0; /* Add margin above and below the hr */
}

.nav-tabs {
    border: none;
    background-color: transparent;
    border-radius: 15px;
    padding: 10px;
}
.nav-tabs .nav-item{

}

.nav-link {
    color: #fff;
    border: none;
    border-radius: 6px !important;
    margin-right: 10px;
    padding: 10px 15px;
    /* background: var(--bs-secondary); */
    transition: background-color 0.3s ease;
    text-align: center;
    width: 112px;
    height: 100%;
}
.nav-tabs .nav-link.active {
    border: 2px solid #FDBB06;
    background-color: var(--bs-gray-dark) !important;
}

.nav-link:hover {
    background-color: #495057;
}

.tab-title {
    margin-top: 6px;
    font-size: 13px;
    color: #fff;
}
/* Recent Players Container */
        .recent-players-container {
            padding: 2px 4px;
            border-radius: 8px;
            overflow-x: auto; /* Enable horizontal scrolling */
            overflow-y: hidden; /* Disable vertical scrolling */
            display: flex; /* Use flex for horizontal layout */
            align-items: center; /* Align items vertically */
            scrollbar-width: thin; /* Thin scrollbar for Firefox */
            -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
        }

        .recent-players-container::-webkit-scrollbar {
            height: 8px; /* Set scrollbar height */
        }

        .recent-players-container::-webkit-scrollbar-thumb {
            background-color: #ccc; /* Set scrollbar thumb color */
            border-radius: 4px; /* Round corners of scrollbar thumb */
        }

        .recent-players-container::-webkit-scrollbar-track {
            background-color: #f0f0f0; /* Set scrollbar track color */
        }


            /* Hover effect */
            .player-entry:hover,
    .player-entry.hover-effect {
        background-color: #f0f0f0;
        cursor: pointer;
        transition: background-color 0.2s ease-in-out;
    }

    /* Click effect */
    .player-entry.click-effect {
        background-color: #d6d6d6;
        transition: background-color 0.1s ease-in-out;
    }


    .player-entry .player-id span {
        font-weight: bold;
    }

    .use {
        margin-right: 10px;
    }
    .use {
        background: #2196F3;
        padding: 3px 12px;
        border: none;
        border-radius: 4px;
        color: #fff;
        margin: 0px 8px 0px 16px;
        transition: all 0.3s ease;
    }

    .use:hover {
        background: #FFC107;
        transform: scale(1.05);
        border: none;
        box-shadow: 0 0 6px rgb(211 243 33 / 50%);
    }


    

    .player-entry:last-child {
        border-bottom: none;
    }

    .player-entry:hover {
        background: var(--bs-gray-800);
    }

    /* Player ID */
    .player-id {
        color: var(--bs-gray-300);
        font-size: .75rem;
    }

    /* Buttons */
    .player-entry .btn-primary {
        background: var(--bs-primary);
        border: none;
        padding: 4px 12px;
        font-size: 13px;
    }

    .player-entry .btn-primary:hover {
        background: var(--bs-primary-darker);
    }

    .player-entry .btn-link {
        color: var(--bs-gray-500);
        padding: 10px 14px;
        transition: color 0.2s ease;
    }

    .player-entry .btn-link:hover {
        color: var(--bs-danger);
    }

    /* Icons */
    .player-entry .fas {
        font-size: 16px;
    }

    /* Dark theme specific colors */
    [data-bs-theme="dark"] .recent-players-container {
        background: #2d2d3a;
    }

    [data-bs-theme="dark"] .player-entry {
        background: #1e1e2d;
        border-color: #363648;
    }

    [data-bs-theme="dark"] .player-entry:hover {
        background: #2a2a3c;
    }

    [data-bs-theme="dark"] .player-id {
        color: #e1e1e3;
    }

    .recent-players-container::-webkit-scrollbar {
        width: 6px; /* Thin scrollbar for Chrome/Edge */
    }

    .recent-players-container::-webkit-scrollbar-thumb {
        background-color: #555; /* Scrollbar thumb color */
        border-radius: 4px;
    }

    .recent-players-container::-webkit-scrollbar-thumb:hover {
        background-color: #777; /* Hover effect for scrollbar thumb */
    }

    /* Styling for player-entry */
    .player-entry {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        margin-bottom: 5px;
        border-radius: 6px;
        background-color: #1e1e2d; /* Dark card background */
        border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
        color: #e1e1e3; /* Light text color */
        transition: all 0.2s ease-in-out;
        margin-left: 10px;
    }

    .player-entry:hover {
        background-color: #2a2a3c; /* Slightly lighter on hover */
        cursor: pointer;
    }

    .player-id span {
        font-weight: bold;
        color: #ffeb3b; /* Yellow text for labels */
    }

    .player-nickname {
        font-style: italic;
        color: #28C76F !important;
        font-size: 0.688rem;
        padding: 2px 12px;
    }

    /* Click effect */
    .player-entry.click-effect {
        background-color: #444; /* Temporary click effect color */
        transition: background-color 0.1s ease-in-out;
    }

    .btn-link {
        all: unset; /* Reset all default styles */
        cursor: pointer; /* Add pointer cursor for interactivity */
        display: flex; /* Align icon properly */
        align-items: center;
        justify-content: center;
    }

    /* Delete icon styling */
    .btn-link i {
        font-size: 16px; /* Icon size */
        color: #ff4d4d; /* Icon color */
        transition: color 0.2s ease-in-out;
    }

    /* Hover effect for delete icon */
    .btn-link:hover i {
        color: #ff0000; /* Brighter red on hover */
    }
    .player-entry {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #1c1c1c;
        border: 1px solid #333;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 5px;
        color: #fff;
    }
    .player-nickname {
        font-style: italic;
        color: #00ff00; /* Green for nickname */
    }
    .btn-link {
        background: none;
        border: none;
        color: red;
        cursor: pointer;
    }
    .click-effect {
        animation: clickEffect 0.2s ease-in-out;
    }
    @keyframes clickEffect {
        from { transform: scale(1); }
        to { transform: scale(0.95); }
    }

.instruction-image {
    max-width: 100%;
    max-height: 220px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.instruction-container {
    margin-top: -8px;
    font-size: .70rem;
    font-style: normal;
}

.instruction-short {
    color: #555;
    line-height: 1.4;
}

.instruction-more-link,
.instruction-less-link {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
    margin-left: 5px;
}

.instruction-more-link:hover,
.instruction-less-link:hover {
    text-decoration: underline;
}

.instruction-text {
    font-size: .75rem;
    color: #ccc;
    line-height: 1.4;
    margin-bottom: 10px; /* Add some space between text and "Less" link */
}
.btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    opacity: 1; /* To make sure the color is fully opaque */
}

.btn-close:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ddd'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}

.description-container {
    width: 100%; /* Adjust as needed */
}

#truncated-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show initially */
    -webkit-box-orient: vertical;
    line-height: 1.4em; /* Adjust as needed */
    height: 2.8em;  /*  line-height * line-clamp */
}

#full-description {
    display: none; /* Initially hidden */
}

.toggle-description {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 8px 12px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    display: inline-flex; /* Aligns text and icon */
    align-items: center; /* Vertically center items */
    gap: 8px; /* Spacing between text and icon */
    font-size: .75rem;
    transition: background-color 0.2s; /* Smooth hover effect */
}

.toggle-description:hover {
    background-color: #e0e0e0;
}

/* Style the icons */
.show-more-icon,
.show-less-icon {
    font-size: .75rem; /* Adjust icon size */
}

/* Media query for desktop (min-width: 768px or your desired breakpoint) */
@media (min-width: 768px) {
    #truncated-description {
        -webkit-line-clamp: none; /* Show all lines on desktop */
        height: auto; /* Adjust height for full content */
        display: block; /* Override webkit-box */
    }

    #full-description {
        display: none !important; /* Always hide full description on desktop */
    }

    .toggle-description {
        display: none !important; /* Hide button on desktop */
    }
}
.toggle-description {
    background-color: #007bff; /* A shade of blue, similar to the interface */
    color: #fff; /* White text for contrast */
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    transition: background-color 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.toggle-description:hover {
    background-color: #0056b3; /* Darker shade of blue on hover */
}

.toggle-description:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.5); /* Add a focus effect */
}

/* Style the icons */
.show-more-icon,
.show-less-icon {
    font-size: .75rem;
}

/* Yellow accent for more contrast */
.show-more-text,
.show-less-text {
    color: #fff; /* Yellow color */
}

/* Media query for desktop (min-width: 768px or your desired breakpoint) */
@media (min-width: 768px) {
    #truncated-description {
        -webkit-line-clamp: none; /* Show all lines on desktop */
        height: auto; /* Adjust height for full content */
        display: block; /* Override webkit-box */
    }

    #full-description {
        display: none !important; /* Always hide full description on desktop */
    }

    .toggle-description {
        display: none !important; /* Hide button on desktop */
    }
}

.summary-container {
    z-index: 1000;
    width: 100%;
}

.summary {
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
    .summary-container .container {
        max-width: 100%;
    }
    
    .summary-container .btn {
        padding: 8px 16px;
        font-size: .75rem;
    }
}

    /* By default, show the element with class="spacegap" */
    .spacegap {
    display: block;
    }

    /* Hide it on mobile devices (screens smaller than 600px) */
    @media only screen and (max-width: 600px) {
    .spacegap {
        display: none;
    }
    }


    /* Modal Styles */
.modal-content {
    background-color: #212529; /* Dark background for better contrast */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0px 0px 20px 0px;
    font-style: normal;
}

.modal-header {
    background: #292C35;
    padding: 15px 20px;
    border-radius: 16px 16px 0px 0px;
}
.modal-body{
    padding: 1rem 2rem 0rem 2rem;
}

.modal-title {
    font-size: 1.5rem;
    color: #FFFFFF; /* White title for better readability */
}

.btn-close {
    color: white; /* Close button color */
}

/* Alert Styles */
.alert-info {
    background-color: #1E90FF; /* Blue background for alert */
    color: white;
    border-radius: 8px;
}

/* Section Headers */
h6.fw-bold {
    color: #FFFFFF; /* White section headers */
}

/* Row Items */
.d-flex.justify-content-between {
    margin-bottom: 0.75rem;
    font-style: normal;
}

.text-muted {
    color: #ccc !important; /* Light gray for labels */
}

.fw-medium {
    font-size: 1rem;
}

.fw-bold {
    font-size: 1.25rem;
}

/* Payment Details Colors */
.text-primary {
    color: #00BFFF !important; /* Blue for total amount */
}

.text-success {
    color: #32CD32 !important; /* Green for discount */
}

.text-warning {
    color: #FFD700 !important; /* Yellow for final payment */
}

/* Button Styles */
#confirmOrderBtn {
    background-color: #FF7F50; /* Coral gradient start */
    background-image: linear-gradient(135deg, #FF7F50, #FFD700); /* Coral to gold gradient */
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
}
#confirmOrderBtn:hover {
    background-image: linear-gradient(135deg, #FFD700, #FF4500); /* Gold to orange gradient on hover */
}

.btn-pay-now {
    background: linear-gradient(135deg, #4B6CB7, #182848);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-pay-now:hover {
    background: linear-gradient(135deg, #182848, #4B6CB7);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.modal-footer {
    border-top: none;
    padding-top: 0;
}


/* Dashboard Css */
       /* Profile Section */
       .custom-dashboard-header {
        background-color: #1c1e24;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .custom-profile-image img {
        border-radius: 50%;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .custom-profile-image img:hover {
        transform: scale(1.1);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    }

    .custom-username {
        font-size: 20px;
        color: #fff;
    }

    .custom-edit-link {
        color: #fff;
        margin-left: 5px;
    }

    .custom-two-factor-text {
        font-size: 14px;
        color: #b3b3b3;
    }

    .custom-logout-btn,
    .custom-cta-button {
        background-color: #ff4b5c; /* Red color */
        border-radius: 8px;
        padding: 10px 15px;
        font-size: 16px;
        color: #fff;
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-decoration: none; /* Remove underline on links */
    }

    .custom-logout-btn:hover,
    .custom-cta-button:hover {
        background-color: #ff7878; /* Slightly lighter red on hover */
        color: #fff; /* Ensure white text on hover */
        transform: scale(1.05); /* Hover effect to slightly enlarge */
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3); /* Optional hover shadow */
        text-decoration: none; /* Remove blue underline */
    }

    /* Remove blue focus outline when clicking the buttons */
    .custom-logout-btn:focus,
    .custom-cta-button:focus {
        outline: none; /* Remove blue outline */
        box-shadow: none; /* Remove any focus-related shadow */
    }

    /* Balance Section */
    .custom-balance-section {
        background-color: #272b34;
        padding: 20px;
        border-radius: 12px;
        margin: 20px 0;
        text-align: center;
    }

    .balance-card {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background-color: #2a2c36;
        border-radius: 12px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .balance-card:hover {
        transform: scale(1.02);
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
    }

    .balance-icon img {
        width: 60px;
        margin-right: 20px;
    }

    .balance-info {
        text-align: left;
    }

    .balance-label {
        font-size: 16px;
        color: #ffffff;
        margin-bottom: 5px;
    }

    .balance-amount {
        font-size: 36px;
        color: #ffffff;
        font-weight: bold;
    }

    .balance-logs {
        font-size: 14px;
        color: #b3b3b3;
        margin-top: 10px;
    }

    /* Review Section */
    .custom-review-container {
        text-align: center;
        background-color: #1c1e24;
        padding: 25px;
        border-radius: 12px;
        margin: 20px auto;
        width: 100%;
        /*max-width: 600px;*/
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .custom-review-heading {
        font-size: 28px;
        color: #ffffff;
        margin-bottom: 10px;
    }

    .custom-review-text {
        font-size: 16px;
        color: #d1d1d1;
    }

    .custom-cta-button {
        background-color: #ff9800;
        padding: 15px 40px;
        font-size: 20px;
        font-weight: bold;
        border-radius: 30px;
        color: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: inline-block;
    }

    .custom-cta-button:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    }

    .custom-small-text {
        font-size: 14px;
        color: #a1a1a1;
        margin-top: 10px;
    }

    /* Responsive Design Adjustments */
    @media (max-width: 768px) {
        /* Profile Section */
        .custom-dashboard-header {
            text-align: center;
        }

        .custom-profile-image img {
            width: 60px;
        }

        .custom-username {
            font-size: 18px;
        }

        .custom-edit-link {
            margin-left: 3px;
        }

        .custom-two-factor-text {
            font-size: 12px;
        }

        .custom-logout-btn {
            padding: 8px 12px;
            font-size: 14px;
        }

        /* Balance Section */
        .balance-icon img {
            width: 50px;
            margin-right: 10px;
        }

        .balance-amount {
            font-size: 28px;
        }

        /* Review Section */
        .custom-review-container {
            padding: 15px;
        }

        .custom-cta-button {
            font-size: 16px;
            padding: 12px 25px;
        }
    }
    .connect-btn {
        background: rgb(99, 102, 241);
        color: white;
        padding: 8px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    .connect-btn:hover {
        background: rgb(79, 82, 221);
        color: white;
        text-decoration: none;
    }
    .account-item {
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .account-item:hover {
        background: rgba(35, 38, 50, 0.95) !important;
    }


    /* Promo Css */

    .promo-bar {
        background: linear-gradient(to right, #414345, #232526);
        border-radius: 14px;
        margin: 18px;
        padding: 0 24px;
        min-height: 64px;
        color: white;
        border: none;
        border-width: 1px;
    }
    
    .promo-bar-icon {
        width: 24px;
        height: 24px;
        color: #FFC24B;
        margin-right: 12px;
    }
    
    .promo-bar-title {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
    }
    
    .promo-bar-desc {
        color: #B0B3C3;
        font-size: 12px;
    }
    
    .promo-bar-btn {
        background: #FFC24B;
        color: #23233A;
        border-radius: 24px;
        padding: 8px 30px;
        font-weight: 600;
    }
    
    .promo-modal-content {
        border-radius: 14px;
        background: #212529;
    }
    
    .promo-modal-header {
        border-bottom: none;
    }
    
    
    .promo-input {
        /* background: #FFF7D1; */
        color: #23233A;
        border: 1px solid #FFC24B;
    }
    
    .promo-apply-btn {
        background: #FFC24B;
        color: #23233A;
        font-weight: 600;
    }
    
    .promo-available-title {
        color: #FFC24B;
    }
    
    .promo-card {
        background: #FFF7D1;
        border-radius: 12px;
        box-shadow: 0 2px 8px #0001;
        border: none;
    }
    
    .promo-card-header {
        background: #FFC24B;
        border-radius: 12px 12px 0 0;
        padding: 12px 16px;
        font-weight: bold;
        color: #23233A;
    }
    
    .promo-card-body {
        padding: 16px;
        color: #23233A;
    }
    
    .promo-card-discount {
        font-size: 1.4em;
        font-weight: bold;
    }
    
    .promo-use-btn {
        background: #F3F3F3;
        color: #23233A;
        font-weight: 600;
        border-radius: 8px;
        box-shadow: none;
    }
    
    .promo-unavailable-btn {
        background: #E0E0E0;
        color: #B0B3C3;
        font-weight: 600;
        border-radius: 8px;
        box-shadow: none;
    }
    
    .promo-card-list {
        font-size: 0.95em;
        margin-bottom: 0;
        padding-left: 18px;
    }
    
    .promo-no-code {
        font-size: 15px;
        color: #23233A;
    }
    