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

:root {
    --webFonts: "Josefin Sans", sans-serif;
    --webColor: #e2ad22;
    --redColor: #be0000;
    --darkColor: #3a3a3a;
    --greyColor: #747474;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: var(--webFonts);
}

html h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: normal;
}

html h2 {
    font-size: 2rem;
}

html h3 {
    font-weight: 700;
}

html h4 {
    font-weight: 600;
}

html a {
    text-decoration: none;
}

html p {
    color: #929497;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: var(--webFonts);
}

input::placeholder {
    color: #aeaeae;
}

input:focus {
    box-shadow: none !important;
    border-color: var(--webColor) !important;
}

.web-color {
    color: var(--webColor);
}

.greyColor {
    background-color: var(--greyColor);
}

.webBtn {
    display: inline-block;
    padding: 14px 33px;
    line-height: normal;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--webColor);
    color: #fff !important;
    font-weight: 600 !important;
    transition: 0.5s;
    font-size: 1.25rem;
    border: 1px var(--webColor);
}

.webBtn:hover {
    background-color: var(--greyColor);
    color: #fff;
}

/* ************** Header CSS ***************** */
.logo_top_sec {
    display: none;
}

/* top header */
.header_top {
    padding: 5px 0;
    background-color: var(--webColor);
}

.div-left a {
    color: #fff;
    font-size: 1rem;
}

.header_top .div-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.header_top .div-right .product_cart {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

.header_top .div-right .total_amount {
    background-color: #686868;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 1.1rem;
    border-radius: 6px;
    line-height: normal;
    border: 1px solid #686868;
}

.header_top .div-right .amount_btn {
    background-color: transparent;
    margin-left: 1.6rem;
    position: relative;
    padding-top: 5px;
}

.header_top .div-right .amount_btn i {
    color: #ffffff;
    font-size: 24px;
    font-family: fontawesome;
}

.header_top .div-right .amount_btn .cart_num {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    min-height: 22px;
    font-size: 12px;
    line-height: 22px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #686868;
    box-shadow: 0px 19px 56px 0px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.header_top .div-right .user_btn {
    margin-left: 38px;
    width: 40px;
    height: 40px;
    background-color: #686868;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    line-height: 36px;
}

a.user_btn img {
    width: 24px;
    height: 24px;
}

.header_top .div-right .user_btn i {
    font-size: 24px;
}

/* End top header */
.navbar-fixed {
    top: 0;
    position: fixed !important;
    opacity: 0;
    animation: fadeIn 0.5s ease-in both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.header_bottom {
    position: relative;
    width: 100%;
    background: var(--darkColor);
    z-index: 999;
    padding: 0.8rem 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

.logoLabel img {
    max-width: 100%;
}

.navigation .mobileNavbar>ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 18px;
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
}

.brandlogo img {
    width: 165px;
    max-width: 100%;
    object-fit: contain;
}

.navigation .mobileNavbar li a {
    color: #fff;
    font-family: var(--webFonts);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: 0.5s;
    white-space: pre;
    text-transform: uppercase;
}

.navigation .mobileNavbar li a:hover {
    color: var(--webColor);
}

.navigation .mobileNavbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation .mobileNavbar li {
    list-style: none;
}

.navigation .mobileNavbar>ul li ul li {
    padding: 2px;
    width: 100%;
    padding-top: 0;
    line-height: 1.6rem;
    position: relative;
}

.navigation .mobileNavbar>ul li ul h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--globalColor);
}

.navigation .mobileNavbar>ul li ul li a {
    color: #000;
    font-weight: 600;
    position: relative;
    z-index: 22;
    font-size: 0.8rem;
    transition: 0.5s;
}

.navigation .mobileNavbar>ul li ul li a:hover {
    color: var(--globalColor);
}

.navigation ul li:hover a {
    color: var(--globalColor);
}

.navigation .mobileNavbar li a img {
    filter: brightness(0) invert(1);
}

.navigation .mobileNavbar li:hover img {
    filter: none;
}

a.brandlogo {
    /* width: 100%;
     */
    text-align: center;
    margin: 0 4rem;
}

.navbar-toggler {
    display: none;
}

/* ////////////////////////////(Header CSS close)*/
/* ************** Slider CSS ***************** */
.swiper {
    width: 100%;
    height: 100%;
}

.Slider-Swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.Slider-Swiper .swiper-pagination-bullet {
    background-color: #d9d9d9;
    opacity: 1;
}

.Slider-Swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 20px;
    background: var(--webColor);
}

/* ////////////////////////////(Slider CSS close)*/
/* ************** Featured CSS ***************** */
.featured_product {
    padding: 1.5rem 0px 1.5rem;
}

.section-title h4 {
    margin-bottom: 1.313rem;
}

.featured_box {
    border-radius: 7px;
    border: 1px solid #000;
    padding: 1rem;
    position: relative;
    height: 100%;
}

.box-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hot {
    background: var(--redColor);
}

.new {
    background: var(--webColor);
}

.featured_content span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--greyColor);
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured_content h5 {
    font-weight: 600;
    font-size: 1rem;
}

.item_price {
    color: var(--webColor) !important;
}

.featured_box .featured_content {
    padding-top: 14px;
}

.item-label {
    position: absolute;
    text-transform: uppercase;
    font-weight: 600;
    top: 25px;
    left: 25px;
    border-radius: 3px;
    color: #fff;
    padding: 3px 13px;
    font-size: 0.875rem;
}

.featured_image img {
    padding: 11px;
    background-color: #f6f6f6;
    width: 100%;
    object-fit: contain;
    height: 100%;
}

section.featured_product .container {
    position: relative;
}

.featured-button-prev {
    position: absolute;
    left: -40px;
    top: 50%;
    z-index: 111;
}

.featured-button-next {
    position: absolute;
    right: -40px;
    top: 50%;
    z-index: 11;
}

/* ////////////////////////////(Featured CSS close)*/
/* ************** Our Commitments CSS ***************** */
section.our_commitments {
    padding: 1.175rem 0 2.363rem;
}

.commitments_box {
    border-radius: 10px;
    background: var(--darkColor);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 10px 22px;
    height: 100%;
}

