:root {
    --base: #1A1D1E;
    --base-secondary: #1A1D1E;
    --base-rgba: rgba(255, 133, 3, 0.6);
}


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

 .shop-notification {
        font-size: 16px;
        position: relative;
        z-index: 1000;
        background-color: #1f2937; /* Dark background color */
        color: #fff;
        padding: 10px 0;
        font-weight: bold;
        margin-left: 9px;
        margin-right: 9px;
        border-radius: 7px;
    }

    .shop-notification a {
        color: #fff;
        text-decoration: none;
    }

    .shop-notification a:hover {
        text-decoration: underline;
    }

    @media (max-width: 767px) {
        .shop-notification {
            font-size: 14px;
            padding: 8px 0;
        }
    }
    
/*MAIN BODY CSS ORGIN*/

body {
    /*background: -webkit-gradient(linear, left bottom, left top, from(rgba(45, 150, 255, .08)), to(rgba(45, 150, 255, .08))), #110e19 !important;*/
    background:  var(--body-background-color,hsl(0 0% 97%));
    background-size: cover; /* Cover entire container */
    background-position: center;
    color: white; /* For better text readability */
    font-family: "KdamThmorPro", sans-serif;
    min-height: 100vh; /* Ensure it covers the full height */
    background-color: #1A1D1E;
}


.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 0;
}

.contact-section {
    margin-top: 90px;
}

.items-length { visibility: hidden; }


h1,
h2,
h3,
h4,
h5 {
    font-family: "OpenSans" !important;
    color: #fffffff0 !important;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

h1 {
    font-size: 17px;
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
    font-family: "OpenSans" !important;
    font-weight: normal;
}

h5 {
    font-size: 18px;
    font-family: "OpenSans" !important;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: #ff962d;
}

p {
    color: white !important;
}

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

.blog-item {
    height: 100%;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1019607843);
    background-color: rgba(255, 255, 255, 0.0196078431);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.game-btn,
.game-btn-sm {
    background: linear-gradient(125deg, var(--base-secondary) 36%, var(--base) 36%);
    color: #fff;
    position: relative;
    text-transform: uppercase;
    width: 250px;
    display: inline-block;
    text-decoration: none;
    height: 60px;
    border: none;
    border-radius: 10px !important;
    font-size: 16px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
    /*-webkit-clip-path: polygon(9% 0, 100% 0, 100% 0, 100% 70%, 91% 100%, 0 100%, 0 100%, 0% 30%);*/
    /*clip-path: fill-box;*/
}

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


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

.w-25 {
    width: 25% !important;
    border-radius: 5px;
}

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

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

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

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

.navbar {
    padding: 0px 30px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

 /* Ensure that the content is hidden during loading */
.navbar-text {
    visibility: hidden;
    opacity: 0; /* Optionally, set opacity to 0 for a smoother transition */
    transition: visibility 0s, opacity 0.5s ease-in-out;
}

/* Once the content is loaded, it becomes visible */
.navbar-text.visible {
    visibility: visible;
    opacity: 1;
}

.navbar .navbar-brand img {
    max-width: 106px;
    max-height: 98px;
}

.navbar .navbar-toggler {
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 5px;
    background: #f8eee414;
    /*background: var(--base-secondary);
    -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%);*/
}

.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.dropdown:hover > .dropdown-menu {
    background: rgba(0, 0, 0, 0.8);
    display: block;
    padding: 0;
    border: none;
}

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

.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 45px;
}

.navbar .navbar-text .notification-icon {
    margin-right: 20px;
    margin-top: 14px;
    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;
}

.navbar .navbar-text .user-icon {
    margin-top: 14px;
    background: none;
    padding: 0;
    border: none;
}

.navbar .navbar-text .game-btn-sm {
    font-size: 14px;
}

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

.navbar .user-panel .user-drop-dropdown {
    /*background: #fff;*/
    background: rgb(27, 15, 35);
    border: 1px solid var(--base);
    background-size: cover;
    position: absolute;
    top: 80px;
    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: 10px;
    z-index: 2;
}

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

.navbar .user-panel .user-drop-dropdown ul li a {
    /*color: #0b0231;*/
    color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

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

.navbar .user-panel .user-drop-dropdown ul lia: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: rgba(27, 15, 35, 0.62);
    border: 1px solid var(--base);
    background-size: cover;
    position: absolute;
    top: 70px;
    width: 300px;
    right: 0;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 10px;
    z-index: 2;
    overflow: hidden;
}

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

.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;
    border-bottom: 1px solid var(--base);
    width: 100%;
}

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

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

.navbar .notification-panel .notifications .notification .img-box i {
    font-size: 24px;
    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;
    background: rgb(27, 15, 35);
    width: 100%;
}

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

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

.navbar.active {
    background: #110D2E;
    transition: 0.2s;
}


.search-area {
    padding: 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;
    display: none;
}

.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: #fff;
    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: 10px;
    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: 14px;
    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);
    border-radius: 10px;
    /*-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;
}

.topup-section,
.voucher-section {
    padding: 0 0 0 0;
    overflow: hidden;
}

.topup-section .img-box, 
.voucher-section .img-box {
    position: relative;
    background: rgb(255 255 255 / 16%);
    /*padding: 0;*/
    border-radius: 10px;
    margin-bottom: 10px;
    /*height: 135px;*/
    border: 0.5px solid #ff962da3; /* Card border */
}

.topup-section .img-box img,
.voucher-section .img-box img {
    border-radius: 10px;
}

.topup-section .img-box,
.giftcard-section .img-box,
.voucher-section .img-box {
    /*margin: 0 5px 40px 5px;*/
    position: relative;
}

.topup-section .img-box .tags,
.voucher-section .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;
}

.topup-section .img-box .tags span,
.voucher-section .img-box .tags span {
    background: var(--base);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    padding: 2px 6px;
    margin: 0 10px;
}

.giftcard-section {
    padding: 10px 0 10px 0;
    margin-top: 10px !important;
}

.giftcard-section .img-box {
    position: relative;
    background: rgba(255, 255, 255, 0.062745098);
    /*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: 0;
    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: 12px;
    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;
    margin-top: 90px;
}

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

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

.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: 20px;
    background: linear-gradient(116.85deg, #fc466b 0%, #3f5efb 100%);
    border-radius: 10px;
    height: 110px;
    padding: 5px;
}

.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: #1f2937;
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 5px;
    border: 0.5px solid #ff962d59;
}

.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/plus.png);
}

.faq-section .text-box .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url(../images/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: 14px;
    color: #f1f1f1;
}

.counter-section {
    padding: 20px 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: 14px;
    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: 12px;
}

.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 {
    background: hsl(var(--popular-background)) no-repeat center center;
    padding: 10px 0 60px 0;
    overflow-x: hidden;
    margin-top: 30px !important;
    margin-bottom: -50px;
}

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

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

.blog-section .blog-box .img-box img {
    border-radius: 10px;
    /* -webkit-transition: 0.4s; */
    /* transition: 0.4s; */
    /* height: 245px; */
    /* width: 100%; */
    /* width: 100%; */
    /* height: 100%; */
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.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: 12px;
    border-radius: 8px;
}

.blog-details .news-box .imge-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: relative;
    padding: 4px 10px 2px 10px;
    bottom: 40px;
    left: 15px;
    color: #fff;
    /* float: right; */
    text-transform: uppercase;
    font-size: 12px;
    /* margin-top: -30px !important; */
    border-radius: 8px;
}

.blog-section .blog-box .text-box .title {
    text-transform: uppercase;
    margin-top: -30px;
    margin-bottom: 0;
}

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

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

.footer-section {
    padding: 30px 0 0 0;
}

.footer-section .footer-box {
    margin-top: -80px;
}

.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: 40px;*/
    margin-top: 70px;
    text-transform: uppercase;
}

.footer-section .footer-box a {
    text-decoration: none;
    color:#ffffff;
    -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: 30px;
}

.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: 5px;
    /*-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: 18px;
    color: #fff;
}

.footer-section .footer-box .input-group .form-control {
    border-radius: 0px;
    border: none;
    height: 48px;
    font-size: 14px;
    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: 0px;
    color: #fff;
    margin-bottom: 40px;
    font-size: 12px;
}

.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: var(--base-secondary);
    position: fixed;
    right: 30px;
    bottom: 45px;
    -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%);
}

.scroll-top i {
    font-size: 18px;
    color: #fff;
}

#preloader {
    background: #1d0f2600;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.4s;
    z-index: 1100;
}
#preloader .loader {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100px;
}

.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: 14px;
    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;
    /*-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: 12px;
    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: 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: 12px;
    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 .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 {
    padding: 100px 0;
}

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

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

.login-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: 14px;
    padding: 20px;
    caret-color: var(--base);
    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%);*/
}

/*.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 10px; 
    border-bottom-right-radius: 10px; 
}*/

.manual.contact-box .form-control {
    border-radius: 5px;
    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: 14px;
    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: 70px 0 10px 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: 100px 0;
}

.details-section .text-box {
    margin-top: 30px;
}

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

.details-section .order-box {
    /* margin-bottom: 30px; */
    /* background: #fbfcfb33; */
    /* border: 1px solid #00000000; */
    /* padding: 30px; */
    /* border-radius: 10px; */
    padding: 15px 15px 25px;
    margin-bottom: 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(45, 150, 255, .08)), to(rgba(45, 150, 255, .08))), rgba(47, 46, 60, .6);
    background: linear-gradient(0deg, rgba(45, 150, 255, .08), rgba(45, 150, 255, .08)), rgba(47, 46, 60, .6);
    border: 1px solid hsla(0, 0%, 100%, .12);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .07), 0 4px 5px rgba(0, 0, 0, .06), 0 1px 10px rgba(0, 0, 0, .1);
    /* opacity: 0; */
    /* -webkit-transform: translateX(-25%); */
    /* transform: translateX(-25%); */
    -webkit-animation: slide .5s forwards;
    animation: slide .5s forwards;
}

.details-section .order-box h5 {
    text-transform: uppercase;
    margin-bottom: 30px;
}

.details-section .order-box p {
    font-size: 12px;
    margin-bottom: 0;
    margin-top: 15px;
}

.details-section .order-box .input-box .form-select,
.details-section .order-box .input-box .form-control {
    border-radius: 30px;
    display: inline-block;
    margin: 0px 10px 10px 0;
    border: 1px solid #e9e9e9;
    height: 55px;
    width: 300px;
    font-size: 14px;
    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%);*/
}

.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: 200px;
    border-radius: 5px;
    opacity: 0;
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.details-section .order-box .info .info-icon {
    cursor: pointer;
    margin-left: -20px;
    margin-top: -50px;
}

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

.details-section .payment-box {
    /* margin-bottom: 30px; */
    /* background: #fbfcfb33; */
    /* border: 1px solid #00000000; */
    /* padding: 30px; */
    border-radius: 10px;
    padding: 15px 15px 25px;
    margin-bottom: 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(45, 150, 255, .08)), to(rgba(45, 150, 255, .08))), rgba(47, 46, 60, .6);
    background: linear-gradient(0deg, rgba(45, 150, 255, .08), rgba(45, 150, 255, .08)), rgba(47, 46, 60, .6);
    border: 1px solid hsla(0, 0%, 100%, .12);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .07), 0 4px 5px rgba(0, 0, 0, .06), 0 1px 10px rgba(0, 0, 0, .1);
    /* opacity: 0; */
    /* -webkit-transform: translateX(-25%); */
    /* transform: translateX(-25%); */
    -webkit-animation: slide .5s forwards;
    animation: slide .5s forwards;
}