.commitments_content h5 {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

/* ////////////////////////////( Our Commitments CSS close)*/
/* ************** boxes CSS ***************** */
.boxes_rows {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.home .boxes_rows {
    margin-top: 30px;
}

.top_bar_section {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 63px;
    justify-content: center;
    padding: 14px 0 28px;
}

.has-search {
    width: 263px;
    position: relative;
}

.drop_btn {
    padding: 0.62rem 0.75rem 0.62rem 2.475rem;
    line-height: normal;
    font-size: 1.25rem;
    border: 2px solid var(--webColor);
    width: 263px;
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    z-index: 22;
}

.drop_btn img {
    padding-left: 0.4rem;
}

.drop_btn::after {
    border: none;
}

.dropdown_list ul.dropdown-menu {
    width: 100%;
    backdrop-filter: blur(15px);
    background-color: #00000087;
    margin-top: -14px !important;
    z-index: 11;
    padding: 1.5rem 0.75rem 0.75rem;
}

span.form-control-search {
    position: absolute;
    z-index: 2;
    display: block;
    width: 3rem;
    height: 2.875rem;
    line-height: 2.875rem;
    text-align: center;
    top: 0;
}

.search_bar .has-search input.form-control {
    padding: 0.75rem 0.75rem 0.75rem 2.675rem;
    line-height: normal;
    font-size: 1.25rem;
    border: 2px solid var(--webColor);
    border-radius: 10px;
}

.load-more {
    text-align: center;
    margin-top: 1.813rem;
}

.load-more img {
    padding-left: 5px;
}

.categories_ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.categories-img img {
    width: 30px;
    background-color: #fff;
    border-radius: 30px;
    padding: 3px;
}

.categories-text h6 {
    font-size: 0.75rem;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.categories-item {
    text-align: center;
    cursor: pointer;
}

li.sort_list {
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.6;
    font-weight: 400;
    padding-bottom: 0.5rem;
}

li.sort_list.active {
    opacity: 1;
}

li.sort_list:last-child {
    padding-bottom: 0;
}

/* ////////////////////////////(boxes CSS close)*/
/* ************** Counter CSS ***************** */
/*.counter_section {
    background-color: var(--webColor);
    padding: 2.1rem 0px;
}*/

.counter_section {
    background-color: #fff8e4;
    padding: 2.1rem 0px;
}

.counter_box {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
    margin: 0;
    gap: 5rem;
}

.counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
}

.counter {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: normal;
    color: #000;
}
.counter_text span {
    color: #000;
}

.counter-container i {
    font-size: 64px;
}

.counter_text span {
    font-size: 1rem;
    text-transform: uppercase;
}

/* ////////////////////////////(Counter CSS close)*/
/* ************** Competition Reviews CSS ***************** */
section.competition_reviews {
    padding: 2.125rem 0 3rem;
}

.competition_reviews .section-title h4 {
    margin-bottom: 3.5rem;
}

/* ////////////////////////////(Competition Reviews CSS close)*/
/* ************** Footer CSS ***************** */
.footerCk {
    background-color: var(--darkColor);
    padding: 3.063rem 0 1.5rem;
    position: relative;
}

.footerCk:after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 278px;
    background-color: var(--webColor);
    top: 15%;
}

.footerCk h4 {
    color: #fff;
    margin-bottom: 1.75rem;
}

ul.useful_links {
    padding-left: 0;
    list-style: none;
}

ul.useful_links li a {
    color: #fff;
}

.copyrights {
    margin-top: 1.688rem;
}

.copyrights p {
    color: var(--webColor);
}

.payment_box .payment-icons {
    display: flex;
    padding-left: 0;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.payment_box .payment-icons li img {
    width: 44px;
}

ul.useful_links li {
    padding-bottom: 0.8rem;
}

.useful_two {
    display: grid !important;
    grid-template-columns: auto auto;
}

.newsletter_box input {
    border: 1px solid var(--webColor);
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    margin: 0px auto;
    padding: 14px 22px;
}

.subscribe_btn {
    margin: 1.813rem auto;
    display: block;
}

.footer_right h4 {
    text-align: center;
}

.footer_right {
    float: right;
    width: calc(100% - 120px);
}

.social_media ul {
    display: flex;
    list-style: none;
    gap: 15px;
    justify-content: center;
    padding-left: 0px;
}

/* ////////////////////////////(Footer CSS close)*/
/* ************** Details Slider CSS ***************** */
section.detail_slider_section {
    background-color: #fff8e4;
    position: relative;
}

section.detail_slider_section:after {
    background-image: url(https://ck.stagingwebsite.space/wp-content/uploads/2023/11/dsgnai.png);
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    top: 0;
}

.detail_slider_content {
    margin: 3rem 0;
    position: relative;
    z-index: 11;
}

.detail_slider_content .detail_content h3 {
    font-weight: 600;
    font-size: 2.1875rem;
    margin: 1.2rem 0;
}

.detail_slider_content .detail_content p {
    font-size: 1.25rem;
    color: #000;
    font-weight: 600;
}

.open_price {
    margin-top: 1rem;
    display: inline-block;
}

.open_price a {
    background-color: var(--darkColor);
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--webColor);
    transition: 0.5s;
}

.open_price a:hover {
    background-color: var(--webColor);
    color: #fff;
}

.open_price a:hover img {
    filter: brightness(0) invert(1);
}

.open_price a:hover img.ck_boxcoin_img {
    filter: initial;
}

.open_price a img {
    padding-right: 5px;
}

.social_share {
    position: absolute;
    top: 30%;
    right: 0;
}

.social_share .share_icons {
    cursor: pointer;
    margin-bottom: 1rem;
}

.dropdown-toggle::after {
    display: none;
}

.share_div ul.dropdown-menu {
    min-width: 2.5rem;
    background-color: var(--darkColor);
    border-radius: 0px 0px 7px 7px;
    border: none;
    top: 5px !important;
}

.share_div .dropdown-menu li {
    text-align: center;
    border-top: 1px solid #ffffff42;
    transition: 0.5s;
}

.share_div .dropdown-menu li a {
    padding: 0.3rem 0;
    display: block;
}

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

/*bottom slider*/
/*.productSwiper .swiper-wrapper {
     justify-content: center;
}
*/
.have_try {
    position: relative;
    z-index: 1;
}

.have_try button {
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-block;
    background-color: transparent;
    border: none;
}

.productSwiper .reward_slide {
    border-radius: 6px;
    background: linear-gradient(180deg, #c1c1c1 0%, rgba(239, 206, 118, 0) 100%);
    padding: 10px;
    transition: 0.5s;
    cursor: pointer;
}

.productSwiper {
    position: relative;
    z-index: 55;
}

.slick-slide {
    margin-right: 10px;
    margin-left: 10px;
}

.productSwiper .reward_slide:hover {
    background: linear-gradient(180deg, #e2ad22 0%, rgba(255, 203, 65, 0) 100%);
}

.detail_swiper_slide {
    position: relative;
    padding: 2.8rem 0;
    border-top: 2px solid var(--webColor);
    border-bottom: 2px solid var(--webColor);
}

.detail_swiper_slide:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0px auto;
    width: 30px;
    height: 15px;
    border-bottom: solid 25px var(--webColor);
    border-left: solid 15px transparent;
    border-right: solid 15px transparent;
}

.detail_swiper_slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0px auto;
    width: 30px;
    height: 15px;
    border-top: solid 25px var(--webColor);
    border-left: solid 15px transparent;
    border-right: solid 15px transparent;
}

.swiper-slide-active .reward_slide {
    background: linear-gradient(180deg, #e2ad22 0%, rgba(255, 203, 65, 0) 100%);
}

/* ////////////////////////////(Details Slider CSS close)*/
/* ************** Items in This Box CSS ***************** */
section.boxes_section {
    padding: 1.5rem 0px;
}

.item_box_rows .item_image {
    text-align: center;
    padding: 2rem;
    height: 240px;
}

.item_box_rows .item_image img {
    height: 100%;
    object-fit: contain;
}

.item_box {
    position: relative;
    background: linear-gradient(180deg, #c1c1c1 0%, rgba(255, 255, 255, 0) 75%);
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    padding-bottom: 10px;
}

.item_box_rows {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.item_content h5 {
    /*margin-top: 1.5rem;
    */
    font-weight: 600;
    margin-bottom: 1.6875rem;
    height: max-content;
}

.item_content {
    padding: 1rem;
}

.price-items {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    position: relative;
}

.price-items .price_d {
    color: var(--webColor);
}

.price-items span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--greyColor);
}

.item-info {
    position: absolute;
    top: 5px;
    right: 9px;
    z-index: 15;
    cursor: pointer;
}

.product_description {
    position: absolute;
    top: 0;
    right: -100%;
    background: linear-gradient(180deg, #f3f2f2 0%, rgb(255 255 255) 112%);
    height: 100%;
    width: 100%;
    padding: 1.1rem;
    z-index: 12;
    transition: all 0.5s ease-out;
}

.info_hover {
    right: 0;
}

.product_info h5 {
    font-size: 1rem;
    font-weight: 600;
}

.product_info p {
    color: var(--webColor);
}

/* ////////////////////////////(Items in This Box CSS close)*/
/* ////////////////////////////My Account CSS*/
.woocommerce-account .woocommerce {
    padding: 6rem 0px;
}

.my_account h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.my_account form.woocommerce-form {
    padding: 2rem !important;
    border: 1px solid #c2c2c2 !important;
    background-color: #fff8e4;
}

.woocommerce-account label {
    font-size: 1rem;
    color: #000;
    font-weight: 600;
}

.woocommerce-account input {
    font-size: 16px;
    padding: 16px 20px !important;
    border: 1px solid #c2c2c2 !important;
    background-color: #fff;
    border-radius: 0.5rem !important;
    -webkit-border-radius: 0.5rem !important;
    -moz-border-radius: 0.5rem !important;
    -ms-border-radius: 0.5rem !important;
    -o-border-radius: 0.5rem !important;
    color: #000;
    margin-top: 0.5rem !important;
}

.woocommerce-account .woocommerce-button.button,
.woocommerce-account p .button {
    width: 100%;
    color: #fff !important;
    background-color: var(--webColor) !important;
    border-radius: 0.5rem !important;
    padding: 1rem !important;
    margin: 1rem 0 !important;
    font-size: 1.1rem !important;
    transition: 0.5s;
}

.woocommerce-account .woocommerce-button.button:hover,
.woocommerce-account p .button:hover {
    color: var(--darkColor) !important;
    background-color: #fff !important;
}

.my_account .woocommerce-form-login__rememberme {
    display: flex;
}

.my_account form.woocommerce-form .lost_password a {
    font-size: 1rem;
    color: #000;
    font-weight: 600;
}

.my_account .woocommerce-privacy-policy-text p a {
    color: var(--webColor);
}

.woocommerce-account .show-password-input {
    right: 1.2em !important;
    top: 1.7em !important;
}

.my_account .register p {
    padding-top: 0.7rem !important;
}

.my_account .register .form-row-wide {
    padding-top: 3px !important;
}

/* Inner Pages */
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    background-color: #fff8e4;
    width: 25%;
    height: 100%;
    border-radius: 15px 0 0 15px;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 2rem;
    line-height: 3rem;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul a {
    color: #000;
    border-bottom: 1px solid #757575;
    display: block;
    transition: 0.5s;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul a:hover {
    color: var(--webColor);
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
    width: 75%;
    padding: 2rem;
    background-color: #f3f3f3;
    height: 100%;
    border-radius: 0 15px 15px 0;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content p {
    color: #000;
    line-height: 1.3rem;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content a {
    color: var(--webColor);
}

.woocommerce-account .woocommerce .woocommerce-info::before {
    color: var(--darkColor);
}

.woocommerce-account .woocommerce .woocommerce-info {
    border-top-color: var(--darkColor);
    background-color: var(--webColor);
    color: #fff;
}

.woocommerce-account .woocommerce a.button {
    background-color: var(--darkColor);
    transition: 0.5s;
}

.woocommerce-account .woocommerce a.button:hover {
    background-color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content label {
    color: #000;
}

.woocommerce-account .woocommerce-MyAccount-content input {
    /* color: #6d6d6d;
     */
}

.woocommerce-account .woocommerce-MyAccount-content span em {
    margin-top: 1.5rem;
    display: block;
}

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
}

.woocommerce-account .select2-container .select2-selection--single {
    height: 50px;
}

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    right: 11px;
}

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 8px 7px 0 7px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    font-size: 0.9rem;
}

a.woocommerce-button.button.view {
    text-align: center;
}

td.woocommerce-table__product-name.product-name a {
    color: var(--webColor);
}

.order_item p {
    line-height: 25px;
}

.shop_table.order_details thead {
    background-color: var(--darkColor);
}

ul.wc-item-meta {
    display: none;
}

.shop_table.order_details thead th {
    color: #fff;
}

table.shop_table.order_details {
    border-collapse: collapse !important;
    border: 1px solid #9b9b9b !important;
}

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {}

.shop_table.order_details tr td {
    border: 1px solid #9b9b9b;
}

.shop_table.order_details thead tr th:first-child {
    border-right: 1px solid #ffffff;
}

.shop_table.order_details tfoot tr th {
    border: 1px solid #9b9b9b;
}

.shop_table.order_details tfoot tr td {
    font-weight: 500 !important;
}

/*checkout*/
.woocommerce-checkout #customer_details {
    padding: 6em 0 3em;
}

.woocommerce-checkout #customer_details .woocommerce-billing-fields input {
    padding: 16px 20px !important;
    border: 1px solid #c2c2c2 !important;
}

.woocommerce-checkout #order_review {
    padding: 0 0 6em;
}

.woocommerce-cart .wc-empty-cart-message {
    padding: 6rem 0px 2rem;
}

.woocommerce-cart .return-to-shop {
    padding: 1rem 0px 6rem;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
    background-color: #fff;
    border-radius: inherit;
    padding: 10px 14px !important;
    border: 1px solid #c2c2c2 !important;
    height: auto !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px !important;
}

.woocommerce-checkout .woocommerce #payment #place_order {
    background-color: var(--webColor) !important;
    color: #fff;
    font-size: 1.2em;
}

.woocommerce-checkout .woocommerce #payment {
    background: #f3f2f5 !important;
    border-radius: inherit;
}