.details-section .payment-box h5 {
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 15px;
}

.details-section .payment-box .btn-check + .btn-primary {
    font-size: 16px;
    /* background: white !important; */
    color: hsl(0deg 0% 0% / 70%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(45, 150, 255, .2)), to(rgba(45, 150, 255, .2))), rgba(47, 46, 60, .6);
    background: linear-gradient(0deg, rgb(255 255 255 / 10%), rgb(245 248 250 / 18%)), rgb(255 255 255 / 81%);
    border: 1px solid hsla(0, 0%, 100%, .12);
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    line-height: 1.3em;
    border-radius: 4px;
    position: relative;
}

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

.details-section .payment-box .btn-check + .btn-primary::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 2px;
    height: 5px;
    width: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 5px solid transparent;
    border-right-color: #ff962d;
}

/*.details-section .payment-box .btn-check:checked + .btn-primary.active{
    color: #fff !important;
    background: #ff962d !important;
    font-weight: 400;
    box-shadow: 0 4px 8px rgba(255, 150, 45, .5) !important;
}*/

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

.details-section .payment-box .btn-check:checked + .btn-primary::after {
    background: rgba(255, 150, 45, .5);
    color: white ;
    border-color: #ff962d;
    box-shadow: 0 4px 8px rgba(255, 150, 45, .5) !important;
}

.details-section .payment-box .btn-check:focus + .btn-primary,
.details-section .payment-box .btn-primary:focus {
    color: #ffffff;
    background-color: #ff962d;
    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 .estimate-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

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

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

.package-details {
    /* margin: 100px 0; */
    border-radius: 10px;
}

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

.package-details .description-box {
    /* margin-bottom: 30px; */
    /* background: #fbfcfb33; */
    /* border: 1px solid #00000000; */
    /* padding: 30px; */
    border-radius: 10px;
    padding: 15px 15px 25px;
    margin-bottom: 30px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(45, 150, 255, .08)), to(rgba(45, 150, 255, .08))), rgba(47, 46, 60, .6);
    background: linear-gradient(0deg, rgba(45, 150, 255, .08), rgba(45, 150, 255, .08)), rgba(47, 46, 60, .6);
    border: 1px solid hsla(0, 0%, 100%, .12);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .07), 0 4px 5px rgba(0, 0, 0, .06), 0 1px 10px rgba(0, 0, 0, .1);
    /* opacity: 0; */
    /* -webkit-transform: translateX(-25%); */
    /* transform: translateX(-25%); */
    -webkit-animation: slide .5s forwards;
    animation: slide .5s forwards;
}

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

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

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

.contact-section .contact-box {
    margin-top: 0;
}

.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: 14px;
    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%;
    /*-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: 0px 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: 10px;
    -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: 12px;
}

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

.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: 14px;
    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: 12px;
    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: 1200px;
    }
}

@media (max-width: 991px) {
    .navbar {
        /*background: -webkit-gradient(linear, left bottom, left top, from(rgba(45, 150, 255, .08)), to(rgba(45, 150, 255, .08))), rgba(47, 46, 60, .6) !important;*/
       /* background: linear-gradient(0deg, rgba(45, 150, 255, .08), rgba(45, 150, 255, .08)), rgba(47, 46, 60, .6) !important;*/
       background: #110D2E;
    }

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

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

    .details-section .order-box {
        padding: 15px;
        border-radius: 10px;
    }

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

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

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

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

    .navbar {
        padding: 0;
    }

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

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

    .navbar .notification-panel .notifications {
        right: -100px;
    }
    
/* Carousel container styles*/
  /*#banner {*/
   /* position: relative;*/
   /* padding: 10px;*/
} 

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

/* Full-width images for carousel */
.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Adjust the height of carousel items */
.carousel-inner {
    width: 100%;
}

.carousel-item {
    height: 500px; /* For desktop */
    padding: 60px;
}

@media (max-width: 1200px) {
    .carousel-item {
        height: 450px; /* For smaller desktop screens */
        padding: 60px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 350px; /* For tablet screens */
        padding: 60px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 250px; /* For mobile screens */
        padding: 10px;
    }
}

/* Customizing the carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.carousel-control-prev,
.carousel-control-next {
    /*top: 50%;
    transform: translateY(-50%);
    width: auto;
    opacity: 1;*/
}

/* Customizing the carousel indicators (dots at the bottom) */
.carousel-indicators [data-bs-target] {
    background-color: #ff7f00;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #ff5500;
}


    .header-text,
    .header-text-link {
        margin: 5px;
        -webkit-box-align: center;
        -ms-flex-align: center;
       /* align-items: center;*/
    }

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

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

    .game-btn {
        width: 100%;
        /*height: 70px;*/
        padding: 10px !important;
        font-size: 14px;
    }

    .search-area {
        padding: 20px 0 10px 0;
        margin-top: 20px;
        background: rgb(255 255 255 / 16%);
        height: 100px;
        align-items: center;
        display: flex;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 10px;
    }
    

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

    .search-area .input-box .input-group .form-select {
        width: 120px;
        max-width: 120px;
        font-size: 12px;
        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: 12px;
    }

    .topup-section,
    .voucher-section,
    .giftcard-section,
    .about-section,
    .choose-section,
    .faq-section,
    .pricing-section,
    .blog-section {
    padding: 5px 0 9px 0;
    margin-top: 10px;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.6);
    }

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

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

    .search-area .input-box {
        margin: 0;
        padding: 5px !important;
    }

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

    .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;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    }

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

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

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

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

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

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

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

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

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

.package-list.gateway {
    width: 46.6% !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: 14px;
}