.woocommerce-checkout .woocommerce .form-row textarea {
    height: 4em;
    line-height: 1.5;
    display: block;
    box-shadow: none;
    padding: 16px 20px !important;
    border: 1px solid #c2c2c2 !important;
}

.woocommerce-order-received .woocommerce-order {
    padding: 6rem 0;
}

.woocommerce-order-received .woocommerce-customer-details--phone,
.woocommerce-order-received .woocommerce-customer-details--email {
    color: #000;
}

.woocommerce-order-received .woocommerce ul.order_details {
    margin: 0 0 2rem;
    list-style: none;
    background: var(--webColor);
    padding: 30px;
    display: flex;
    color: #fff;
    gap: 45px;
    width: 100%;
}

.woocommerce .woocommerce-thankyou-order-details li {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    border-right: 1px dashed #ffffff !important;
    margin-right: 0 !important;
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 2.5rem;
}

.woocommerce-order-received .woocommerce-order-details {
    width: 100%;
    margin-top: 3rem;
    float: left;
}

.woocommerce-order-received .woocommerce-customer-details {
    margin-top: 3rem;
    margin-bottom: 6em !important;
}

.woocommerce-order-received .woocommerce .woocommerce-customer-details address {
    padding: 30px !important;
    margin-top: 1.6rem;
}

.woocommerce-table--order-details {
    margin-top: 1.6rem !important;
}

.woocommerce-customer-details--phone {
    margin-top: 1rem !important;
    margin-bottom: 0.1rem !important;
    line-height: 31px;
}

.woocommerce-customer-details--email {
    line-height: 28px;
}

.woocommerce-order-received .woocommerce .woocommerce-customer-details address {
    padding: 1.3rem 1.5rem !important;
    border: 1px dotted #9b9b9b;
    background-color: #f9f9f9;
}

/* ////////////////////////////(My Account CSS close)*/
/* Vivek 11/1/2023/ Css*/
#menu-quick-links {
    padding-left: 0;
    list-style: none;
}

#menu-quick-links li {
    padding-bottom: 0.8rem;
}

#menu-quick-links li a {
    color: #fff;
}

#menu-quick-links-1 {
    padding-left: 0;
    list-style: none;
}

#menu-quick-links-1 li {
    padding-bottom: 0.8rem;
}

#menu-quick-links-1 li a {
    color: #fff;
}

#menu-bottom-menu {
    display: grid !important;
    grid-template-columns: auto auto;
    padding-left: 0;
    list-style: none;
}

#menu-bottom-menu li {
    padding-bottom: 0.8rem;
}

#menu-bottom-menu li a {
    color: #fff;
}

#menu-bottom-menu-1 {
    display: grid !important;
    grid-template-columns: auto auto;
    padding-left: 0;
    list-style: none;
}

#menu-bottom-menu-1 li {
    padding-bottom: 0.8rem;
}

#menu-bottom-menu-1 li a {
    color: #fff;
}

#menu-item-146 a {
    display: none;
}

.categories-text h6 a {
    color: #fff;
}

.search_bar .has-search .is-form-style input.is-search-input {
    background: #fff !important;
    background-image: none !important;
    color: #333 !important;
    padding: 0.75rem 0.75rem 0.75rem 2.675rem !important;
    margin: 0 !important;
    outline: 0 !important;
    font-size: 1.25rem !important;
    line-height: normal;
    border-radius: 10px !important;
    border: 2px solid var(--webColor) !important;
    width: 100%;
    height: auto !important;
    font-family: inherit !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

.post-title {
    font-size: 1.5rem;
}

.featured-slider .swiper-slide {
    padding: 0 2px;
}

.featured-slider .swiper-slide .featured_box {
    margin-bottom: 0.45rem;
}

#menu-item-146 a.dsk-logo {
    display: block !important;
    padding: 0 14.125rem;
}

.navigation .mobileNavbar li a.dsk-logo img {
    filter: none !important;
}

/*faq*/
.faq_section {
    padding: 6rem 0px;
}

.accordion {
    padding: 10px;
}

.accordion .accordion-item {
    padding: 25px 40px;
    margin-top: 25px;
    border-radius: 20px;
    background: #fff8e4;
}

.accordion .accordion-item button[aria-expanded=true] {
    /* border-bottom: 1px solid #03b5d2;
     */
}

.accordion h2 {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    color: #000;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    padding: 0px;
    line-height: 25px;
    margin: 0px;
}

.accordion h2:hover,
.accordion h2:focus {
    cursor: pointer;
    color: var(--webColor);
}

.accordion h2:hover::after,
.accordion h2:focus::after {
    cursor: pointer;
    color: var(--webColor);
    border: 1px solid #03b5d2;
}

.accordion h2 .accordion-title {
    padding: 1em 1.5em 1em 0;
    font-size: 1.1em;
    font-weight: 600;
}

.accordion h2 .icon {
    display: inline-block;
    position: absolute;
    top: 2px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 2px solid;
    border-radius: 22px;
}

.faq-content {
    padding: 80px 0px;
}

.accordion h2 .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 8px;
    left: 4px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion h2 .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 4px;
    left: 8px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion h2[aria-expanded=true] {
    color: var(--webColor);
}

.accordion h2[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion h2[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 5000px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0px;
    margin-top: 25px;
    color: #000 ;
    line-height: 28px;
    border-top: 1px solid var(--webColor);
    margin-bottom: 25px;
    padding-top: 30px;
}

/* Error */
.not_found_section {
    background: #eee;
    padding: 120px 0;
}

.error {
    text-align: center;
}

.error h1 {
    font-size: 140px;
}

.error h1 span {
    font-size: 140px;
    color: var(--webColor);
}

.error p {
    font-size: 30px;
}

/* End Vivek 11/1/2023/ Css*/
/*contact us*/
.contact_section {
    padding: 6rem 0px;
    box-shadow: 5px 4px 10px 2px #eee;
}

.contact_section .form_section label {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 12px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
}

.contact_section .form_section input {
    padding: 16px 20px !important;
    border: 1px solid #c2c2c2 !important;
    width: 100%;
    color: #777;
}

.contact_section .form_section textarea {
    resize: vertical;
    width: 100%;
    border: 1px solid #c2c2c2 !important;
    width: 100%;
    color: #777;
    padding: 20px !important;
}

.contact_details ul {
    padding-left: 1rem;
}

.contact_details li {
    list-style: none;
    color: #929497;
}

.contact_details li a {
    font-size: 1.2em;
    color: #000;
}

/*page title*/
.page-banner-title {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    padding: 50px 0;
    position: relative;
    background: #f5f7f9;
}

.page-banner-title:before {
    position: absolute;
    content: "";
    background-color: #000;
    height: 100%;
    opacity: 0%;
    width: 100%;
    left: 0;
    top: 0;
}

.bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.bg-shape img {
    width: 100%;
}

.page-title {
    text-align: center;
    position: relative;
}

.page-title h4 {
    color: #000;
    font-size: 3.0rem;
    z-index: 100;
    text-transform: uppercase;
    /*text-shadow: 2px 1px #e2ad22;*/
}

/*About Section*/
.about_section,
.policy_section,
.competitions_section,
.freebox_section {
    padding: 6rem 0px;
}

.how_it_works_section {
    padding: 6rem 0px 0;
}

.about_section p,
.how_it_works_section p,
.policy_section p,
.competitions_section p,
.freebox_section p {
    line-height: 28px;
}

.how_play {
    list-style: none;
}

.how_play li {
    margin-left: 40px;
    color: #929497;
    text-indent: -20px;
}

/* About Page*/
.competition_sec {
    position: relative;
    background: #efefef;
    padding: 6rem 0px;
}

.competition_sec .section-title {
    margin-bottom: 5rem;
}

.feature-car {
    position: absolute;
    top: 35%;
    right: 0;
    text-align: right;
}

.feature-car img {
    width: 80%;
}

.feature_list_card .feature_list_card__icon {
    width: 165px;
    height: 165px;
    background-color: #976f06;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature_list_card .feature_list_card__icon .inner {
    width: 135px;
    height: 135px;
    background-image: -moz-linear-gradient(-45deg, #dfab21 0%, #dfab21 100%);
    background-image: -webkit-linear-gradient(-45deg, #dfab21 0%, #dfab21 100%);
    background-image: -ms-linear-gradient(-45deg, #dfab21 0%, #dfab21 100%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0px 19px 2px #ec137954;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.feature_list_card:hover .feature_list_card__icon .inner {
    box-shadow: inset 0 0px 50px 2px #ec1379a3;
}

.feature_list_card .feature_list_card__content {
    padding: 30px 0;
}

.feature_list_card .feature_list_card__content h3.hero-description {
    text-transform: capitalize;
    font-weight: 500;
}

.competition_sec .section-title h2 {
    padding: 10px 0 18px;
}

.competition_sec .section-title h3 {
    font-weight: 500;
}

.feature_list_card .feature_list_card__content h3.hero-description {
    font-size: 1.2rem;
    text-align: center;
}

/* contact form page*/
.form-area {
    background: #fff8e4;
    padding: 2.5rem;
}

/*.contact-info-wrapper{
     padding: 2.5rem;
}
*/
.form-area .wpcf7-form-control.wpcf7-submit.has-spinner.webBtn {
    background: #e2ad22;
    border: 1px solid #e2ad22 !important;
}

.form-area .wpcf7 form.invalid .wpcf7-response-output {
    border-color: #9c0505;
}

.contact_details {
    margin-top: 1.5rem;
}

.link-social a {
    color: var(--darkColor);
}

.social-card {
    text-align: center;
    background-color: #fff;
    padding: 2px;
    border: 1px solid #3a3a3a;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin-bottom: 30px;
}

.social-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    color: #ffffff;
    font-size: 28px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    background-image: -moz-linear-gradient(86deg, #d6a518 0%, #a57b02 44%, #fbb936 100%);
    background-image: -webkit-linear-gradient(86deg, #d6a518 0%, #a57b02 44%, #fbb936 100%);
    background-image: -ms-linear-gradient(86deg, #d6a518 0%, #a57b02 44%, #fbb936 100%);
    box-shadow: 0px 17px 40px 0px rgba(124, 78, 25, 0.35);
}

.social-card__content {
    margin-top: 25px;
}

.social-card__content span {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--webcolor);
    margin-top: 5px;
}

.contact-info-wrapper {
    padding: 2rem 2.5rem;
    background-color: #fff8e4;
}

/*top up css*/
button.plus_box {
    background-color: black;
    color: #fff;
    font-size: 1.1rem;
    line-height: normal;
    padding: 5px 10px;
    margin-left: -11px;
    border: 1px solid #000;
    border-radius: 0px 6px 6px 0;
   height: 100%;
}

.add_amount ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding-left: 0;
    justify-content: center;
    gap: 20px;
}

.add_amount ul li {
    border: 1px solid #000;
    padding: 8px 11px;
    line-height: normal;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

.currency-input {
    position: relative;
    border-bottom: 1px solid #000;
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.currency-input input {
    border: none !important;
    font-size: 2.5rem;
    text-align: center;
    line-height: normal;
    width: 100%;
    outline: none;
}
.currency-input button {
    position: relative;
    z-index: 222;
    background: none;
    border: none;
}
.bannerOffer img {
    width: 100%;
    height: 100%;
    border-radius: 13px;
}
.bannerOffer {
    border-radius: 10px;
    padding-bottom:  20px;
    overflow: hidden;
}
.currency-input:after {
    position: absolute;
    content: '';
    background-image: url(/wp-content/themes/ck/assets/images/Pound.png); 
    top: 0;
    width: 100px;
    height: 100%;
    background-position: left;
    background-repeat: no-repeat;
    background-size: 37px 37px;
    left: 3rem;
}
.deposit_btn {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 14px 33px;
    line-height: normal;
    border-radius: 4px;
    background: var(--webColor);
    color: #fff !important;
    font-weight: 600 !important;
    transition: 0.5s;
    font-size: 1.25rem;
    border: 1px var(--webColor);
}

.deposit_btn:hover {
    background-color: var(--greyColor);
}

.deposit_btn[disabled] {
    pointer-events: none;
    opacity: 0.6;
}

.input_check {
    gap: 10px;
}

.agree_line a {
    color: var(--webColor);
    font-size: 14px;
}

/*.top_up .offcanvas .offcanvas-body {
     overflow: hidden;
}
*/
.check_box {
    line-height: normal;
}

/* Default style reset */
[type=checkbox] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    appearance: none;
}

[type=checkbox] {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

[type=checkbox]::before,
[type=checkbox]::after {
    position: absolute;
    display: block;
    content: "";
}

[type=checkbox]::before {
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border: 1px solid #000;
    border-radius: 5px;
}

[type=checkbox]::after {
    top: 5px;
    left: 4px;
    width: 13px;
    height: 7px;
    border-bottom: 3px solid var(--webColor);
    border-left: 3px solid var(--webColor);
    transform: rotate(-45deg);
    transition: opacity 0.3s;
    opacity: 0;
}

[type=checkbox]:checked::after {
    opacity: 1;
}

/*Box page Slider*/
.featured-slider .swiper-slide {
    padding: 0 2px;
    height: auto;
}

.featured_image {
    height: 175px;
}

.productWrapper {
    -moz-animation: productMove 800ms linear;
    -webkit-animation: productMove 800ms infinite linear;
    animation: productMove 800ms infinite linear;
}

.productWrapper {
    animation-play-state: paused;
}

@keyframes productMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.modal-wrap {
    width: 60rem;
    margin: 0px auto;
    background: #f5e6be;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    position: absolute;
    z-index: 888;
    left: 0;
    right: 0;
    top: 4rem;
    visibility: hidden;
    transition: all 0.50s ease-out;
}

.modalMain {
    height: 100vh;
    position: fixed;
    display: flex;
    background: #3a3a3af0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 44444;
    visibility: hidden;
    opacity: 0;
    transition: all 0.50s ease-out;
}

.mainActive {
    visibility: visible;
    opacity: 1;
}

.modalActive {
    top: 6rem;
    visibility: visible;
}

.modal-header {
    justify-content: right;
}

.item-text ul li {
    background: #eab422;
    padding: 10px;
    border-radius: 7px;
    font-weight: 600;
    color: #fff;
}

.item-text ul li a {
    color: #fff;
    font-size: 18px;
}

.item-text ul {
    list-style: none;
    display: flex;
    column-gap: 30px;
    justify-content: center;
    padding: 0;
}

.item-text {
    padding-top: 0.6rem;
}

.closeBtn {
    cursor: pointer;
}

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

.itemName {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding-top: 20px;
}

.item-image img {
    width: 15rem;
}

.productSwiper .reward_slide img {
    object-fit: contain;
    height: 12rem;
    margin: 0px auto;
}

.modal-wrap .item-image {
    width: 8rem;
    margin: 0px auto;
}

#confetti {
    display: block;
}

.single_product_page {
    padding: 6rem 0;
}

.woocommerce-shop .single_product_page .woocommerce-product-gallery--without-images {
    opacity: 1 !important;
}

.single_product_page .woocommece_sidebar {
    display: none;
}

.woocommerce-shop .single_product_page div.product form.cart .button {
    vertical-align: middle;
    float: left;
    padding: 14px 33px !important;
    line-height: normal;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--webColor) !important;
    color: #fff !important;
    font-weight: 600 !important;
    transition: 0.5s;
    font-size: 1.25rem !important;
    border: 1px var(--webColor) !important;
}

.woocommerce .single_product_page div.product form.cart div.quantity {
    float: left;
    margin: 5px 12px 0 0px;
}

.woocommerce .single_product_page .quantity .qty {
    width: 3.4em !important;
    text-align: center;
    padding: 5px 1px !important;
    border: 1px solid var(--webColor) !important;
    font-size: 1.2em !important;
}

.woocommerce .single_product_page div.product .product_title {
    clear: none;
    margin-top: 0;
    padding: 0;
    font-size: 2rem !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #333 !important;
    font-size: 1.35em !important;
    padding: 10px 0 !important;
}

.woocommerce-cart .woocommerce-cart-form {
    padding: 6rem 0 2rem;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    padding: 14px 33px !important;
    background: var(--webColor) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: 0.5s !important;
    font-size: 1.25rem !important;
    border: 1px var(--webColor) !important;
}

.woocommerce-cart .cart-collaterals {
    padding: 0rem 0 6rem;
}

.woocommerce-cart .wc-proceed-to-checkout a.button.alt:hover {
    background-color: var(--greyColor) !important;
    color: #fff !important;
}

.woocommerce-cart .shop_table .product-quantity {
    display: none;
}

.open_item[disabled] {
    pointer-events: none;
    cursor: not-allowed;
    background: #00000052;
    color: #00000069;
}

/*test page*/
.dropdown_list select {
    padding: 0.62rem 0.95rem 0.62rem;
    line-height: normal;
    font-size: 1rem;
    cursor: #000;
    border: 2px solid var(--webColor);
    width: 263px;
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    z-index: 22;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: window;
    background-repeat: no-repeat;
    background-position: 95%;
}

.search_bar input {
    background: #fff !important;
    background-image: none !important;
    color: #333 !important;
    padding: 0.42rem 0.55rem 0.42rem 0.675rem !important;
    margin: 0 !important;
    outline: 0 !important;
    font-size: 1rem !important;
    border-radius: 10px 0px 0px 10px !important;
    border: 2px solid var(--webColor) !important;
    height: auto !important;
}

.search_bar .input-group-text {
    color: #fff;
    border-radius: 0px 10px 10px 0px !important;
    border: 2px solid var(--webColor) !important;
    padding: .375rem 0.75rem;
    border-left: none !important;
}

.dropdown_list select:focus-visible {
    outline: none;
}

select#cat {
    background-image: url(/wp-content/themes/ck/assets/images/menu-d.svg);
}

select#sort {
    background-image: url(/wp-content/themes/ck/assets/images/sort.svg);
}

/*popup Insufficient balance*/
#popup-area {
    display: none;
}

.popup-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgb(14 13 39 / 70%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

.popup-sec {
    background-color: #ffffff;
    padding: 20px 30px;
    width: 50%;
    border-radius: 15px;
    transform: scale(1);
}

.close-popup {
    display: flex;
    justify-content: flex-end;
}

.close-popup a {
    font-size: 1.2rem;
    background-color: var(--webColor);
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
}

.popup-sec>h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.popup-sec>p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.popup-btn {
    display: inline-block;
    text-decoration: none;
    border: 2px solid var(--webColor);
    padding: 5px 15px;
    border-radius: 20px;
    margin: 10px 0px;
    transition: .2s all ease-in;
    color: #000;
}

.popup-btn:hover {
    background-color: var(--webColor);
    color: #fff;
}

/*start compare popup css*/
.compare_heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.compare_heading h3 {
    margin-bottom: 0 !important;
    font-size: 1.3rem;
    font-weight: 600;
}

.compare_heading img {
    width: 28px;
}

div#staticBackdrop1 {
    width: 600px;
}

.provably_content label {
    display: flex;
    color: #333639;
    font-weight: 600;
    gap: 11px;
    align-items: center;
}

.provably_content label img {
    width: 14px;
}

.provably_content input {
    border-radius: 5px;
    border: 1px solid #7c7979;
}

.provably_content button {
    background-color: var(--webColor);
    color: #fff;
    border: 1px solid var(--webColor);
    padding: 8px 8px;
    border-radius: 0;
    gap: 5px;
    margin-left: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: normal;
}

.provably_content button img {
    width: 15px;
}

.compare_para p {
    color: #333639;
}

.compare_para h5 {
    color: #000;
    font-weight: 600;
}

.seed_lock button {
    padding: 11px 17px;
    border-radius: 7px;
    font-size: 1.1rem;
}

.seed_lock button img {
    width: 20px;
}

button.comparebox {
    border: none;
}

.know_bottom a {
    color: #000;
    text-decoration: underline;
}

.compare_body {
    padding: 0 1.5rem !important;
}

button.btn-close:focus-visible {
    outline: none;
}

.offcanvas-header {
    padding: 50px 35px 20px;
}

button.btn-close {
    border: 1px solid #000000;
}

/*End compare popup css*/
.add_funds {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.add_funds .modal-content {
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 54px 30px;
    border: 1px solid #888;
    min-width: 620px;
    max-width: 1200px;
    width: auto;
    text-align: center;
}

.add_funds p {
    color: #e2ad22;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

/*17-11-23 css*/
label.QnA_radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
}

.QnA_options {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    margin: 0px 0px 20px 0px;
    gap: 25px;
}

.add_funds .modal-content h3 {
    margin-bottom: 3rem;
}

.add_funds .modal-content button.QnA_btn {
    width: fit-content;
    text-align: center;
    margin: 15px auto 0px;
}

.add_funds .modal-content input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.QnA_close_btn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    background-color: var(--webColor);
    padding: 4px 16px;
    line-height: normal;
    border-radius: 0px 6px;
    color: #fff;
    cursor: pointer;
}

.woocommerce-account input[type=checkbox] {
    padding: 0 !important;
    border: none !important;
    margin-top: 0 !important;
}

label.woocommerce-form-login__rememberme {
    display: flex !important;
    align-items: center;
    gap: 11px;
    margin-top: 10px;
    justify-content: center;
}

label.woocommerce-form-login__rememberme span {
    line-height: normal;
    padding-top: 3px;
}

.right_popup_one .offcanvas-body {
    overflow: hidden;
}

.detail_image .post-thumbnail img {
    width: 400px;
    object-fit: contain;
}

button.itemsbox {
    background-color: transparent;
    border: none;
}

/*start three right popup */
.item_box_right .item_image {
    height: 250px;
}

.item_box_right .item_image img {
    height: 100%;
    object-fit: contain;
}

.item_box_right .item_content h5 {
    margin: 0.7rem 0;
}

.item_box_right h5 {
    font-size: 1rem;
    font-weight: 700;
}

.data_details .item-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, #e0e0e0 40%, #fff);
    box-shadow: 0 0.13rem 0.25rem 0.06rem #0000001a;
    padding: 0.63rem 0.18rem;
    position: relative;
}