@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: 14px;
    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: 12px;
    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: 12px;
}


.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: 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: CerebriSans-Regular, -apple-system, system-ui, Roboto, 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 {
    background: linear-gradient(125deg, var(--base-secondary) 36%, var(--base) 36%);
    color: #fff;
    position: relative;
    text-transform: uppercase;
    width: 270px;
    display: inline-block;
    text-decoration: none;
    height: 60px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
    /*-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%);*/
    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: 18px;
}

.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: 10px;
    border: none;
    height: 48px;
    font-size: 14px;
    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;
    /*-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.062745098);
    padding: 10px;
    border-radius: 10px;
}

.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: #ffffff;
    border: none;
    border-radius: 1px !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: 12px;
    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.062745098); */
   /* 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: 12px;
    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: 14px;
    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: 14px;
}

@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: 14px;
    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(../../../../assets/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: 12px;
    height: 46px
}

.report .adiv p {
    font-size: 18px;
    margin-top: 0;
}

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

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

.text-wa {
    color: #fff;
    font-size: 14px;
}

.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: 'Line Awesome Free';
    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: 12px;
    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: white;
    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: "Open Sans", sans-serif !important;
    font-size: 20px;
    color: #fff;
}

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

.dashboard__card-content .info {
    color: #fff;
    font-size: 12px;
    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: 36px;
    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: 12px;
    }

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

.dashboard-section {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    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: 36px;
    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: 14px;
}

.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: #ff962d;
    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: 12px;
}

.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 {
        max-height: 100px;
    }

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

@media (max-width: 991px) {
    .navbar .navbar-text {
        right: 110px;
        top: 6px;
    }

    .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: 16px;
        margin-top: 0;
    }

    .shop-section .game-box .img-box + div {
        float: left;
    }

    .shop-section .game-box .name {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .navbar .navbar-text {
        top: 4px;
    }

    .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: 85px 0 5px 0;
        margin-bottom: -70px;
        text-align: center;
        margin-left: 5px;
        background: #1A1D1E;
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 350px) {
    .navbar .navbar-text .notification-icon {
        margin-right: 16px;
    }

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

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

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

    .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: "Roboto", sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table tbody {
    font-size: 14px;
}

.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 thead {
        display: none;
    }

    .table tbody tr {
        display: block;
    }

    .table tbody tr td {
        display: flex;
        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: "Roboto", 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;
}


.whatsapp-chat {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #25D366; /* WhatsApp green color */
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 50px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heartbeat 1.5s infinite;
    margin-right: 13px;
    margin-bottom: 10px;
}

/* Heartbeat animation */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-chat .chat-icon {
    font-size: 19px;
    color: white;
    align-content: center;
    padding: 5px;
}

.whatsapp-chat:hover {
    background-color: #e65c00; /* Darker on hover */
    cursor: pointer;
}

.sticky-sidebar {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 20px; /* Adjust the top offset as needed */
    z-index: 10;
}

@media (min-width: 992px) {
    .details-section .payment-box .btn-check + .btn-primary {
        height: auto;
    }
    .package-list {
        width: 48.6%;
        padding: 3px;
    }
}
/*sticky container for product detail page*/
@media (min-width: 768px) {
    .sticky-container {
        position: sticky;
        top: 100px; /* Adjust based on your layout */
        z-index: 1;
    }
}


/*vouchere page clock icon css*/
.custom-icon .fa-clock {
    position: relative;
    font-size: 24px;
    color: #00FFA0;
}

.custom-icon:before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    border: 2px solid #00FFA0;
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

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



/*new CSS Start here*/

.cookies-alert {
    display: none;
    position: fixed;
    bottom: 6rem;
    left: 4rem;
    padding: 2rem;
    max-width: 300px;
    background: #534151;
    border-radius: 10px;
    box-shadow: 0 10px 10px rgb(0 0 0 / 28%);
    text-align: center;
    z-index: 1000;
}

.cookies-alert a {
    color: var(--base);
    text-decoration: none;
    text-transform: uppercase;
    /* border: solid 1px; */
    /* padding: 5px; */
    /* margin: 5px 0 0 10px; */
    /* border-radius: 10px;*/
}

.navbar .search-box {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    top: 5px;
    /*right: 50px;*/
}

.navbar .search-box .btn-search {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    /*right: 0px;*/
    color: #ffffff;
    background-color: transparent;
    pointer-events: painted;
}

.navbar .search-box .input-search {
    height: 30px;
    width: 30px;
    border-radius: 100px;
    border-style: none;
    outline: none;
    transition: all 0.5s ease-in-out;
    background-color: #ff962d !important;
    /* padding-right: 40px; */
    color: #fff;
}

.navbar .search-box .input-search::-moz-placeholder {
    color: #999;
    font-size: 14px;
}

.navbar .search-box .input-search::placeholder {
    color: #999;
    font-size: 14px;
}

.navbar .search-box .btn-search:focus ~ .input-search {
    width: 200px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.navbar .search-box .input-search:focus {
    width: 200px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.navbar .search-box .dropdown-menu {
    position: absolute;
    width: 370px;
    background: #493f4f;
    max-height: 300px;
    overflow-y: scroll;
    color: white;
    margin-left: -75px;
    border-radius: 15px;
}

.navbar .search-box .dropdown-menu::-webkit-scrollbar {
    width: 5px;
    height: 80px;
}

.navbar .search-box .dropdown-menu::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 100px;
}

.navbar .search-box .dropdown-menu::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 6px;
}

.navbar .search-box .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--base);
}

.navbar .search-box .dropdown-menu li {
    list-style: none;
    background: none;
    display: flex;
    margin-bottom: 15px;
}