.right_popup_three .offcanvas-body {
    padding: 1rem 1.7rem;
}
}

/*.right_popup_three .offcanvas {
     width: 575px;
}
 */
.item_box_right .item_content {
    padding: 1rem 0;
}

.data_details .item-field p {
    color: #666;
    margin-bottom: 0;
}

.item_box_popup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.item_box_right .section-title h6 {
    font-weight: 700;
}

.item_box_popup .featured_box {
    padding: 0.5rem;
    border-radius: 4px;
}

.item_box_popup .featured_content span {
    font-size: 0.8rem;
}

.item_box_popup .featured_content h6 {
    margin-bottom: 0.1rem;
}

/*end three right popup */
/*loader*/
.loader {
    border: 5px solid #f3f3f3;
    /* Light grey */
    border-top: 5px solid var(--webColor);
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
/*    margin-left: 47%;*/
}

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

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

.QnA_btn[disabled] {
    background: #00000052;
    cursor: not-allowed;
}

/*loader*/
/*20-11-23*/
p.less-content {
    max-height: 175px;
    overflow: auto;
    padding-right: 1rem;
}

/*20-11-23*/
/*21-11-23*/
a.act-btn.sell-item[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    background: #e2ad2282;
}

.coin-ck span {
    font-size: 25px;
    font-weight: 600;
}

.coin-rate {
    padding-bottom: 10px;
    padding-top: 10px;
    font-weight: 600;
}

.coin-rate span {
    font-size: 17px;
}

.coin-ck span {
    font-size: 20px;
}

.package_714 .bundle__name p,
.package_715 .bundle__name p,
.package_718 .bundle__name p {
    color: #fff;
}

.bundle__name {
    padding-bottom: 0px;
}

.bundle__name span p {
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
}

#alertpopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#alertpopup-order {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.alert-content {
    background: white;
    padding: 50px;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.alert-content .clospopup {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #e2ad22;
    cursor: pointer;
}

.alert-img {
    height: 75px;
    margin-bottom: 30px;
}

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

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

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

.c_rotation {
    animation: roundrotate 1.2s linear;
}

input#clientSeed[disabled] {
    background: #dddddd;
}

input#serverHash[disabled] {
    background: #dddddd;
}

input#Unboxing[disabled] {
    background: #dddddd;
}

/*21-11-23*/
/*cart page design 21-11-23*/
.cart_items {
    position: relative;
    border: 1px solid #e0e0e0;
    align-items: center;
    border-radius: 15px;
}

.cart_items:after {
    content: '';
    position: absolute;
    background-color: #e0e0e0;
    width: 1px;
    height: 100%;
    right: 263px;
}

.action-btns a.act-btn:last-child {
    margin-bottom: 0;
}

.user_cart .cart_items img {
    border: 1px solid #e7e7e7;
    padding: 10px;
    border-radius: 12px;
    width: 200px;
    height: 150px;
    object-fit: contain;
}