.navbar .search-box .dropdown-menu li img {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.navbar .search-box .dropdown-menu li a {
    color: white;
    padding:  5px;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: 0.4s;
}

.navbar .search-box .dropdown-menu li a:hover {
    color: #ff7843;
}

.navbar .search-box:hover .dropdown-menu,
.navbar .search-box .input-search:focus-visible ~ .dropdown-menu {
    display: block;
    opacity: 1;
}

.navbar .search-box:hover .dropdown-menu {
    opacity: 0;
}

.search-items-heading {
    font-size: 10px;
    padding-left: 10px;
    padding-top: 8px;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #ffffff;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

/*responsive --------------------------------------------- */

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

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

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

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

@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: 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 {
        max-height: 100px;
    }

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

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

@media (max-width: 991px) {
    /*.navbar {*/
       /* background: ;*/
    }

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

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

    .details-section .order-box {
        padding: 15px;
        border-radius: 10px;
    }

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

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

    .details-section .payment-box {
        padding: 5px !important;
    }

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

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

    .dashboard__card-content .info {
        font-size: 12px;
    }

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

    /*.table thead {*/
    /*    display: none;*/
    /*}*/

    /*.table tbody tr {*/
    /*    display: block;*/
    /*}*/

    .table tbody tr td {
        /*display: flex;*/
        /*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;
        white-space: nowrap;
    }

    .table tbody tr td:last-child {
        border: none;
    }

    .table tbody tr td::before {
        /*content: attr(data-label);*/
        font-family: "Roboto", sans-serif;
        font-size: 15px;
        color: #ffffff;
        font-weight: 500;
    }
    .navbar .container-fluid {
        position: relative;
    }
    .navbar .navbar-text {
        top: 0;
    }

@media (max-width: 767px) {

    .navbar {
        padding: 0;
    }

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

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

    .navbar .notification-panel .notifications {
        right: -100px;
    }

    .navbar .search-box .btn-search:focus ~ .input-search {
        width: 150px;
    }
    .navbar .search-box .input-search:focus {
        width: 150px;
    }

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

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

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

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

    .login-section .img-box {
        display: none;
    }
}

@media (max-width: 575px) {
    .navbar .navbar-text {
        top: 4px;
    }


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

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

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

@media (max-width: 480px) {

    .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: 33.33%;
    }

    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: 85px 0 5px 0;
    }
}

@media (max-width: 375px) {
    .navbar .search-box .btn-search:focus ~ .input-search {
        width: 100px;
    }
    .navbar .search-box .input-search:focus {
        width: 100px;
    }
    .navbar .search-box {
        right: 10px;
    }
    .navbar .search-box .dropdown-menu {
        left: -40px;
    }
}

@media (max-width: 350px) {
    .navbar .navbar-text .notification-icon {
        margin-right: 16px;
    }

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

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

    .voucher-section .img-box .tags span,
    .topup-section .img-box .tags span,
    .giftcard-section .img-box .tags span {
        padding: 2px 3px;
    }

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

    .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: "Roboto", sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table tbody {
    font-size: 14px;
}

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

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

/* Payment Design */

.payment-container-list {
    margin-top: 20px;
    height: auto;
    overflow: auto;
    padding: 5px;
}

.payment-container-list::-webkit-scrollbar {
    width: 4px;
    height: 100%;
}

.payment-container-list::-webkit-scrollbar-track {
    background: var(--bgLight);
}

.payment-container-list::-webkit-scrollbar-thumb {
    background: var(--borderColor);
    border-radius: 0px;
}

.payment-container-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.payment-container-list .item {
   position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    background-color: #180d1e;
    border-radius: 15px;
    font-size: 12px;
    color: hsla(0, 0%, 100%, .7);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(45, 150, 255, .2)), to(rgba(45, 150, 255, .2))), rgba(47, 46, 60, .6);
    background: linear-gradient(0deg, rgba(45, 150, 255, .2), rgba(45, 150, 255, .2)), rgba(47, 46, 60, .6);
    border: 1px solid hsla(0, 0%, 100%, .12);
    /* height: 100%; */
    width: 100%;
    display: -webkit-box;
    display: flex
;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    line-height: 1.3em;
    border-radius: 4px;
}


.payment-container-list .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    /* height: 100%; */
    /* padding: 15px; */
    /* cursor: pointer; */
    /* box-shadow: var(--shadow); */
    border-radius: 5px;
    transition: 0.5s;
    /* gap: 15px; */
    border: 1px solid var(--borderColor);
    /* position: relative; */
    /* justify-content: space-between; */
    /* align-items: center; */
    /* margin-bottom: 15px; */
    background-color: #180d1e;
    /* border-radius: 15px; */
    font-size: 12px;
    color: hsla(0, 0%, 100%, .7);
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(45 150 255 / 52%)), to(rgb(45 150 255 / 43%))), rgba(47, 46, 60, .6);
    background: linear-gradient(262deg, rgb(45 150 255 / 7%), rgb(45 150 255 / 47%)), rgb(47 46 60 / 87%);
    border: 1px solid hsla(0, 0%, 100%, .12);
    /* height: 100%; */
    width: 100%;
    display: -webkit-box;
    display: flex
;
    /* -webkit-box-align: center; */
    /* align-items: center; */
    /* -webkit-box-pack: center; */
    /* justify-content: center; */
    /* -webkit-box-orient: vertical; */
    /* -webkit-box-direction: normal; */
    /* flex-direction: column; */
    /* line-height: 1.3em; */
    /* border-radius: 4px; */
}


.payment-container-list .form-check-label .image-area img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
}

.payment-container-list .form-check-label .content-area {
    max-width: 400px;
    padding-right: 30px;
}

.payment-container-list .form-check-input {
   position: absolute;
    right: 15px;
    width: 2em;
    height: 2em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 3px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* -webkit-print-color-adjust: exact; */
    color-adjust: exact;
}


.payment-container-list .form-check-input[type=radio]:checked + .form-check-label {
    background-color: var(--primary);
}

.rtl .payment-container-list .form-check-label .content-area {
    padding-right: 0;
    padding-left: 30px;
}

.rtl .payment-container-list .form-check-input {
    left: 15px;
    right: auto;
}

img#no-data-image {
    margin: 40px 0 2rem 0;
    width: 10rem;
}

.side-box {
    background-color: var(--borderColor);
    padding: 15px;
    border-radius: 14px;
}


.w-100 {
    width: 100%;
}

.form-check-color {
    background-color: #594860;
}

.form-check-color:checked {
    background-color: #866e97;
    border-color: #866e97;
}

.sellselect option {
    background-color: #493f4f;
}

img.w-250 {
    width: 250px !important;
}

.white-color {
    background-color: #FFFFFF;
    color: #FFFFFF;
}

.card-body {
    flex: 1 1 auto;
    padding: 0 !important;
}

/*USER DASBOARD CSS*/
.wallet-balance-btn {
    background-color: #ff962d !important; /* Button background color */
    color: white; /* Text color */
    border: none; /* No default border */
    padding: 10px 20px; /* Button padding */
    border-radius: 25px !important; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Pointer cursor on hover */
    position: relative; /* For the border animation */
    overflow: hidden; /* Contain pseudo-element animation */
    z-index: 1; /* Keep the button content above */
    transition: background-color 0.3s, color 0.3s; /* Smooth hover transition */
    width: 130px;
}

.wallet-balance-btn::before {
    content: ""; /* Empty pseudo-element */
    position: absolute; /* Positioned relative to button */
    top: 0; /* Start from top */
    left: 0; /* Start from left */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    border: 2px solid transparent; /* Transparent borders */
    border-top: 2px solid #39d353; /* Green border for animation */
    border-radius: 25px !important; /* Match button's border radius */
    animation: snake-border 2s linear infinite; /* Snake-like animation */
    z-index: -1; /* Keep the border behind button content */
    box-sizing: border-box; /* Include border in sizing */
}

.wallet-balance-btn:hover {
    background-color: #d07921; /* Hover background color */
    color: white; /* Ensure white text remains */
}

@keyframes snake-border {
    0% {
        border-color: transparent; /* Start with no visible border */
        border-top-color: #39d353; /* Start from top */
    }
    25% {
        border-color: transparent; /* Reset all borders */
        border-right-color: #39d353; /* Move to the right */
    }
    50% {
        border-color: transparent; /* Reset all borders */
        border-bottom-color: #39d353; /* Move to the bottom */
    }
    75% {
        border-color: transparent; /* Reset all borders */
        border-left-color: #39d353; /* Move to the left */
    }
    100% {
        border-color: transparent; /* Reset all borders */
        border-top-color: #39d353; /* Return to the top */
    }
}

.wallet-balance-btn span {
    position: relative; /* Ensure text stays above animation */
    z-index: 2; /* Place text above pseudo-element */
}

/* Google reCAPTCHA container adjustments for large screens */
@media (min-width: 768px) {
    .g-recaptcha {
        transform: scale(0.95);
        transform-origin: 0 0;
    }
}

/* Make sure to adjust the logo size for larger screens */
@media (min-width: 768px) {
    .login-section img {
        max-width: 180px; /* Increase logo size */
    }
}

@media (max-width: 768px) {
    .login-section .bg-warning {
        border-radius: 0;
    }
}

    .btn-outline-danger {
    color: #000000 !important;
    background-color:#ffffff !important;
    position: relative;
    width: 320px;
    border: 1px solid rgba(49, 132, 253, 0.5) !important;
    border-radius: 6px;
    font-size: 16px;
    align-items: center;
    height: 52px;
    transition: box-shadow .15 ease-in-out, background-color .15s ease-in-out;
    cursor: pointer;
    margin-bottom: 8px;
    display: flex;
    outline: 0;
    justify-content: center;
}

  /*Regester Blade css*/
    .login-section .container {
        max-width: 500px;
    }

    @media (min-width: 768px) {
        .login-section .container {
            max-width: 700px;
        }
    }

    @media (min-width: 992px) {
        .login-section .container {
            max-width: 800px;
        }
    }

    @media (min-width: 1200px) {
        .login-section .container {
            max-width: 3000px;
        }
    }

    .login-section .bg-warning {
        background-color: #ff962d!important;
        padding: 30px 0;
    }

    .login-section .bg-dark {
         background-color: #252f45 !important;
         padding: 30px;
    }

    .login-section .form-control {
    /*background-color: #78909c14; */
    /* color: #FFFFFF; */
    /* border: 1px solid #fdfdfd70; */
    /* height: 52px !important; */
    background-color: #e0e0e000 !important;
    border: none;
    border-bottom: 1px solid hsla(0, 0%, 100%, .12);
    border-radius: 0;
    outline: 0;
    height: 3rem;
    width: 100%;
    font-size: 16px;
    margin: 0 0 4px;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
    color: #fff;
    }
    
 

    .login-section .form-control:focus {
        box-shadow: none;
        border-color: #FFA500;
    }

    .login-section .btn-warning {
        background-color: #ff8307 !important;
        border: none;
        height: 50px;
        color: #ffffff;
    }

    @media (max-width: 768px) {
        .login-section .bg-warning {
            border-radius: 0;
        }
    }

    @media (min-width: 768px) {
        .login-section img {
            max-width: 180px;
        }
    }
    
    .login-section .rounded {
        border-radius: 15px !important;
        margin-top: 30px;
    }
    
    .login-section .text-primary{
        color: #ff962d !important;
        text-decoration: none;
        background-color: transparent;
    }