/*End cart page design 21-11-23*/
/*Start item BG Color*/
.bronze {
    background: linear-gradient(to bottom, #CD7F32, #fff0) !important;
}

.silver {
    background: linear-gradient(to bottom, #C0C0C0, #fff0) !important;
}

.gold {
    background: linear-gradient(to bottom, #FFD700, #fff0) !important;
}

.platinum {
    /*background: linear-gradient(to bottom,#E5E4E2 ,#fff0) !important;
    */
    background: linear-gradient(to bottom, #800080, #fff0) !important;
}

.tin {
    background: linear-gradient(to bottom, #C0C0C0, #fff0) !important;
}

.copper {
    background: linear-gradient(to bottom, #B87333, #fff0) !important;
}

.level_bronze {
    background: #CD7F32;
    color: #fff;
}

.level_silver {
    background: #C0C0C0;
    color: #000;
}

.level_gold {
    background: #FFD700;
    color: #fff;
}

.level_platinum {
    background: #800080;
    color: #fff;
}

.item_label {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #ffffffcf;
    padding: 2px 7px;
    z-index: 10;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 800;
    text-transform: capitalize;
}

.item_label_bronze {
    color: #CD7F32;
}

.item_label_silver {
    color: #C0C0C0;
}

.item_label_gold {
    color: #ccb11f;
}

.item_label_platinum {
    color: #452c39;
}

/*End item BG Color*/
/*Testimonial*/
.testimonial_reviews {
    padding: 5.125rem 0 6rem;
}

.testimonial_reviews .section-title {
    margin-bottom: 60px;
}

.testimonial_reviews .section-title h3 {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonial_box {
    background: #d7d7d7;
    padding: 50px 50px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    height: 460px;
}

.testimonial-single__content p {
    color: #000 !important;
    line-height: 28px;
}

.testimonial_box .ratings {
    background-color: #e2ad22;
    border: 1px solid #e2ad22;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    margin-top: 15px;
}

.testimonial_box .ratings i {
    font-size: 14px;
    color: #fff;
}

.testimonial_slider .testimonial-single__thumb {
    width: 90px;
    height: 90px;
    display: inline-block;
}

.testimonial_slider .testimonial-single__thumb img {
    display: inline;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: rgb(0 0 0 / 25%) 0px 25px 50px -12px;
}

.testimonial-single__content {
    padding-top: 30px;
}

/* Menu Button */
#menu-item-794.webBtn {
    position: relative;
    margin-left: 30px;
    padding: 10px 17px 10px 42px;
}

#menu-item-794.webBtn a:before {
    content: '' !important;
    display: inline-block;
    height: 100%;
    width: 100%;
    background-image: url('/wp-content/themes/ck/assets/images/ck__coin.png');
    background-size: 19px 19px;
    background-repeat: no-repeat;
    top: 11px;
    left: 14px;
    position: absolute;
}

.item_content h5.item-head {
    height: auto;
}

/*22-11-23*/
.provably_content input {
    font-size: 0.91rem;
    padding: 0.7rem 0.7rem !important;
}

/* width */
.less-content::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.less-content::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #e1e0e0;
}

/* Handle */
.less-content::-webkit-scrollbar-thumb {
    background: var(--webColor);
    border-radius: 10px;
}

/**/
.notallowed_content p {
    color: #ff0000;
    font-size: 20px;
}

.dk__done {
    display: none;
}

.competition_reviews .section-title h4 {
    margin-bottom: 1.5rem;
}

.competition_reviews .section-title p {
    margin-bottom: 3rem;
}

.about-wrapper__content {
    padding-top: 1.5rem;
}

.about-wrapper__content p {
    margin-bottom: 0;
}

/*22-11-23*/
/*start how to play*/
.how_play_boxes {
    display: grid;
    column-gap: 25px;
    row-gap: 25px;
    grid-template-columns: 1fr 1fr 1fr;
    list-style: none;
}

li.how_play_list {
    border: 3px solid var(--webColor);
    border-radius: 14px;
    text-align: center;
    padding: 1rem;
    background: #fff;
}

.play_img {
    position: relative;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: normal;
    margin: 0 auto;
    background-color: var(--webColor);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
}

.how_play_list img {
    width: 35px;
    display: block;
    margin: 0px auto;
    position: absolute;
    left: 0;
    top: 21%;
    right: 0;
    filter: brightness(088);
}

.adventure_content h4 {
    padding-left: 2rem;
}

.padding-right {
    padding: 0 2rem 0 0 !important;
}

/*.bg-copper {
    background: #B87333;
}*/

.bg-copper {
    background: #fff8e4;
}

/*.bg-bronze {
    background: #CD7F32;
}*/

.bg-bronze {
    background: #fff;
}

/*.bg-silver {
    background: #C0C0C0;
}*/

.bg-silver {
    background: #fff8e4;
}

/*.bg-gold {
    background: #FFD700;
}*/

.bg-gold {
    background: #fff;
}
/*.bg-platinum {
    background: #800080;
}*/

.bg-platinum {
    background: #fff8e4;
}

.bg-copper .section-title {
    color: #fff;
}

.bg-copper .adventure_content h4,
.bg-bronze .adventure_content h4,
.bg-platinum .adventure_content h4 {
    color: #000;
}

/*end how to play*/
p#order_unboxing_id_field {
    display: none;
}

/*tr.woocommerce-shipping-totals.shipping {
     display: none;
}
*/
.woocommerce form .woocommerce-shipping-fields .form-row input.input-text {
    padding: 16px 20px !important;
    border: 1px solid #c2c2c2 !important;
}

/** Forget Pass*/
.woocommerce-ResetPassword {
    text-align: center;
}

.woocommerce-Input--text.input {
    text-align: center;
    margin: 0px auto;
    width: 100%;
}

.lost_reset_password input.woocommerce-Input--text {
    text-align: center;
    margin: 0px auto !important;
    display: inline;
    width: 50% !important;
}

.lost_reset_password .woocommerce-form-row--first {
    margin: 0px auto !important;
    width: 100% !important;
}

.lost_reset_password button.woocommerce-Button.button {
    display: inline-block !important;
    width: auto;
}

.lost_reset_password p {
    color: #000;
}

/**End Forget Pass*/
.featured_content span.item_price {
    font-size: 1.4rem;
}

.ck_coin_img {
    width: 38px !important;
    height: 38px !important;
    margin-top: -5px;
    display: inline-block !important;
}

.ck_headcoin_img {
    width: 35px !important;
    height: 35px !important;
    margin-top: 0px;
    display: inline-block !important;
}


.ck_boxcoin_img {
    width: 25px !important;
    height: 20px !important;
    margin-top: -6px;
    display: inline-block !important;
}

.singleitem_coin_img {
    width: 25px !important;
    height: 25px !important;
    margin-top: -6px;
    display: inline-block !important;
}

.user_cart .cart_items img.ck_coin_img {
    width: 28px !important;
    height: 28px !important;
    margin-top: -4px;
    display: inline-block !important;
    border: none !important;
    padding: 0 !important;
}

.top_up .package_713 {
    background: #C0C0C0;
}

.top_up .package_714 {
    background: #B87333;
    color: #fff;
}

.top_up .package_715 {
    background: #CD7F32;
    color: #fff;
}

.top_up .package_716 {
    background: #C0C0C0;
}

.top_up .package_717 {
    background: #FFD700;
}

.top_up .package_718 {
    background: #800080;
    color: #fff;
}

/*Box Page fliter Section*/
.box-wrapper__header {
    /*background-color: #3a3b3b;*/
    border-radius: 30px 30px 0px 0px;
    padding: 4rem 0 0;
}

.box-wrapper__header .box-wrapper__title {
    font-size: 2rem;
    font-weight: 700;
    color: #e2ad22;
    text-transform: uppercase;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.box-wrapper__header .box_header-tab-nav {
    border-bottom: 1px solid #ffd787;
    justify-content: center;
    padding-bottom: 20px;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
}

.box_header-tab-nav li {
    width: calc(71% / 6);
    text-align: center;
}

.box_header-tab-nav li .bx-cate_gory {
    background-color: transparent;
    border-color: transparent !important;
    border-bottom: 4px solid transparent;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}

.box_header-tab-nav li .bx-cate_gory .icon-thumb {
    height: 100px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.box_header-tab-nav li .bx-cate_gory .icon-thumb::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background-color: rgb(222 170 32 / 14%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: -40px;
    margin-left: -40px;
}

.box_header-tab-nav li .bx-cate_gory span {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    color: #000;
    padding-bottom: 10px;
}

.box_header-tab-nav li.active,
.box_header-tab-nav li:hover {
    background-color: transparent !important;
    border-color: transparent !important;
    border-bottom: 4px solid #c19c4e !important;
}

/*27-11-23*/
table.data-history {
    width: 100%;
}

.free__box_txt {
    list-style: none;
}

.free__box_txt li {
    position: relative;
    color: #333;
    line-height: 30px;
    padding: 10px 0 0;
    font-weight: 500;
    display: flex;
    gap: 35px;
}

.free__box_txt li:after {
    position: absolute;
    content: '1)';
    left: 28px;
    top: 11px;
    font-size: 16px;
}

.free__box_txt li:nth-child(2):after {
    content: '2)';
}

.free__box_txt li span:first-child {
    display: flex;
    gap: 10px;
}

.free__box_txt li span i {
    padding-top: 6px;
}

/*28-11-23*/
/
/* single drawer info*/
.re_position {
    position: relative;
}

.single_info_drawer {
    position: absolute;
    top: -4px;
    right: 4px;
    z-index: 15;
    cursor: pointer;
}

.drawer_ship_sec {
    display: none;
    padding: 20px 0;
}

.pro__fee {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px 15px;
}

.pro__fee .price_d {
    color: var(--greyColor);
}

.pro__fee span {
    font-size: 0.9rem;
    font-weight: 500;
}

.total-ship__items {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 8px 15px;
    border-top: 1px solid #888;
}

.total-ship__items .price_d {
    color: var(--greyColor);
}

.total-ship__items span {
    font-size: 0.9rem;
    font-weight: 500;
}

.drawer_ship_desc {
    background: #e0e0e0;
    padding: 12px 15px;
}

.drawer_ship_desc p {
    color: var(--greyColor);
    font-size: .8rem;
}

.right_popup_one .offcanvas {
    height: auto;
    overflow: scroll;
    display: block;
}

.woocommerce-order-received .woocommerce .woocommerce-notice--success {
    padding-top: 4rem;
    display: none;
}

a.prev.page-numbers,
a.next.page-numbers,
.page-numbers {
    font-size: 20px;
    color: #e2ad22;
    padding: 0px 5px;
}

.pagination {
    margin-top: 15px;
}

.woocommerce-order-received tr.order-Payment {
    display: none;
}

.woocommerce-view-order tr.order-Payment {
    display: none;
}

.woocommerce-cart-form__contents td .button {
    display: none;
}

.provably_content a.provablyFair-verify {
    display: inline-block;
    padding: 14px 33px;
    line-height: normal;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--webColor);
    color: #fff !important;
    font-weight: 600 !important;
    transition: 0.5s;
    font-size: 1.25rem;
    border: 1px var(--webColor);
    margin-top: 20px;
}

.provably_content a.provablyFair-verify:hover {
    background-color: var(--greyColor);
    color: #fff;
}

.unboxing_result_heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.unboxing_result_heading img {
    width: 32px;
}

.unboxing_result_heading h3 {
    margin-bottom: 0px !important;
    font-size: 1.3rem;
    font-weight: 600;
}

.verified_result_heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    margin-bottom: 30px !important;
}

.verified_result_heading img {
    width: 20px;
}

.unbox_result {
    margin-bottom: 0 !important;
    font-size: 1.0rem;
    font-weight: 600;
}

.provably-fair-sec {
    padding: 4rem 0 0;
}

.fair-result {
    padding: 0 0 1rem;
}

.fair-result p {
    text-align: center;
    font-size: 25px;
    color: #000;
}

.fair-result p span {
    color: #e2ad22;
    font-size: 35px;
}

input.webBtn.form-btn {
    margin-top: 15px;
}

.provably-fair-sec form {
    padding: 2rem 0 2rem;
}

.fair_verification {
    color: #333;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    margin-bottom: 6rem;
}

.fair_verification ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.fair_verification p {
    color: #333;
}

.fair_verification li span,
.fair_verification p span {
    color: #e2ad22;
    font-weight: 600;
}

.mainHeader .navbar .navbar-nav li.ck-coins {
    visibility: hidden !important;
    display: none !important;
}

.logged-in .mainHeader .navbar .navbar-nav li.ck-coins {
    visibility: visible !important;
    display: inline-block !important;
}

.mainHeader .navbar {
    background-color: transparent !important;
    padding: 0;
}

.mainHeader .navbar .navbar-nav a {
    color: #fff;
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: 500;
}

.mainHeader .navbar .navbar-nav {
    align-items: center;
    gap: 26px
}

.navbar-collapse {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainHeader a.logoCenter {
    margin: 0 4rem;
}

button.go-bak-btn {
    color: #fff;
    background: #e2ad22;
    padding: 10px 20px;
    border: none;
}

.verified__para p {
    color: #333639;
}

a.user_toplink {
    color: #fff;
}


/*lost password*/
.resetPassword .lost_reset_password {
    background-color: #f6f5f8;
    border-radius: 15px;
    border: 1px solid #b8b8b830;
    text-align: left;
    padding: 3rem;
}

.resetPassword .lost_reset_password p:first-child {
    font-size: 1.5rem;
    font-weight: 600;
}

.resetPassword .lost_reset_password input {
    width: 100% !important;
    text-align: left;
}

.resetPassword .lost_reset_password .form-row-last {
    width: 100% !important;
}

.resetPassword .lost_reset_password label {
    color: #545151;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.resetPassword .lost_reset_password button {
    padding: 1rem 3rem !important;
}

.resetPassword .lost_reset_password button:hover {
    color: #fff !important;
    background-color: var(--greyColor) !important;
}

.resetPassword .lost_reset_password .show-password-input {
    top: 1em !important;
}

/*lost password Close*/
.right_popup_four .offcanvas {
    width: 550px !important;
}

.right_popup_four .offcanvas .provably_content .row {
    border: 0.06rem solid #efefef;
    display: flex;
    align-items: center;
    background-color: #faf3f3;
    font-size: .75rem;
    font-weight: 500;
    border-radius: 0.25rem;
    padding: 7px 0 7px 0;
    margin-bottom: 1rem;
}

.right_popup_four .offcanvas .provably_content .pro-text p {
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.9rem;
    line-height: 20px;
    color: #4e4d4d !important;
    font-weight: 600;
}

.right_popup_four .offcanvas .provably_content label {
    margin-bottom: 0.5rem;
}

.right_popup_four .offcanvas .pro-img img {
    width: 100%;
}

.right_popup_four .offcanvas .provably_content .row button {
    float: right;
}

.woocommerce-terms-and-conditions-wrapper a {
    color: var(--webColor);
}

.woocommerce-invalid #terms {
    outline: none !important;
}

.woocommerce form .form-row .input-checkbox {
    display: inline-block !important;

}

.woocommerce-checkout .wc_payment_methods.payment_methods {
    display: none;
}

.free__box_txt .box_txt {
    padding-top: 1px;
}

.data_details .item-field h6 {
    font-size: 0.9rem;
}

#singleitem-drawer .item_content {
    padding: 1rem 0;
}

/*scrolling box 05-12-23*/
.scrolling_box_rows {
    gap: 10px;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}

.scrollingBox .item_box {
    max-width: 110px;
    flex: 0 0 auto;
}

/*.scrollingBox .container {
    margin: 0px auto;
}*/
/* width */
.scrollingBox .scrolling_box_rows::-webkit-scrollbar {
    height: 10px;
}

/* Track */
.scrollingBox .scrolling_box_rows::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
.scrollingBox .scrolling_box_rows::-webkit-scrollbar-thumb {
    background: #e2ad22;
    border-radius: 10px;
}

span.page-numbers.current {
    background: #e2ad22;
    color: #fff;
    padding: 0px 10px;
}

a.page-numbers.current {
    background: #e2ad22;
    color: #fff;
    padding: 0px 10px;
}

/*Info tooltip*/
.infotooltip {
    position: relative;
    z-index: 111;
    right: 10px;
}

.price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    position: absolute;
    bottom: 10px;
    justify-content: space-between;
    left: 0;
    height: 32px;
}

.tooltip_box img {
    padding-left: 17px;
    padding-bottom: 8px;
}

.infotooltip:hover:after {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    background: var(--webColor);
    border-radius: 8px;
    color: #fff;
    content: attr(title);
    margin: -70px auto 0;
    font-size: 14px;
    padding: 5px;
    white-space: pre;
}

.infotooltip:hover:before {
    border: solid;
    border-color: var(--webColor) transparent;
    border-width: 12px 6px 0 6px;
    content: "";
    left: 45%;
    bottom: 8px;
    position: absolute;
}

.tooltip_box .price_d {
    color: var(--webColor);
    font-size: 1.25rem;
    font-weight: 500;
}

.price-href {
    text-align: right;
}

/*Info tooltip close*/

.billiard-ball {
    position: relative;
    display: grid;
    place-items: center;
    width: 2.5rem;
    cursor: pointer;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(176deg, rgba(128, 220, 79, 1) 0%, rgba(33, 121, 15, 1) 100%);
}
.billiard-ball .tooltip {
    background: #0F9C26;
    transform: translate(-50%, -50%) !important;
    top: -60%;
    left: 50% !important;
    padding: 0px 10px !important;
    color: #fff;
    display: block;
    white-space: pre;
    margin-bottom: 6px;
    opacity: 0;
    padding: 3px;
    text-align: center;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    font-size: 14px;
    font-weight: 500;
    padding: 1px 9px !important;
}

.billiard-ball .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
}
.billiard-ball .tooltip:after {
    border-left: solid transparent 8px;
    border-right: solid transparent 8px;
    border-top: solid #0F9C26 8px;
    bottom: -7px;
    content: " ";
    height: 0;
    left: 50%;
    margin-left: -8px;
    position: absolute;
    width: 0;
}
.billiard-ball:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}
.billiard-ball.Selected .tooltip {
    background: #FBA416;
}
.billiard-ball.Selected .tooltip:after {
    border-top: solid #FBA416 8px;
}
.billiard-ball.Sold .tooltip {
    background: #FF1616;
}
.billiard-ball.Sold .tooltip:after {
    border-top: solid #FF1616 8px;
}
/*Close*/
/* pool */