/* Custom Styles for Footer */

    .footer-box {
        margin-bottom: 15px;
    }

    .footer-box h5 {
        font-weight: bold;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative; /* Required for border to work properly */
    }

    /* Add red underline for "Site Map" and "Legality" headers */
    .footer-box h5#sitemap, .footer-box h5#legality {
        border-bottom: 0.5px solid #ff962d59;
        text-decoration: none; /* Remove default underline */
        transition: inherit;
    }

    .footer-box .toggle-icon {
        font-size: 1.5rem;
    }

    .footer-box .collapse.show + .toggle-icon {
        transform: rotate(45deg); /* Rotate the + icon to X when open */
    }

    .footer-box .collapse:not(.show) + .toggle-icon {
        content: "+";
    }

    /* Small Screen Design: Collapsible sections */
    @media (max-width: 767px) {
        .footer-box .collapse {
            display: none;
        }

        .footer-box .collapse.show {
            display: block;
        }

        .footer-box .toggle-icon {
            display: block;
        }
    }

    /* Large Screen Design: Static sections with no toggle icon */
    @media (min-width: 768px) {
        .footer-box .collapse {
            display: block !important; /* Always display content */
        }

        .footer-box .toggle-icon {
            display: none; /* Hide toggle icon on large screens */
        }
    }

    /* Footer Bottom Style */
    .footer-bottom {
        /*background-color: ;*/
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 14px;
        color: #777;
    }

    .footer-bottom .language a {
        margin-right: 15px;
        color: #007bff;
    }

    .footer-bottom .language a:hover {
        text-decoration: underline;
    }

/* Footer Navigation Styling */
.footer-nav {
    /*display: flex; */
    justify-content: space-around;
    /* align-items: center; */
    /*background: -webkit-gradient(linear, left bottom, left top, from(rgb(45 150 255 / 28%)), to(rgb(45 150 255 / 26%))), rgb(47 46 60 / 83%) !important;*/
    /* background: linear-gradient(0deg, rgb(45 150 255 / 17%), rgba(45, 150, 255, .08)), rgba(47, 46, 60, .6) !important; */
    background: #110D2E;
    padding: 10px 0;
    /* position: fixed; */
    /* bottom: 0; */
    /* width: 100%; */
    position: fixed;
    bottom: 0;
    z-index: 105;
    height: 60px;
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-transition: bottom .2s;
    transition: bottom .2s;
    -webkit-filter: drop-shadow(0 0 10px hsla(0, 0%, 57.3%, .25));
    filter: drop-shadow(0 0 10px #92929240);
    /* margin-left: 0px; */
    /* margin-right: 10px !important; */
    border-radius: 20px 20px 0 0;
    padding-left: 5px;
    padding-right: 5px;
    border-top: solid 2px #ff8606;
}

.footer-item {
  text-align: center;
  color: #fff;
}

.footer-item a, .btn-search {
  color: #fff;
  text-decoration: none;
}

.footer-item i {
  font-size: 23px;
}

.footer-item span {
  display: block;
  font-size: 8px;
}

.center-item .btn-search {
    position: relative; /* Needed for the pseudo-element */
    background: #ffa500;
    border-radius: 50%;
    padding: 13px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    width: 50px;
    height: 50px; /* Ensures a perfect circle */
}

.center-item .btn-search::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; /* Larger than the button */
    height: 80px;
    border: 3px solid transparent;
    border-top: 3px solid #ff4500; /* The "snake" arc color */
    border-radius: 50%;
    animation: snake-circling 1.5s linear infinite;
    z-index: -1; /* Ensures it stays behind the button */
}

@keyframes snake-circling {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* Search Overlay Styling */
.search-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.search-overlay.active {
  display: flex;
}

.search-container {
  position: absolute;
  max-width: 600px;
  width: 90%;
  padding: 20px;
  background-color: #1a1a2e;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 410px;
}

.input-search {
  width: 80%;
  padding: 20px; /* Extra padding for icon and clear button */
  font-size: 18px;
  border-radius: 30px;
  border: none;
  outline: none;
  color: #fff;
  background-color: #2b2f3a;
}

.input-search::placeholder {
  color: #aaa;
}

.close-search {
 position: absolute;
    top: 32px;
    right: 15px;
    background: #ff962d;
    border: 1px solid #ec7600;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border-radius: 10px;
    width: 30px;
    height: 40%;
}

.btn-search {
  /*position: absolute;*/
  /*left: 20px;*/
  /*top: 50%;*/
  transform: translateY(0%);
  background: none;
  border: none;
  /*color: #ffa500;*/
  font-size: 24px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #2b2f3a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 0 0 10px 10px;
  list-style: none;
  margin-top: 5px;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

.dropdown-menu li {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-menu li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 5px;
}

.dropdown-menu li:hover {
  background-color: #444;
}

.dropdown-menu.show {
  display: block;
}

.custom-home-icon {
    color: #ff8606;
}

/*Blog Blade CSS*/

.blog-box {
    flex: 0 0 calc(100% - 20px); /* Adjust width of the card as needed */
    max-width: 350px; /* Optional max width */
    border: 0.5px solid #ff962d59;
    border-radius: 8px;
    /*background-color: #fff;*/
    max-height: 300px;
}

.blog-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);  /* Stronger shadow on hover */
}

 .horizontal-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 0px;
    padding-right: 0 !important;
    /*scrollbar-width: thin; /* Firefox */
    /*scrollbar-color: #888 transparent; /* Firefox */
    margin-top: 5px;
}

.horizontal-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
    border-radius: 4px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.blog-section .row {
    /*margin-right: 0 !important; /* Removes default margin-right */
}