.billiard-ball::after {
    content: var(--_nr, "");
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    background-color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50px;
}

.billiard-ball::before {
    content: '';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    width: 32px;
    height: 32px;
    border-radius: 50px;
}


.billiard-ball.Sold{
    background: linear-gradient(176deg, rgba(250, 5, 6, 1) 0%, rgba(115, 3, 3, 1) 100%);
    cursor: auto;
}
.billiard-ball.Available{
    background: linear-gradient(176deg, rgba(128, 220, 79, 1) 0%, rgba(33, 121, 15, 1) 100%);
}
.billiard-ball.Selected{
    background: linear-gradient(176deg, rgba(251, 200, 61, 1) 0%, rgba(244, 162, 25, 1) 100%);
}
.billiard-balls {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 1rem;
    margin-top: 2rem;
}
/*Close*/

/*Start Spin2Win*/

.spin2Win-ball {
    position: relative;
    width: 47px;
    padding: 5px 18px;
    cursor: pointer;
    border-radius: 4px;
    background-color: #0F9C26;
    border: 1px solid #FFBD11;
}
.spin2Win-ball .tooltip {
    /*background: #0F9C26;*/
    background: #fff3d3;
    transform: translate(-50%, -50%) !important;
    top: -60%;
    left: 50% !important;
    padding: 0px 10px !important;
    /*color: #fff;*/
    color: #646362;
    display: block;
    white-space: pre;
    margin-bottom: 6px;
    opacity: 0;
    padding: 3px;
    text-align: center;
    pointer-events: none;
    position: absolute;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    font-size: 14px;
    font-weight: 500;
    padding: 1px 9px !important;
    text-transform: capitalize;
}

.spin2Win-ball .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
}
.spin2Win-ball .tooltip:after {
    border-left: solid transparent 8px;
    border-right: solid transparent 8px;
    border-top: solid #fff3d3 8px;
    bottom: -7px;
    content: " ";
    height: 0;
    left: 50%;
    margin-left: -8px;
    position: absolute;
    width: 0;
}
.spin2Win-ball:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}
.spin2Win-ball.selected .tooltip {
    background: #0f9c26;
    color: #fff;
}
.spin2Win-ball.selected .tooltip:after {
    border-top: solid #0f9c26 8px;
}