/*giftcard-section , topup-section, voucher-section css*/

    .card-scroll-container {
        overflow-x: auto; /* Enable horizontal scrolling */
        white-space: nowrap; /* Prevent line breaks */
        padding: 15px 0; /* Add some padding */
        /*background-color: ; /* Keep the background color */
    }

    .card-scroll-wrapper {
        display: inline-flex; /* Arrange cards in a horizontal line */
        gap: 10px; /* Space between cards */
    }

    .card {
    min-width: 150px;
       /*background-color: #252f45;*/
       border: 0.5px solid #ff962da3;
       border-radius: 10px;
       overflow: hidden;
       text-align: center;
       /*width: 100px;
       max-width: 250px;
       /* border-radius: 30px; */
       display: -webkit-box;
       display: flex;
       -webkit-box-align: center;
       align-items: center;
       text-align: center;
       -webkit-box-orient: vertical;
       -webkit-box-direction: normal;
       box-shadow: 0 2px 4px rgba(0, 0, 0, .07), 0 4px 5px rgba(0, 0, 0, .06), 0 1px 10px rgba(0, 0, 0, .1);
       background-color: transparent;
       position: relative;
       /*margin-top: 10px;*/
    }
    
    .img-box {
        text-align: center;
        width: 100%;
        font-size: 12px;
    }

    .tags {
        margin-top: 5px;
    }

    .header-text-link h2 {
        display: inline-block;
        color: white; /* Keep header text color */
    }

    .header-text-link a {
        float: right;
        /*color: white; */
        margin: 0 0 0 40px;
    }

    /* For better responsiveness */
    @media (max-width: 640px) {
        .card {
            min-width: 100px; /* Adjust card size for small screens */
        }
    }

    @media (max-width: 320px) {
        .card {
            min-width: 90px; /* Further adjust card size for very small screens */
        }
    }
    
/* slider-section css*/
    .banner {
        position: relative;
        width: 100%;
        height: 100vh; /* Full viewport height */
        padding: 0;
        border-radius: 10px;
        margin-top: 80px;
        overflow: hidden;
    }

   /* Banner Styling */
.banner-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.banner-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0.5rem;
    padding: 0;
}

.banner-item {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    height: 300px; /* Adjust height */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.image-container {
    position: relative;
    height: auto;
    overflow: auto;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.banner-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background:linear-gradient(to bottom, 
  rgba(0, 0, 0, 0.3) 0%, 
  rgba(121, 85, 85, 0.5) 40%, 
  rgba(160, 160, 160, 0.4) 60%, 
  rgba(249, 138, 138, 0.4) 80%, 
  rgba(72, 46, 132, 0.6) 100%);
    padding: 0.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; 
    border-radius: 10px 10px 10px 10px;
}

.subtitle {
    font-size: 0.6rem;
    color: #ff4081;
    margin-bottom: 0.5rem;
    font-weight: bold;
    /*text-transform: uppercase;*/
}

.title {
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.footer {
    display: flex;
    justify-content: flex-start;
}

.action-btn {
    background: #ff962d;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.action-btn:hover {
    background: #e6004c;
}

/* Navigation Buttons */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .banner-item {
        flex: 0 0 40%;
        max-width: 60%;
        height: 300px;
    }
}

@media (max-width: 991px) {
    .banner-nav {
        display: none;
    }

    .banner-item {
        flex: 0 0 100%; /* Allow some next slide visibility */
        max-width: 100%;
    }
}

    /* Responsive Styles */

    /* Extra large devices (desktops, 1200px and up) */
    @media (min-width: 1200px) {
        .banner {
            padding: 0 120px 0 120px;
            margin-top: 80px;
            height: auto; /* Adjust height for smaller screens */
            margin-bottom: 30px;
        }
    }

    /* Large devices (desktops, 992px to 1199px) */
    @media (max-width: 1199px) {
        .banner {
            padding: 0 40px 0 40px;
            margin-top: 80px;
            height: auto; /* Adjust height for smaller screens */
            margin-bottom: 10px;
        }
    }

    /* Medium devices (tablets, 768px to 991px) */
    @media (max-width: 991px) {
        .banner {
            padding: 0 120px 0 120px;
            margin-top: 80px;
            height: auto; /* Adjust height for tablets */
        }
    }

    /* Small devices (phones, 576px to 767px) */
    @media (max-width: 767px) {
        .banner {
           padding: 0 30px 0 30px;
           margin-top: 80px;
           height: auto;
        }
    }

    /* Extra small devices (phones, less than 576px) */
    @media (max-width: 576px) {
        .banner {
            padding: 10px;
            margin-top: 80px;
            width: 100%;
            height: auto; /* Adjust height for very small phones */
        }
    }
   
   /*USER ADD FUND CSS*/ 
    .payment-option-title {
    margin-top: 10px; /* Spacing above the title */
   /* border: 2px solid #ff962d; /* Border with desired color and width */
    padding: 10px; /* Optional: Adds spacing inside the border for better aesthetics */
    border-radius: 5px; /* Optional: Adds rounded corners */
    margin-left: 5px;
    margin-right: 5px;
    }
    
    /* Share Button Positioned in the Corner */
    .share-button {
    position: absolute; /* Positioning relative to .img-box */
    top: 210px; /* Distance from the top */
    right: 10px; /* Distance from the right */
    background-color: #f5a62300; /* Button background color */
    color: #8BC34A; /* Text color */
    border: none;
    padding: 8px 12px; /* Padding inside button */
    border-radius: 10px; /* Rounded circular button */
    font-size: 16px; /* Font size */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Slight shadow */
    cursor: pointer; /* Pointer cursor on hover */
    z-index: 10; /* Ensure the button appears on top */
}

/* Optional: Share Button Hover Effect */
    .share-button:hover {
    background-color: #f49b16; /* Slightly darker orange on hover */
    }
    
    .shop-more-link {
    color: orange;
}
    .shop-more-link:hover {
    color: #ff7f00; /* Optionally, change the color on hover */
}