.spin2Win-ball.sold .tooltip {
    background: #ff0000;
    color: #fff;
}
.spin2Win-ball.sold .tooltip:after {
    border-top: solid #ff0000 8px;
}
/*Close*/
/* pool */

.spin2Win-ball::after {
    content: var(--_nr, "");
    /*color: #fff;*/
     color: #646362;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.spin2Win-ball.sold{
    /*background-color: #FFF3D3;*/
     background-color: #ff0000;
    cursor: auto;
}
.spin2Win-ball.available.selected:after {
    color: #fff;
}


/*.spin2Win-ball.available{
    color: #fff;
    background-color: #0F9C26;
}*/

.spin2Win-ball.available {
    color: #646362;
    background-color: #fff3d3;
}




.spin2Win-ball.selected{
    /*background: linear-gradient(176deg, rgba(251, 200, 61, 1) 0%, rgba(244, 162, 25, 1) 100%);*/
    color: #fff;
    background: #0F9C26
}
.spin2Win-balls {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 9px;
    margin-top: 2rem;
}
.spin2Win-ball.sold::after {
    /*color: #646362;*/
    color: #fff;
}

/*Close*/


form.post-password-form {
    text-align: center;
}

.post-password-form input[type="submit"] {
    background-color: #e2ad22;
    color: #fff;
    border: 1px solid #e2ad22;
    margin-top: 0 !important;
    border-radius: 4px;
    padding: 14px 20px;
    transition: 0.5s;
}

input#pwbox-3025 {
    width: 100%;
    font-size: 1rem;
    color: #000000;
    padding: 10px !important;
    margin-top: 0 !important;
}



.page-id-3025 table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.page-id-3025 td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.page-id-3025 tr:nth-child(even) {
  background-color: #dddddd;
}

.post-password-form{
    margin-top: 50px;
}

.post-password-form input#pwbox-3025 {
    margin-top: 24px !important;
}



/* 14-04-2025  */

.spendlimit-label{
    padding-top: 25px;
}
#spending-limit-amount{
  margin: 0px !important;
}
#take-a-break-sc{
    margin-top: 10px;
    background: #e2ad22 !important;
    padding: 15px 14px !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 11px !important;
    text-transform: capitalize;
}
#spending-limit-amount {
    background: transparent;
    height:38px;
    max-width: 125px;
    padding: 9px 11px;
    border-radius: 5px;
    border: 1px solid #e2ad22 !important;
}
#spending-limit-interval-select{
    background: transparent;
    height: 38px;
    max-width: 125px;
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid #e2ad22 !important;
}
.spending-limit-slider{
    align-items: center !important;
    display: flex;
    gap: 20px;

}
#take-a-break-spending-controls{
    background: transparent;
    height:38px;
    max-width: 140px;
    padding: 9px 11px;
    border-radius: 5px;
    border: 1px solid #e2ad22 !important;
}

.spending-controls-my-account h2{
    padding-bottom: 10px;
}

#save-limits-sc {
    padding: 13px 10px !important;
    width: 100%;
    margin: 10px 0px;
    text-transform: capitalize;
}


.pause-account-spending-controls{
    display: flex;
        flex-direction: column;
        gap: 10px;
}


/* All browsers - base track style */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    border-radius: 5px;
    outline: none;
    border: none;
  }
  
  /* Chrome, Safari, Edge - track */
  input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    background: #e2ad22;
    border-radius: 5px;
  }
  
  /* Chrome, Safari, Edge - thumb */
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #e2ad22;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    margin-top: -5px; /* align with track */
  }
  
.spending-limit-amount-cont{
    display: flex;
        align-items: center;
        gap: 7px;
}
  #spending-limit-range{
    margin: 0px !important;
    border: transparent !important;
  }
  .spending-limit-parent {
    padding-bottom: 10px;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 20px;

}



/*sell and claim*/
.winning_tab a{
    position: relative;
}

.winning_tab a .cb-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d3d3d3;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px 30px;
    font-size: 23px;
    font-weight: bold;
    color: #8a8787;
    transition: 0.5s;
}

.winning_tab .count {
    background-color: #ff1616;
    color: #fff;
    border-radius: 0px 0px 7px 0px;
    position: absolute;
    font-size: 14px;
    top: 0;
    left: 0;
    padding: 8px;
    line-height: 9px;
}

.competition-box-section.tab-container.winning_tab a .cb-tab.active {
    background: black;
    color: #e2ad22;
}
.hide-field {
    display: none;
}

.text__underpopup a {
    text-decoration: underline;
    color: #e2ad22;
    font-weight: 700;
}

p.cash-heading {
    font-size: 23px;
    color: #000;
    font-weight: 600;
    margin-bottom: .5rem;
}

.swal2-cancel {
    background: #e2ad22;
}

.text__underpopup p {
    float: left;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
    padding: 10px;
    background: #fff;
    z-index: 6;
    left: 0;
    right: 0;
    padding-bottom: 10px;
    font-size: 18px;
    color: #e2ad22;
}

#card_name_field,#account_number_field,#sort_code_field{
    display: none;
}

.bank_fields{
    display: none;
}

td.product-name {
    display: flex;
}


.woocommerce a.remove {
    pointer-events: auto;
}



body .payment_box.payment_method_tp_gateway {
    background-color: #fff8e4 !important;
}


body .payment_box.payment_method_tp_gateway::before {
    border: 1em solid #fff8e4 !important;
        border-right-color: transparent !important;
    border-left-color: transparent !important;
    border-top-color: transparent !important;

}




/*pricing table new design*/
.pricingButton img{
    width: 30px;
    margin: 0 auto;
    display: block;
    padding-bottom: 10px;
    padding-top: 10px;
}
.ticket_save{
    background-color: goldenrod;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px !important;
    color: white !important;
    font-weight: 700;
    font-size: 18px;
   
}

.quanty ,.ticket_ticket ,.ticket_price{
    padding: 1px !important;
}
.ticket_best{
    padding-bottom: 10px !important;
     padding-top: 10px;
     font-size: 14px;
    color: #daa520 !important;
    font-family: 'Exo';
    font-weight: 500;
}
.quanty{
    font-size: 18px;
      font-weight: 700;
}

.ticket_price{
    padding-top: 12px !important;
    font-size: 23px;
    font-family: 'Exo';
    font-weight: 600;

}
.ticket_ticket {
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px !important;
    font-weight: 600;
    font-family: 'Exo';
}
.wrapper-3{
     border: 1px solid #902090 !important;
}
.wrapper-3 .ticket_best{
color: #902090 !important;
}
.wrapper-3 .ticket_save{
background-color: #902090 !important;
}
.wrapper-1{
     border: 1px solid #C0C0C0 !important;
}
.wrapper-1 .ticket_best{
color: #C0C0C0 !important;
}
.wrapper-1 .ticket_save{
background-color: #C0C0C0 !important;
}
.ticketPriceBtn .active{
 box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    /* border-width: 2px !important; */
    transform: scale(1.1);
    transition: .2s ease-in-out;
}

h3.bank_transfer_check {
    color: green;
}

strong.card-info {
    display: block;
}



/********
Steal Win Page 
********/
.stealStatusCard {
    background: #FFF1CC;
    padding: 4rem 3rem;
    text-align: center;
    border-radius: 30px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.stealStatusCard img {
    margin-bottom: 1rem;
    width: 10%;
    max-width: 100%;
}

.crownValueWrapper {
    border-bottom: 1px solid #fddf85;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.crownValueWrapper div h2 span {
    color: red;
}

.crownValueWrapper div {
    border: 1px #000;
    border-style: dashed;
    border-radius: 13px;
    padding: 10px;
    text-align: left;
}

.stealStatusCard:after {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    background: url(../images/lefts_curtain2.png);
    width: 100%;
    top: 0;
    z-index: 222;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
}

.stealStatusCard:before {
    content: '';
    position: absolute;
    right: 0;
    height: 100%;
    background: url(../images/rights_curtain2.png);
    width: 100%;
    top: 0;
    z-index: 222;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

.stealStatusCard h2 {
    color: #E5AC16;
}

.endprizeBox p {
    color: #000;
    font-family: 'Exo';
    font-weight: 500;
    font-size: 20px;
}

.endprizeBox h1 {
    margin: 0px;
    color: green !important;
}

.endprizeBox {
    padding: 23px 0rem 53px 0px;
    text-align: center;
    background: url(../images/placeholder.png) center / cover no-repeat, linear-gradient(90deg, #ECB425 23%, #FDDC85 100%);
    border-radius: 2rem;
    /* color: #ffffff;
    -webkit-text-fill-color: #fff; */
}
.endprizeBox .end_countdown {
    margin-top: 50px;
}

.endprizeBox h1 span {
    color: red;
}

.endprizeBox h4 {
    color: #000;
    margin-bottom: 15px;
}

.endprizeBox p {
    color: #000;
}
.crown_countdown ul li {
    font-weight: 500;
    font-size: 16px;
}
.crown_countdown ul li i {
    font-size: 18px;
    color: #bb8a0b;
    margin-right: 10px;
}
.crown_countdown ul {
    display: flex;
    gap: 20px;
    justify-content: center;
    border: 1px solid #e2ad22;
    width: fit-content;
    margin: 0px auto;
    padding: 14px 20px;
    border-radius: 20px;
    background: #f6dfa9;
    border-style: dashed;
}

.end_countdown {
    -webkit-text-fill-color: #000;
}
.endprizeBox .end_countdown {
    margin-top: 50px;
}
.end_countdown ul {
    border-color: #000;
}
.crownValueWrapper h2 {
    color: #000;
}

.leaderboardSection h5 {
    position: relative;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}