*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bs-body: #f1efef;
    --bs-heading: #646464;
    --bs-primary: #0067b7;
    --bs-link-color: #043a63;
    --bs-link-hover-color: #043a63;
    --bs-text-color: #9d9d9d;
    --bs-text-white: #fff;
    --bs-desc-color: #7c7c7c;
    --bs-box-shadow-color: #535252;
    --bs-dark-color: #000;
    --bs-red-color: #b10505;
    --bs-green-color: #048339;
    --gray: #555;
    --purple: #4e65ff;
    --green-blue: #92effd;
    --white: #fff;
    --fonts: "DM Sans", sans-serif;
    --fonts-title: "Figtree", sans-serif;
}

html {
    width: 100%;
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

.blue{
    background-color: var(--green-blue);
    border-radius: 4px;
    padding: 2px 5px;
    /*color: var(--bs-text-white);*/

}

body {
    width: 100%;
    height: auto;
    font-size: 100%;
    line-height: normal;
    text-align: left;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    font-family: var(--fonts);
    overflow-x: hidden;
    background-color: var(--bs-body);
    color: var(--bs-text-color);
    /*letter-spacing: 0.5px;*/
    position: relative;
}

.cust_container {
    width: 92%;
    max-width: 1800px;
    margin: 0 auto;
    height: auto;
    padding: 0 15px;
}

.bothSide_gap {
    width: 100%;
    height: auto;
    padding: 40px 0;
}

.topSide_gap {
    width: 100%;
    height: auto;
    padding: 40px 0 0;
}

.bottomSide_gap {
    padding: 0 0 40px;
}

img {
    width: 100%;
    height: 100%;
}

i {
    line-height: normal !important;
}

/* 
=============
Heading Tag
=============
*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: 100%;
    margin: 0 0 15px 0;
    padding: 0;
}

a {
    font-size: 100%;
    text-decoration: none;
    box-shadow: none;
    color: var(--bs-primary);
}

a:hover {
    text-decoration: none;
    color: var(--bs-primary);
}

section {
    width: 100%;
    height: auto;
}

table tr th {
    text-align: center;
    white-space: nowrap;
}

table tr td {
    text-align: center;
}

table tr td .green {
    background-color: var(--bs-green-color);
    border-radius: 4px;
    padding: 2px 5px;
    color: var(--bs-text-white);
}

table tr td .red {
    background-color: var(--bs-red-color);
    border-radius: 4px;
    padding: 2px 5px;
    color: var(--bs-text-white);
}

table tr td .profile_pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

table tr td .profile_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.customModal_content table tr th {
    font-size: 75%;
}

.customModal_content table tr td {
    font-size: 75%;
}

/* 
=============
scrollbar
=============
*/

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(200, 200, 200, 1);
    background-color: #F5F5F5;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: var(--bs-secondary);
    -webkit-box-shadow: inset 0 0 5px #0098db;
}

/* 
=============
Slick Arrow
=============
*/
.slide-arrow {
    width: 27px;
    height: 27px;
    border: 1px solid #a3a3a3;
    background-color: transparent;
    border-radius: 4px;
    color: var(--gray);
    position: absolute;
    top: 105%;
}

.slide-arrow.prev-arrow {
    left: 48%;
}

.slide-arrow.next-arrow {
    left: 52%;
}

.slide-arrow.prev-arrow::after {
    content: "\f053";
    font-family: "FontAwesome";
    color: var(--gray);
}

.slide-arrow.next-arrow::after {
    content: "\f054";
    font-family: "FontAwesome";
    color: var(--gray);
}

.slide-arrow.prev-arrow:focus,
.slide-arrow.next-arrow:focus {
    border: 1px solid var(--bs-primary) !important;
}

.slide-arrow.prev-arrow:focus::after,
.slide-arrow.next-arrow:focus::after {
    color: var(--bs-primary);
}

.slick-list {
    margin: 0px -5px 0px -5px;
}

.slick-slide {
    margin: 0 5px;
}

/* 
=============
Custom Modal
=============
*/
.customModal_wrap {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00000093;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: 0.6 all;
    z-index: 999;
}

.customModal_wrap.open {
    display: block;
    opacity: 1;
}

.customModal_body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    /*max-width: 750px;*/
    max-width: 1000px;
    height: auto;
    /*height: 100vh;*/
    background-color: var(--bs-body);
    color: var(--bs-heading);
    border-radius: 6px;
    padding: 20px;
    z-index: 2;
}

#hostplaypay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 100%;
    height: auto;
    background-color: var(--bs-body);
    color: var(--bs-heading);
    border-radius: 6px;
    padding: 20px;
    z-index: 2;
    overflow-y: auto;
}

.customModal_close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    font-size: 120%;
    color: var(--bs-heading);
}

.customModal_close:hover {
    color: var(--bs-link-color);
}

.customModal_head {
    font-size: 120%;
    color: var(--bs-link-color);
    margin-bottom: 25px;
}

.customModal_content {
    width: 100%;
    /*max-height: 500px;*/
    max-height: 700px;
    overflow-y: auto;
    overflow-x: hidden;
}


/* 
=============
Forms
=============
*/
.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 80%;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--bs-heading);
    margin-bottom: 4px;
}

label span {
    color: var(--bs-red-color);
}

input {
    width: 100%;
    height: 40px;
}

.form-control {
    width: 100%;
    height: auto;
    box-shadow: none;
    outline: 0;
    padding: 6px 10px;
    background-color: var(--white) !important;
    font-size: 90%;
    color: var(--gray);
    border: 1px solid var(--bs-text-color);
}

.form-control::placeholder {
    font-size: 90%;
    color: var(--bs-text-color);
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid var(--bs-primary);
}


/* 
=============
All Heading
=============
*/
.sub_heading {
    font-size: 100%;
    text-align: left;
    font-weight: 700;
    /* text-transform: uppercase; */
    color: var(--bs-primary);
    font-family: var(--fonts);
    letter-spacing: 0.5px;
    padding: 0;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.Homebanner.sub_heading {
    color: #42a7f5;
}

.sub_heading::after {
    content: " ";
    position: absolute;
    left: 105%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #42a7f5;
    width: 80px;
    height: 2px;
    border-radius: 4px;
}

.heading {
    font-size: 170%;
    font-weight: 700;
    text-align: left;
    line-height: normal;
    color: var(--bs-heading);
    padding: 0;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
    font-family: var(--fonts-title);
    /* letter-spacing: 0.1em; */
}

.Homebanner.heading {
    color: var(--bs-text-white);
    font-size: 300%;
    max-width: 100%;
}

.Homebanner.heading span {
    color: var(--bs-primary);
}

.desc {
    font-size: 100%;
    font-weight: 400;
    text-align: left;
    color: var(--bs-desc-color);
    padding: 0;
    margin-bottom: 15px;
}

.bannerdesc.desc {
    color: var(--bs-text-white);
    margin-bottom: 30px;
    font-size: 120%;
}

.sectionheading_wrap {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list_wrap {
    padding-left: 35px;
}

.list_wrap li {
    list-style: none;
    position: relative;
    margin-bottom: 15px;
}

.list_wrap li::before {
    content: "\f0a4";
    font-family: FontAwesome;
    position: absolute;
    top: 4px;
    left: -24px;
    color: var(--bs-text-color);
}

.list_wrap.white li {
    color: var(--bs-text-white);
}

.list_wrap.center li {
    text-align: center;
}

.list_wrap.center li::before {
   display: none;
}

/***/
.innerpage_head {
    font-size: 150%;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--fonts-title);
    color: var(--bs-primary);
    margin-bottom: 15px;
}

.innerpage_text {
    font-size: 90%;
    color: var(--bs-text-color);
}

.innerpage_text span {
    color: var(--bs-dark);
}

.innerpagesub_heading {
    font-size: 120%;
    font-weight: 700;
    text-align: center;
    color: var(--bs-primary);
    text-transform: capitalize;
    margin-bottom: 15px;
}

/* 
=============
Button
=============
*/
.btn {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
    border: none;
    margin: 0;
    cursor: pointer;
    white-space: nowrap;
}

.btn:focus {
    box-shadow: none;
    text-decoration: none;
    outline: 0;
}

.learnmore_btn {
    background-color: var(--bs-primary);
    color: var(--bs-text-white);
    position: relative;
    z-index: 1;
    border-radius: 0px;
    padding: 5px 15px;
    text-align: left;
    overflow: hidden;
    font-size: 90%;
    transition: .6s;
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
    position: relative;
    border: 1px solid var(--bs-primary);
    white-space: nowrap;
    border-radius: 30px;
}

.learnmore_btn:hover {
    color: var(--bs-text-white);
    background-color: transparent;
    border: 1px solid var(--bs-link-hover-color);
}


.knowmore_btn {
    padding: 5px 30px 5px 0px;
    text-align: center;
    color: var(--bs-primary);
    font-size: 100%;
    position: relative;
}

.knowmore_btn::before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 80%;
    height: 1px;
    border-radius: 6px;
    background-color: var(--bs-primary);
}

.knowmore_btn:hover {
    color: var(--bs-primary);
    text-decoration: none;
}

.seeAll_btn {
    font-size: 100%;
    font-weight: 600;
    padding-right: 35px;
    color: var(--bs-link-color);
    position: relative;
}

.seeAll_btn::after {
    content: "\f105";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.seeAll_btn:hover {
    text-decoration: underline;
}

.joingame_btn {
    background-color: var(--bs-green-color);
    color: var(--white);
    text-align: center;
    padding: 5px 15px;
    border-radius: 12px;
    border: 1px solid var(--bs-green-color);
    transition: 0.6s all;
}

.joingame_btn:hover {
    background-color: transparent;
    color: var(--bs-green-color);
}

.Cancelgame_btn {
    background-color: var(--bs-red-color);
    color: var(--bs-text-white);
    text-align: center;
    padding: 5px 15px;
    border-radius: 12px;
    border: 1px solid var(--bs-red-color);
    transition: 0.6s all;
}

.Cancelgame_btn:hover {
    background-color: transparent;
    color: var(--bs-red-color);
}

.view_btn {
    background-color: #ccc;
    border-radius: 4px;
    padding: 1px 5px;
    color: var(--bs-dark-color);
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.edit_btn {
    background-color: #ccc;
    border-radius: 4px;
    padding: 1px 5px;
    color: var(--bs-dark-color);
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.delete_btn {
    background-color: #fa8181;
    border-radius: 4px;
    padding: 1px 5px;
    color: var(--bs-red-color);
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.eye_btn {
    background-color: transparent;
    color: var(--bs-heading);
    padding: 2px 2px;
}

.invite_btn {
    background-color: transparent;
    color: var(--bs-heading);
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    padding: 2px 5px
}

.invite_btn span {
    white-space: nowrap;
}
@media (max-width:480px) {
    .invite_btn {flex-wrap: wrap;}
}

.invite_btnnn {
    background-color: transparent;
    color: var(--bs-heading);
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    padding: 2px 5px
}

.invite_btnnn span {
    white-space: nowrap;
}
@media (max-width:480px) {
    .invite_btnnn {flex-wrap: wrap;}
}

/* 
=============
Main header
=============
*/
.main_header {
    padding: 5px 0;
    background-color: var(--white);
    transition: .6s;
    position: relative;
    margin-top: 61px;
}

.main_header.innerpageHeader {
    margin-top: 0px !important;
}

.main_header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .6s all;
    background-color: var(--white);
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.main_header .wraper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Logo_area {
    width: 100%;
    max-width: 85px;
    height: auto;
    overflow: hidden;
}

.Logo_area img {
    width: 100%;
    height: 100%;
}

.main_header.sticky .Logo_area {
    max-width: 60px;
}

.getQuote_btn {
    font-size: 100%;
    color: #fff;
    background-color: #234159;
    border: 1px solid #234159;
    position: relative;
    transition: 0.6s;
}

.getQuote_btn:hover {
    color: #234159;
    background-color: transparent;
    transition: 0.6s;
}

/* 
================
inner page menu
================
*/
.innerpagemenu_wrap {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.innerpagemenu_wrap li {
    list-style: none;
}

.innerpagemenu_wrap li a {
    font-size: 110%;
    font-weight: 500;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.innerpagemenu_wrap li a:hover {
    color: var(--bs-link-color);
    text-decoration: underline;
}

.innerpagemenu_wrap li a.active {
    color: var(--bs-link-color);
    text-decoration: underline;
}

.innerpagemenu_wrap li a i {
    color: var(--bs-link-color);
}




/* 
================
Profile account 
================
*/
.navigation {
    position: absolute;
    top: -35px;
    right: 0;
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: height 0.5s, width 0.5s;
    transition-delay: 0s, 0.75s;
    z-index: 9;
}

.navigation .user-box {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.navigation .user-box .username {
    font-size: 1.2rem;
    white-space: nowrap;
    color: var(--gray);
}

.navigation .user-box .image-box {
    position: relative;
    min-width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--white);

}

.navigation .user-box .image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation .menu-toggle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.navigation .menu-toggle::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 2px;
    background: var(--gray);
    transform: translateY(-10px);
    box-shadow: 0 10px var(--gray);
    transition: 0.5s;
}

.navigation .menu-toggle::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 2px;
    background: var(--gray);
    transform: translateY(10px);
    transition: 0.5s;
}

.menu {
    position: absolute;
    width: 100%;
    height: calc(100% - 60px);
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menu li {
    list-style: none;
}

.menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 1rem;
    text-decoration: none;
    color: var(--gray);
}

.menu li a ion-icon {
    font-size: 1.5rem;
}

.menu li a:hover {
    color: var(--purple);
}

.navigation.active .menu-toggle::before {
    transform: translateY(0px) rotate(45deg);
    box-shadow: none;
}

.navigation.active .menu-toggle::after {
    transform: translateY(0px) rotate(-45deg);
}

.navigation.active {
    width: 300px;
    height: 245px;
    transition: width 0.5s, height 0.5s;
    transition-delay: 0s, 0.75s;
}

.navigation.active .user-box {
    width: calc(100% - 60px);
    transition-delay: 0s;
}



/* 
=============
Footer
=============
*/
.footer_sec {
    background-color: var(--bs-dark-color);
}

.footer_logo {
    width: 100%;
    max-width: 90px;
    min-width: 90px;
    height: auto;
    overflow: hidden;
    text-decoration: none;
    box-shadow: none;
    margin-bottom: 15px;
}

.footer_details {
    width: 100%;
    height: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 20px;
}

.footer_sec .desc {
    max-width: 480px;
    line-height: normal;
}

.footer_details li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.footer_details li .icon {
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-body);
}

.footer_details li .icon i {
    font-size: 80%;
    color: var(--bs-primary);
}

.footer_details li .text {
    font-size: 100%;
    color: var(--bs-text-white);
}

.footer_details li .text a {
    color: var(--bs-text-white);
    text-decoration: none;
}

.footer_details li .text a:hover {
    color: var(--bs-text-white);
}


.footerpara_head {
    font-size: 130%;
    font-weight: 500;
    color: var(--bs-body);
    text-align: left;
    padding-bottom: 6px;
    position: relative;
    margin-bottom: 30px;
}

.footerpara_head::after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    width: 100px;
    height: 2px;
    background-color: var(--bs-body);
}

.footermenu_list {
    width: 100%;
    height: auto;
    list-style: none;
    padding-left: 15px;
    margin: 0;
    columns: 2;
}

.footermenu_list li {
    list-style: none;
    margin-bottom: 15px;
    color: var(--bs-body);
}

.footermenu_list li:hover {
    list-style: disc;
    color: var(--bs-text-white);
}

.footermenu_list li a {
    font-size: 90%;
    cursor: pointer;
    color: var(--bs-body);
    text-decoration: none;
}

.footermenu_list li:hover a {
    color: var(--bs-text-white);
}


.email_from {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.email_from .from_group {
    width: 100%;
    height: auto;
    position: relative;
}

.email_from .from_group input {
    width: 100%;
    font-size: 100%;
    box-shadow: none;
    outline: 0;
    padding: 10px 50px 10px 15px;
    border-radius: 0;
    color: var(--white);
}

.email_from .from_group input::placeholder {
    font-size: 100%;
}

.email_from .from_group .send_btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    z-index: 1;
    width: 38px;
    height: 38px;
    background-color: var(--bs-primary);
    color: var(--bs-body);
    text-decoration: none;
    outline: 0;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email_from .from_group .send_btn i {
    font-size: 16px;
}


.footersocialicons_all {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.footersocialicons_all li {
    list-style: none;
}

.footersocialicons_all li .link_ {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-body);
    text-decoration: none;
    outline: 0;
}

.footersocialicons_all li .link_ i {
    font-size: 15px;
}

.footersocialicons_all li .link_:hover {
    border: 1px solid var(--bs-body);
}

/****Bottom Footer****/
.bottom_footer {
    width: 100%;
    height: auto;
    background-color: var(--bs-link-color);
    padding: 10px 0;
}

.bottom_footer .text {
    font-size: 85%;
    color: var(--bs-text-white);
    text-align: center;
    padding: 0;
    margin: 0;
}




/****Scroll to top******/
/***********************/
.return-to-top {
    position: fixed;
    right: 2%;
    bottom: 5%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* border-radius: 50%; */
    width: 36px;
    height: 36px;
    z-index: 9;
    padding: 10px;
    color: #fff;
    background-color: #0098db;
    transition: .6s;
    box-shadow: 0px 0px 2px 0px #fbfbfb;
}

.return-to-top.show {
    display: flex;
}

.return-to-top i.blink {
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.0;
    }
}



/* 
==================
Home Banner sec
=================
*/

.homebanner_sec {
    position: relative;
    /* background-position: top center; */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
}

/* .homebanner_sec::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000077;
    z-index: 1;
} */

.homebanner_sec .banner_image {
    position: relative;
}

.homebanner_sec .item_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 1;
}

.homebanner_sec .item_img::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000087;
    width: 100%;
    height: 100%;
    z-index: 2;
}


.homebanner_sec .item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.homebanner_sec .cust_container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.homebanner_sec .banner_content {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    padding: 7rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4%;
}

.homebanner_sec .image_wrap {
    width: 80%;
    height: auto;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    margin-left: auto;
}

/*******/
.form-2-wrapper {
    background: var(--bs-body);
    padding: 50px;
    border-radius: 8px;
}

input.form-control {
    padding: 6px 12px;
    border: none;
    border: 1px solid var(--bs-text-color);
    color: var(--bs-heading);
    border-radius: 4px;
    background-color: transparent;
}

input.form-control::placeholder {
    color: var(--bs-heading);
}

input.form-control:focus {
    box-shadow: none !important;
    outline: 0px !important;
    background-color: transparent;
    border: 1px solid var(--bs-primary);
}

.form-select:focus {
    box-shadow: none !important;
}

.login-btn {
    background: var(--bs-link-color);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 30px;
}

.register-test a {
    color: var(--bs-link-color);
    text-decoration: underline !important;
    font-weight: 600;
}


/*********/
.homeAbout_sec .image_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.homeAbout_sec .image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 
=================
category_sec
=================
*/
.category_sec {
    width: 100%;
    height: auto;
}

.categorycard_wrap {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.category_card {
    width: 18%;
    height: auto;
    border: 1px solid #9e9e9e;
    border-radius: 12px;
    padding: 20px;
    background-color: var(--bs-body);
    box-shadow: 0px 0px 10px 0px #9e9e9e;
    margin-bottom: 2%;
}

.category_card:hover {
    box-shadow: none;
}

.category_card .icon {
  width: 100%;
  max-width: 100px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.category_card .icon i {
    font-size: 250%;
}

.category_card .name {
   font-size: 125%;
   font-weight: 500;
   text-align: center;
   color: var(--bs-primary);
   padding: 0;
   margin-bottom: 15px;
   height: 45px;
}

.readmore_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    border: 1px solid var(--bs-desc-color);
    border-radius: 30px;
    padding: 4px 15px;
    margin: 0 auto;
    text-align: center;
    transition: 0.4s;
}

.readmore_btn:hover {
    border: 1px solid var(--bs-primary);
    background-color: var(--bs-primary);
    color: var(--bs-text-white);
}


/* 
=================
inner page banner
=================
*/

.innerbanner_sec .heading {
    font-size: 250%;
    font-style: italic;
}

.innerbanner_sec .image_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.innerbanner_sec .image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 
=================
book Venues sec
=================
*/
.bookVenues_card {
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #bbbaba;
}

.bookVenues_card .image_wrap {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 10px;
    position: relative;
}

.bookVenues_card .image_wrap img {
    width: 100%;
    height: 100%;
}

.bookVenues_card .image_wrap .ratting {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--bs-link-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 60%;
}

.bookVenues_card .head {
    font-size: 100%;
    text-align: left;
    font-weight: 600;
    color: var(--bs-dark-color);
    margin-bottom: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}


/* 
=================
Popular Sports sec
=================
*/

.popularSports_sec .active {
    display: block;
}

.popularSports_sec .hide {
    display: none;
}


/****/
.popularSports_wrap {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 2%;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.popularSports_wrap li {
    width: 15%;
    height: 100px;
    border-radius: 12px;
}

.popularSports_wrap .activelink .popularSports_card {
    box-shadow: 2px 4px 15px 2px var(--bs-box-shadow-color);
}

.popularSports_card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.popularSports_card::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000060;
    z-index: 2;
}

.popularSports_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: top; */
}

.popularSports_card .game_name {
    position: absolute;
    left: 10%;
    bottom: 10%;
    font-size: 100%;
    color: var(--white);
    z-index: 3;
}

.popularSports_card .coming_soon {
    position: absolute;
    right: 5%;
    top: -15%;
    font-size: 70%;
    color: var(--white);
    z-index: 4;
    transition: .6s all;
}

.popularSports_card:hover .coming_soon {
    top: 5%;
}



/* 
==================
Discover Games sec
==================
*/
.discoverGames_card {
    padding: 6px;
    border-radius: 12px;
    border: 1px solid #bbbaba;
    position: relative;
    z-index: 1;
}

.discoverGames_card.player_cards::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/Casa Visiting Card_page-0002.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.4;
}

.discoverGames_card .date_time {
    font-size: 85%;
    font-weight: 600;
    color: var(--bs-dark-color);
}

.discoverGames_card .upcoming.date_time {
   max-width: 180px;
    letter-spacing: 0.6px;
}

.discoverGames_card .location {
    font-size: 80%;
    color: var(--gray);
}

.discoverGames_card .play_status {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    white-space: nowrap;
}

.discoverGames_card .play_status img {
    width: 20px;
    height: auto;
}

.discoverGames_card .play_status span {
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 60%;
    background-color: #ccc;
    color: var(--bs-dark-color);
    font-weight: 500;
}

.discoverGames_card .amount {
    font-size: 60%;
    padding: 5px 10px;
    border-radius: 6px;
    color: var(--white);
    background-color: var(--bs-primary);
}

.discoverGames_card .amount i {
    margin-right: 4px;
}

.discoverGames_card .profile_pic {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.discoverGames_card .profile_pic2 {
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--white);
    margin-left: -10px;
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.discoverGames_card .profile_pic img,
.discoverGames_card .profile_pic2 img {
    width: 100%;
    height: 100%;
}

.discoverGames_card .Slots_book {
    font-size: 60%;
    color: var(--bs-dark-color);
    background-color: #ccc;
    padding: 5px 15px;
    border-radius: 12px;
}


/* subscription*/

.discoverGames_card_sub {
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #bbbaba;
}

.discoverGames_card_sub .date_time {
    font-size: 85%;
    font-weight: 600;
    color: var(--bs-dark-color);
}

.discoverGames_card_sub .location {
    font-size: 80%;
    color: var(--gray);
}

.discoverGames_card_sub .play_status {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.discoverGames_card_sub .play_status img {
    width: 25px;
    height: auto;
}

.discoverGames_card_sub .play_status span {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 60%;
    background-color: #ccc;
    color: var(--bs-dark-color);
    font-weight: 500;
}

.discoverGames_card_sub .amount {
    font-size: 60%;
    padding: 5px 10px;
    border-radius: 6px;
    color: var(--white);
    background-color: var(--bs-primary);
}

.discoverGames_card_sub .amount i {
    margin-right: 4px;
}

.discoverGames_card_sub .profile_pic {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.discoverGames_card_sub .profile_pic2 {
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--white);
    margin-left: -10px;
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.discoverGames_card_sub .profile_pic img,
.discoverGames_card_sub .profile_pic2 img {
    width: 100%;
    height: 100%;
}

.discoverGames_card_sub .Slots_book {
    font-size: 60%;
    color: var(--bs-dark-color);
    background-color: #ccc;
    padding: 5px 15px;
    border-radius: 12px;
}



/* 
==================
Casapostbanner sec
==================
*/
.Casapostbanner_sec .item_banner {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.Casapostbanner_sec .item_banner img {
    width: 100%;
    height: auto;
}


/* 
==================
User Games sec
==================
*/
.custom_card {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white);
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.card_heading {
    font-size: 100%;
    font-weight: 600;
    color: var(--bs-link-color);
}

.calendar-box {
    width: 300px;
    height: auto;
    position: relative;
    background-color: transparent;
    margin-bottom: 30px;
}

.calendar-box::before {
    content: "\f078";
    font-family: "FontAwesome";
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 100%;
    color: var(--bs-text-color);
    z-index: 1;
}

.calendar-box .calendar-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.calendar-box .calendar {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    position: absolute;
    top: 100% !important;
    left: 0 !important;
    z-index: 1;
    display: none;
}

.calendar-box .header {
    background-color: #3498db;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.calendar-box #prevBtn,
.calendar-box #nextBtn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.calendar-box #monthYear {
    font-size: 18px;
    font-weight: bold;
}

.calendar-box .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
}

.calendar-box .day {
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

.calendar-box .day.current {
    background-color: #3498db;
    color: white;
}

.day.selected {
    background-color: #2ecc71;
    color: white;
}

.calendar-box #dateInput {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    background: transparent;
}

.discoverGames_wraper {
    width: 100%;
    height: auto;
    display: flex;
    /*align-items: center;*/
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2%;
}

.discoverGames_wraper .discoverGames_card {
    width: 32%;
    height: auto;
    margin-bottom: 20px;
}

.discoverGames_wraper .discoverGames_card_sub {
    width: 32%;
    height: auto;
    margin-bottom: 20px;
}



/* 
==================
match page 
==================
*/
.hostProfile_big {
    width: 100%;
    max-width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.hostProfile_big img {
    width: 100%;
    height: 100%;
}

.hostProfile_small {
    width: 100%;
    max-width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 5px 0px var(--bs-box-shadow-color);
}

.hostProfile_small img {
    width: 100%;
    height: 100%;
}

.sub_text {
    font-size: 100%;
    font-weight: 600;
    text-align: left;
    color: var(--bs-heading);
    margin-top: -10px;
}

.dateandtime_wrap {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.dateandtime_wrap i {
    color: var(--bs-heading);
}

.dateandtime_wrap .date {
    color: var(--bs-heading);
    font-weight: 600;
    margin-bottom: 8px;
}

.dateandtime_wrap .time {
    font-size: 75%;
    color: var(--bs-text-color);
    font-weight: 600;
}

.matchdetails_sec .heading {
    font-size: 130%;
}

.plyardetails {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.plyardetails p {
    margin-bottom: 0;
}

.plyardetails .name {
    font-size: 100%;
    color: var(--bs-heading);
    padding: 0;
    margin-bottom: 6px;
}

.plyardetails .desc {
    margin-bottom: 0;
}

#playerList .Profiletable_wrap {
    border-bottom: 1px dashed #ccc;
}

#playerList .Profiletable_wrap:last-child {
   border-bottom: none;
   margin: 0 0 0 0;
}

.Profiletable_wrap {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 15px 0;
}

.playerlist_wrap {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

.invite_btn input[type="checkbox"] {
    position: relative;
    width: 36px;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bs-text-color);
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: inset 0 0 5px rgb(0 0 0 / 50%);
}

.invite_btn input[type="checkbox"]::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.5s;
}

.invite_btn input[type="checkbox"]:checked::before {
    transform: translateX(100%);
    background: var(--white);
}

.invite_btn input[type="checkbox"]:checked {
    background: var(--bs-link-color);
}

.invite_btnnn input[type="checkbox"] {
    position: relative;
    width: 36px;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bs-text-color);
    outline: none;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: inset 0 0 5px rgb(0 0 0 / 50%);
}

.invite_btnnn input[type="checkbox"]::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.5s;
}

.invite_btnnn input[type="checkbox"]:checked::before {
    transform: translateX(100%);
    background: var(--white);
}

.invite_btnnn input[type="checkbox"]:checked {
    background: var(--bs-link-color);
}


#search-wrapper {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.276);
    align-items: stretch;
    border-radius: 50px;
    background-color: #fff;
    overflow: hidden;
    max-width: 450px;
    box-shadow: 2px 1px 5px 1px rgba(0, 0, 0, 0.273);

}

#search {
    border: none;
    width: 100%;
    max-width: 350px;
    font-size: 15px;
}

#search:focus {
    outline: none;
}

.search-icon {
    margin: 10px;
    color: rgba(0, 0, 0, 0.564);
}

#search-button {
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #1dbf73;
    padding: 0px 10px;
}

/* 
==================
Host index page 
==================
*/
.hostbanner_sec .itemwrap {
    position: relative;
    width: 100%;
    height: auto;
}

.hostbanner_sec .bgimage_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hostbanner_sec .bgimage_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* .hostbanner_sec .bgimage_wrap::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000005d;
    z-index: 1;
} */

.hostbanner_sec .cust_container {
    position: relative;
    z-index: 2;
}

.hostbanner_sec .content {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 80px 0;
    padding: 30px;
    border-radius: 12px;
    background-color: #0000005d;
}

.hostbanner_sec .heading {
    color: var(--white);
}

.hostbanner_sec .desc {
    color: var(--white);
}

/****tab****/
.nav.nav-tabs {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.nav-tabs .nav-link {
    margin-bottom: 0px;
    background: 0 0;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: var(--bs-text-color);
    font-weight: 500;
    white-space: nowrap;
}

.nav-tabs .nav-link:hover {
    color: var(--bs-link-color);
    font-weight: 500;
    background-color: transparent;
    border: none !important;
    border-bottom: 3px solid var(--bs-text-color) !important;
}

.nav-tabs .nav-link.active {
    color: var(--bs-link-color);
    font-weight: 600;
    background-color: transparent;
    border: none !important;
    border-bottom: 3px solid var(--bs-link-color) !important;
}


/* 
==================
Profile page
==================
*/
.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-body {
    padding: 0 20px 20px 20px;
}

.profile .profile-card img {
    max-width: 120px;
    min-width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: top;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.profile .profile-overview .card-title {
    color: #012970;
}

.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: var(--fonts-title);
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-edit img {
    max-width: 120px;
    height: auto;
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}



/* 
==================
advertisement sec
==================
*/
.advertisement_sec {
    background-color: var(--bs-dark-color);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
}

.marquee_img {
    display: inline-block;
    width: 100%;
    max-width: 100px;
    height: auto;
    margin-right: 15px;
}

.advertiselink_btn {
    display: inline-block;
    background-color: transparent;
    color: var(--bs-text-white);
    border: 1px solid var(--bs-body);
    border-radius: 6px;
    margin-right: 50px;
    padding: 2px 10px;
    font-size: 90%;
}

.advertiselink_btn:hover {
    background-color: transparent;
    color: var(--bs-text-white);
}

/*************/
.marquee {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    overflow: hidden;
}

.marquee .marquee_text {
    font-size: 120%;
    line-height: normal;
    color: var(--bs-text-white);
    display: inline-block;
    white-space: nowrap;
    /* text-transform: uppercase; */
    margin: 0;
    padding: 0;
    padding-left: 20px;
    margin-right: 30px;
    position: relative;
    animation: marquee-loop 25s linear infinite;
}

.marquee .marquee_text a {
    color: var(--bs-text-white);
}

.marquee .marquee_text a:hover {
    text-decoration: underline;
}

.marquee .marquee_text::before {
    content: "\f111";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--bs-text-white);
}

.marquee:hover .marquee_text {
    animation-play-state: paused;
}

.marquee-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    overflow: hidden;
}

.marqueeitem {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left 12s linear infinite;
}

.marquee-container:hover .marqueeitem {
    animation-play-state: paused;
    /* pause on hover */
}

.marqueeitem .marquee_text {
    font-size: 130%;
    line-height: normal;
    color: var(--bs-text-white);
    display: inline-block;
    white-space: nowrap;
    /* text-transform: uppercase; */
    margin: 0;
    padding: 0;
    padding-left: 20px;
    margin-right: 30px;
    position: relative;
}

.marqueeitem .marquee_text::before {
    content: "\f111";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--bs-text-white);
}

@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}


/********/
.comingsoon_image {
    width: 100%;
    height: auto;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.comingsoon_image img {
    width: 100%;
    max-width: 380px;
    height: auto;
}

/* 
==================
gallery page sec
==================
*/
.photos-grid-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 0;
    align-items: start;

    @media (max-width: 580px) {
        grid-template-columns: 1fr;
    }

    .img-box {
        border: 1px solid #ffffff;
        position: relative;
    }

    .img-box:hover .transparent-box {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .img-box:hover .caption {
        transform: translateY(-5px);
    }

    img {
        max-width: 100%;
        display: block;
        height: 100%;
        object-fit: cover;
    }

    .caption {
        color: white;
        transition: transform 0.3s ease, opacity 0.3s ease;
        font-size: 1.5rem;
    }

    .transparent-box {
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        transition: background-color 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-photo {
        grid-row: 1;
        grid-column: 1;
    }

    .sub {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-gap: 0em;

        &:nth-child(0) {
            grid-column: 1;
            grid-row: 1;
        }

        &:nth-child(1) {
            grid-column: 2;
            grid-row: 1;
        }

        &:nth-child(2) {
            grid-column: 1;
            grid-row: 2;
        }

        &:nth-child(3) {
            grid-column: 2;
            grid-row: 2;
        }
    }
}

.hide-element {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}



/* 
==================
Notification page
==================
*/
.notification-container {
    width: 100%;
    display: flex;
    flex-flow: column;

    .card {
        width: 100%;
        margin-bottom: 5px;
        display: block;
        transition: opacity 0.3s;
    }
}

.notification_sec .card-body {
    padding: 0.5rem;

    table {
        width: 100%;

        tr {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            td {
                a.btn {
                    font-size: 0.8rem;
                    padding: 3px;
                }
            }

            td:nth-child(2) {
                text-align: right;
                justify-content: space-around;
            }
        }
    }

}

.notification_sec .card-title:before {
    display: inline-block;
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: .9rem;
    text-align: center;
    border: 2px solid grey;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    padding-bottom: 1px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-invitation .card-body .card-title:before {
    color: #90CAF9;
    border-color: #90CAF9;
    content: "\f007";
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-warning {
    .card-body {
        .card-title:before {
            color: #FFE082;
            border-color: #FFE082;
            content: "\f071";
        }
    }
}

.notification-danger {
    .card-body {
        .card-title:before {
            color: #FFAB91;
            border-color: #FFAB91;
            content: "\f00d";
        }
    }
}

.notification-reminder {
    .card-body {
        .card-title:before {
            color: #CE93D8;
            border-color: #CE93D8;
            content: "\f017";
        }
    }
}

.notification_sec .card.display-none {
    display: none;
    transition: opacity 2s;
}

.notification_sec .card-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    flex-wrap: wrap;
}

/******contactUs_sec*******/
.contactUs_sec {
    background-color: #043a63;
}

.contactUs_sec .left_wrap {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 6px;
    padding: 4%;
    position: relative;
    overflow: hidden;
}

.contactUs_sec .left_wrap::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000ab;
    z-index: 1;
}

.contactUs_sec .contact_details {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contactUs_sec .right_wrap {
    padding: 4%;
}

/* .heading span {
    color: var(--bs-primary);
} */

.heading.white {
    color: var(--bs-text-white);
}

.desc.white {
    color: var(--bs-text-white);
}

.contact_details .box_wrap {
    width: 100%;
    height: auto;
    padding: 20px 20px;
    border-radius: 6px;
    overflow: hidden;
    list-style: none;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact_details .box_wrap li {
    margin-bottom: 15px;
}
.contact_details .box_wrap li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: var(--bs-text-white);
}

.contact_details .box_wrap li a i {
    padding: 0;
    margin: 0;
    color: var(--bs-primary);
}



/******All Responsive***********/
/*******************************/
/***max-width*****/
@media (max-width: 1024px) {
    .responsivemenubar_btn {
        box-shadow: none;
        border: none;
        font-size: 100%;
        padding: 0;
        width: 35px;
        height: 28px;
        position: relative;
        border-radius: 4px;
    }

    .responsivemenubar_btn.on {
        position: fixed;
        top: 2em;
        right: 15px;
        z-index: 1050;
    }

    .main_header.sticky .responsivemenubar_btn.on .menuBar_line {
        background: transparent;
    }

    /* 
    .main_header.sticky .responsivemenubar_btn .menuBar_line,
    .main_header.sticky .responsivemenubar_btn .menuBar_line:after,
    .main_header.sticky .responsivemenubar_btn .menuBar_line:before {
        background: var(--bs-text-white);
    } */

    .responsivemenubar_btn .menuBar_line {
        height: 2px;
        width: 25px;
        display: block;
        background: var(--bs-link-color);
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
    }

    .responsivemenubar_btn .menuBar_line:after {
        content: ' ';
        width: 25px;
        height: 2px;
        display: block;
        background: var(--bs-link-color);
        bottom: 8px;
    }

    .responsivemenubar_btn .menuBar_line:before {
        content: ' ';
        width: 25px;
        height: 2px;
        display: block;
        background: var(--bs-link-color);
        top: 8px;
    }

    .responsivemenubar_btn .menuBar_line:after,
    .responsivemenubar_btn .menuBar_line:before {
        position: absolute;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }

    .responsivemenubar_btn.on .menuBar_line {
        background: transparent;
    }

    .responsivemenubar_btn.on .menuBar_line:before {
        transform: rotate(-45deg) translate(6px, -6px);
        -webkit-transform: rotate(-45deg) translate(6px, -6px);
        background: var(--bs-text-white);
    }

    .responsivemenubar_btn.on .menuBar_line:after {
        transform: rotate(45deg) translate(5px, 5px);
        -webkit-transform: rotate(45deg) translate(5px, 5px);
        background: var(--bs-text-white);
    }

    .headeraddcart_btn {
        margin-right: 48px;
    }

    .menubar_box {
        background-color: var(--bs-body);
        width: 100%;
        height: 100vh;
        left: 0;
        top: -120%;
        position: fixed;
        transition: .6s;
        z-index: 1040;
        display: none;
    }

    .menubar_box.open {
        top: 0;
        display: block;
        background-color: var(--bs-body);
    }

    .menubar_box .top_area {
        width: 100%;
        box-shadow: 0px 0px 5px 0px #ccc;
        padding: 8px 10px;
        position: relative;
        background-color: var(--bs-dark-color);
    }

    .menubar_box .Logo_area {
        max-width: 70px;
        height: auto;
        padding: 0;
    }

    .navber_wrap {
        width: 100%;
        height: 80vh;
        padding: 15px 0;
        list-style: none;
        margin-bottom: 15px;
        overflow-y: scroll;
    }

    .navber_wrap li {
        width: 100%;
        border-bottom: 1px solid #ececec;
        position: relative;
    }

    .navber_wrap li span {
        position: absolute;
        top: 6px;
        right: 15px;
        /* transform: translateY(-50%); */
        width: 30px;
        height: 30px;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navber_wrap li span::after {
        content: "\f107";
        font-family: FontAwesome;
        font-size: 12px;
        font-weight: 600;
        color: var(--bs-desc-color);
        transition: .6s;
    }

    .navber_wrap li span.active {
        rotate: -180deg;
        transition: .6s;
    }

    .navber_wrap li a {
        font-size: 100%;
        font-weight: 500;
        color: var(--bs-desc-color);
        padding: 8px 50px 8px 15px;
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
    }

    .navber_wrap li a:focus {
        color: var(--bs-desc-color);
    }

    .sub-menu {
        list-style: none;
        padding: 1px 0;
        margin: 0;
        display: none;
    }

    .sub-menu li {
        list-style: none;
        border-bottom: none;
        position: relative;
        padding-left: 20px;
    }

    .sub-menu li::before {
        content: "\f178";
        font-family: FontAwesome;
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        font-size: 80%;
        font-weight: 300;
        color: var(--bs-body);
    }

    .sub-menu li a {
        font-size: 80% !important;
        color: var(--bs-body);
        text-decoration: none;
    }

    .menubar_box .socialIcon_all {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 15px;
        padding: 20px 15px;
        background-color: var(--bs-link-hover-color);
        list-style: none;
        margin-bottom: 0;
    }

    .menubar_box .socialIcon_all li a {
        color: var(--bs-text-color);
    }

}

@media (min-width: 1024px) {

    .menubar_box .socialIcon_all {
        display: none;
    }

    .menubar_box .top_area {
        display: none;
    }

    .responsivemenubar_btn {
        display: none;
    }

    .navber_wrap {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.5em;
    }

    .navber_wrap li {
        list-style: none;
        position: relative;
    }

    .navber_wrap li a {
        font-size: 90%;
        font-weight: 500;
        text-transform: uppercase;
        transition: 0.5s;
        color: var(--bs-heading);
        text-decoration: none;
        padding: 5px 10px;
    }

    .navber_wrap li.current-menu-item a {
        color: var(--bs-primary);
        text-decoration: underline;
    }

    .main_header.sticky .navber_wrap li.current-menu-item a {
        color: var(--bs-text-color);
        text-decoration: underline;
    }

    .navber_wrap li:hover a {
        color: var(--bs-link-hover-color);
        text-decoration: underline;
    }

    .main_header.sticky .navber_wrap li:hover a {
        color: var(--bs-text-color);
    }

    .navber_wrap li:hover ul li a {
        color: var(--bs-dark);
        text-decoration: none;
    }

    .navber_wrap li:hover .icon::after {
        color: var(--bs-link-hover-color);
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        outline: 0;
        box-shadow: 0px 0px 5px 0px #ccc;
        border-radius: 6px;
        overflow: hidden;
        background-color: #fff;
        width: 13rem;
        height: auto;
        z-index: 4;
        display: none;
        transition: .6s;
        text-decoration: none;
        list-style: none;
        padding: 5px 0;
        margin: 0;
    }

    .sub-menu li {
        border-bottom: 1px solid #dad8d8;
    }

    .sub-menu li:last-child {
        border: none;
    }

    .sub-menu li a {
        width: 100%;
        display: block;
        padding: 5px 10px;
        color: var(--bs-dark);
        font-size: 70% !important;
        text-transform: capitalize;
    }

    .main_header.sticky .sub-menu li a {
        color: var(--bs-dark) !important;
    }

    .sub-menu li:hover a {
        background-color: var(--bs-primary) !important;
        color: var(--bs-text-color) !important;
        text-decoration: none !important;
    }

    .navber_wrap li .icon::after {
        content: "\f107";
        font-family: FontAwesome;
        position: absolute;
        top: 55%;
        right: -7px;
        transform: translateY(-50%);
        font-size: 60%;
        font-weight: 600;
        color: var(--bs-text-color);
    }

    .navber_wrap li:hover .sub-menu {
        display: inline-block;
    }

}

@media screen and (min-device-width: 1199px) and (max-device-width: 1400px) {
    .navber_wrap {
        gap: 1em;
    }

    .navber_wrap li a {
        font-size: 85%;
    }
}

@media (min-width: 1400px) {
    .navber_wrap {
        gap: 2em;
    }
}

@media (min-width: 1600px) {
    .navber_wrap {
        gap: 2.5em;
    }
}

/***max-width*****/
@media (max-width: 1400px) {
    .Homebanner.heading {
        font-size: 250%;
    }

    .learnmore_btn {
        font-size: 80%;
    }

    html {
        font-size: 16px;
    }

    .cust_container {
        width: 95%;
    }

    .footer_details li .text {
        font-size: 80%;
    }

    .customModal_content {
        max-height: 400px;
    }
    
    .discoverGames_card .upcoming.date_time {
      max-width: 162px;
   }

}

@media (max-width: 1199px) {
    .homebanner_sec .leftpart_ {
        width: 50%;
    }

    .homebanner_sec .rightpart_ {
        width: 50%;
    }
    
    .category_card .name {
        font-size: 110%;
    }

}

@media (max-width: 1024px) {
    .homebanner_sec .banner_content {
        flex-wrap: wrap;
        padding: 6em 0 4em;
        flex-direction: column-reverse;
    }

    .homebanner_sec .leftpart_ {
        width: 100%;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .homebanner_sec .image_wrap {
        width: 65%;
        margin: 0 auto;
    }

    .homebanner_sec .rightpart_ {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .category_card {
      width: 32%;
    }

}

@media (max-width: 991px) {
    .bothSide_gap {
        padding: 30px 0;
    }

    .topSide_gap {
        padding: 30px 0 0;
    }

    .bottomSide_gap {
        padding: 0 0 30px;
    }

    .discoverGames_wraper .discoverGames_card {
        width: 49%;
    }
    
    .discoverGames_wraper .discoverGames_card_sub {
        width: 49%;
    }

    .columnReverse {
        flex-direction: column-reverse;
    }
    
    .aboutimg_wrap {
    width: 100%;
    max-width: 100%;
    }

}

@media (max-width: 768px) {
    .cust_container {
        width: 100%;
    }

    html {
        font-size: 14px;
    }

    .bottom_footer .wrap {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .bottom_footer .wrap .left_ {
        max-width: 100%;
    }

    .bottom_footer .wrap .right_ {
        max-width: 100%;
    }

    .bottom_footer .right_ .list {
        justify-content: center;
    }

    .bottom_footer .wrap .left_ .text {
        text-align: center;
    }

    .footer_sec .desc {
        max-width: 100%;
    }

    .email_from .from_group {
        max-width: 100%;
    }

    .sectionheading_wrap {
        flex-wrap: wrap;
    }

    .sectionheading_wrap .learnmore_btn {
        margin-left: auto;
    }

    .bothSide_gap {
        padding: 20px 0;
    }

    .topSide_gap {
        padding: 20px 0 0;
    }

    .bottomSide_gap {
        padding: 0 0 20px;
    }

    .contactus_sec form {
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .contactus_sec .learnmore_btn {
        margin: 0px 12px;
    }

    .innerpagemenu_wrap {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        padding: 10px 15px;
        background-color: var(--bs-body);
        justify-content: space-between;
        z-index: 99;
    }

    .innerpagemenu_wrap li a {
        display: grid;
    }

    .innerpagemenu_wrap li a span {
        display: block;
    }

    .bottom_footer {
        margin-bottom: 75px;
    }

    .return-to-top {
        bottom: 15%;
    }

    .navigation {
        position: absolute;
        top: -30px;
    }

    .slide-arrow.prev-arrow {
        left: 45%;
    }

    .slide-arrow.next-arrow {
        left: 55%;
    }

    .popularSports_wrap {
        overflow-x: auto;
    }

    .popularSports_wrap li {
        width: 24%;
        min-width: 24%;
        height: 80px;
    }
    
     .discoverGames_wraper .discoverGames_card {
        width: 100%;
    }
    
    .discoverGames_wraper .discoverGames_card_sub {
        width: 100%;
    }
    
    .nav.nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .nav-tabs .nav-link {
        border: 1px solid transparent !important;
        margin-bottom: 4px;
    }
    
    .nav-tabs .nav-link:hover {
        border: 1px solid var(--bs-text-color) !important;
    }
    
    .nav-tabs .nav-link.active {
        border: 1px solid var(--bs-link-color) !important;
    }
}

@media (max-width: 576px) {
    .homebanner_sec .banner_content {
        height: auto;
        padding: 2em 0;
    }

    .homebanner_sec .form-2-wrapper {
        width: 100%;
        padding: 10px;
    }
    
    .category_card {
      width: 48%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 12px;
    }

    .Logo_area {
        max-width: 85px;
    }

    .homebanner_sec .image_wrap {
        width: 100%;
    }

    .heding.banner_heading {
        font-size: 160%;
    }

    .sub_heading {
        font-size: 90%;
    }

    .heading {
        font-size: 138%;
    }

    .innerpagemenu_wrap li a {
        font-size: 100%;
        gap: 1px;
    }

    .marquee_img {
        max-width: 70px;
        height: auto;
        margin-right: 10px;
    }

    .marquee_text {
        font-size: 100%;
    }

    .popularSports_wrap li {
        width: 32%;
        min-width: 32%;
        height: 60px;
    }

    .customModal_content {
        max-height: 400px;
    }

    .navber_wrap li a {
        font-size: 110%;
    }
    
    .custom_card {
        padding: 10px;
    }
    
    .accessories_wrap .badge {
        padding: 2px !important;
        width: 20px !important;
        height: 20px !important;
        line-height: normal;
        font-size: 74%;
    }
    
     .category_card {
        padding: 10px;
    }

    .readmore_btn {
        padding: 2px 10px;
    }

    .category_card .icon {
        margin: 0 auto 6px;
    }

    .category_card .name {
        margin-bottom: 0px;
    }
}

@media (max-width: 420px) {
    .sectionheading_wrap {
        flex-wrap: wrap;
    }

    .heading {
        font-size: 130%;
    }

    .slide-arrow.prev-arrow {
        left: 44%;
    }

    .slide-arrow.next-arrow {
        left: 56%;
    }

    .calendar-box {
        width: 265px;
    }

    .calendar-box .calendar {
        width: 265px;
    }
}


/****product page css******/
.product-grid {
    font-family: "Blinker", sans-serif;
    text-align: center;
    padding: 10px 10px;
    margin: 0 auto;
    border: 2px solid #dedade;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
}

.product-grid:hover {
    border: 2px solid #003844;
}

.product-grid .product-image {
    position: relative;
}

.product-grid .product-image a.image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 4;
}

.product-grid .product-image img {
    width: 100%;
    height: 100%;
}

.product-image .pic-1 {
    transition: all .5s ease;
}

.product-grid:hover .product-image .pic-1 {
    opacity: 0;
}

.product-image .pic-2 {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s ease;
}

.product-grid:hover .product-image .pic-2 {
    opacity: 1;
}

.product-grid .product-links {
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 1;
    border: 1px solid #aaa;
    position: absolute;
    top: 0;
    right: 0;
    transition: all .3s ease 0.3s;
}

.product-grid:hover .product-links {
    opacity: 1;
}

.product-grid .product-links li {
    margin: 0;
    display: block;
}

.product-grid .product-links li a i {
    line-height: inherit;
}

.product-grid .product-links li a {
    color: #aaa;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 37px;
    height: 40px;
    width: 40px;
    margin: 0;
    border-bottom: 1px solid #aaa;
    display: block;
    position: relative;
    transition: all 0.3s ease 0.1s;
}

.product-grid .product-links li a:before,
.product-grid .product-links li a:after {
    content: attr(data-tip);
    color: #fff;
    background: #000;
    font-size: 12px;
    line-height: 20px;
    padding: 5px 10px;
    border-radius: 5px 5px;
    white-space: nowrap;
    display: none;
    transform: translateY(-50%);
    position: absolute;
    right: 53px;
    top: 50%;
}

.product-grid .product-links li a:after {
    content: "";
    height: 15px;
    width: 15px;
    padding: 0;
    border-radius: 0;
    transform: translateY(-50%) rotate(45deg);
    right: 50px;
}

.product-grid .product-links li a:hover:before,
.product-grid .product-links li a:hover:after {
    display: block;
}

.product-grid .product-links li a:hover {
    color: #fff;
    background-color: #003844;
}

.product-grid .product-content {
    padding: 10px 0 0;
}

.product-grid .rating {
    color: #ffd200;
    font-size: 14px;
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
    display: inline-block;
}

.product-grid .rating li:last-child {
    color: #111;
    display: inline-block;
}

.product-grid .title {
    font-size: 90%;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 5px;
}

.product-grid .title a {
    color: var(--bs-heading);
    transition: all 0.3s ease 0s;
   display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-grid .title a:hover {
    color: #003844;
}

.product-grid .price {
    color: var(--bs-green-color);
    font-size: 110%;
    font-weight: 600;
    margin: 0 0 10px;
}

.product-grid .add-cart {
    color: #003844;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 11px 12px 10px;
    border: 1px solid #003844;
    display: block;
    position: relative;
    transition: all .3s ease;
    z-index: 1;
}

.product-grid .add-cart i {
    margin: 0 5px 0 0;
}

.product-grid .add-cart:hover {
    color: #fff;
}

.product-grid .add-cart:before {
    content: "";
    background: #003844;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.product-grid .add-cart:hover:before {
    width: 100%;
}

.headeraddtocart_btn {
    position: relative;
    right: 130px;
    font-size: 20px;
}

.headeraddtocart_btn .count {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0px;
    right: -2px;
    z-index: 2;
    background-color: var(--bs-red-color);
    color: var(--bs-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.addtocart_sec .product_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.addtocart_sec .product_list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid var(--bs-text-color);
}

.addtocart_sec .product_list li:first-child {
    padding-top: 0;
}

.addtocart_sec .product_list li:last-child {
    border: none;
    padding-bottom: 0;
}

.addtocart_sec .image_wrap {
    max-width: 100px;
    min-width: 100px;
    height: auto;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--bs-text-color);
    border: 1px solid #ccc;
}

.addtocart_sec .image_wrap img {
    width: 100%;
    height: 100%;
}

.addtocart_sec .content {
    width: 100%;
    height: auto;
}

.addtocart_sec .name {
    color: var(--bs-dark-color);
    font-weight: 500;
}

.addtocart_sec span {
    cursor: pointer;
}

.addtocart_sec .number {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.addtocart_sec .minus,
.addtocart_sec .plus {
    width: 20px;
    height: 20px;
    background: #f2f2f2;
    border-radius: 4px;
    padding: 8px 5px 8px 5px;
    border: 1px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addtocart_sec input {
    height: 25px;
    width: 45px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
}

.remove_btn {
    border: 1px solid var(--bs-red-color);
    background-color: transparent;
    color: var(--bs-red-color);
    transition: 0.6s;
}

.remove_btn:hover {
    background-color: var(--bs-red-color);
    color: var(--bs-text-white);
}

.placeorder_btn {
    background-color: var(--bs-primary);
    color: var(--bs-text-white);
    border: 1px solid var(--bs-primary);
    transition: 0.6s;
}

.placeorder_btn:hover {
    color: var(--bs-primary);
    background-color: transparent;
}

.Successimage_wrap {
    width: 100%;
    max-width: 100px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}

.Successimage_wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 990px) {
    .product-grid {
        margin-bottom: 30px;
    }
}
/***/
.productdetails_sec .card-wrapper{
    max-width: 100%;
    margin: 0 auto;
}
.productdetails_sec img{
    width: 100%;
    
    display: block;
}
.productdetails_sec .img-display{
    overflow: hidden;
    margin-bottom: 5px;
    border: 1px solid #ccc;
}
.productdetails_sec .img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
    box-shadow: 0px 0px 5px 0px var(--bs-text-color);
}
.productdetails_sec .img-showcase img{
    min-width: 100%;
}
.productdetails_sec .img-select{
    display: flex;
}
.productdetails_sec .img-item{
    margin: 0.3rem;
    border: 1px solid #ccc;
}
.productdetails_sec .img-item:nth-child(1),
.productdetails_sec .img-item:nth-child(2),
.productdetails_sec .img-item:nth-child(3){
    margin-right: 0;
}
.productdetails_sec .img-item:hover{
    opacity: 0.8;
}

.productdetails_sec .img-item img {
    width: 80px !important;
    height: auto !important;
    object-fit: contain;
}
.productdetails_sec .product-content{
    padding: 2rem 0;
}
.productdetails_sec .product-title{
    font-size: 1.5rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}
.productdetails_sec .product-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #12263a;
}
.productdetails_sec .product-link{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #256eff;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}
.productdetails_sec .product-link:hover{
    opacity: 0.9;
}
.productdetails_sec .product-rating{
    color: #ffc107;
}
.productdetails_sec .product-rating span{
    font-weight: 600;
    color: #252525;
}
.productdetails_sec .product-price{
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
}
.productdetails_sec .product-price span{
    font-weight: 400;
}
.productdetails_sec .last-price span{
    color: #f64749;
    text-decoration: line-through;
}
.productdetails_sec .new-price span{
    color: var(--bs-green-color);
    font-weight: 600;
}
.productdetails_sec .product-detail h2{
    text-transform: capitalize;
    color: #12263a;
    margin-bottom: 10px;
}
.productdetails_sec .product-detail p{
    font-size: 0.9rem;
    padding: 0.3rem;
    opacity: 0.8;
}
.productdetails_sec .product-detail ul{
    margin: 1rem 0;
    font-size: 0.9rem;
}
.productdetails_sec .product-detail ul li{
    margin: 0;
    list-style: none;
    background: url(https://fadzrinmadu.github.io/hosted-assets/product-detail-page-design-with-image-slider-html-css-and-javascript/checked.png) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}
.productdetails_sec .product-detail ul li span{
    font-weight: 400;
}
.productdetails_sec .purchase-info{
    margin: 1.5rem 0;
}
.productdetails_sec .purchase-info input,
.productdetails_sec .purchase-info .btn{
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
    padding: 0.45rem 0.8rem;
    outline: 0;
    margin-right: 0.2rem;
    /*margin-bottom: 1rem;*/
}
.productdetails_sec .purchase-info input{
    width: 70px;
    height: 35px;
}
.productdetails_sec .purchase-info .btn{
    cursor: pointer;
    color: #fff;
}
.productdetails_sec .purchase-info .btn:first-of-type{
    background: #256eff;
}
.productdetails_sec .purchase-info .btn:last-of-type{
    background: #f64749;
}
.productdetails_sec .purchase-info .btn:hover{
    opacity: 0.9;
}
.productdetails_sec .social-links{
    display: flex;
    align-items: center;
}
.productdetails_sec .social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}
.productdetails_sec .social-links a:hover{
    background: #000;
    border-color: transparent;
    color: #fff;
}

@media screen and (min-width: 992px){
    .productdetails_sec .card{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
    }
    .productdetails_sec .card-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .productdetails_sec .product-imgs{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .productdetails_sec .product-content{
        padding-top: 0;
    }
}

.col-auto {
    margin-bottom: 10px;
}


/************/
.Storebanner_sec {
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.Storebanner_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000093;
}

.Storebanner_sec .wraper {
    position: relative;
    width: 100%;
    height: auto;
    padding: 80px 0;
    margin: 0 auto;
    z-index: 2;
}
.Storebanner_sec .sub_heading {
   text-align: center;
   color: var(--white);
}

.Storebanner_sec .sub_heading::after {
    display: none;
}

.Storebanner_sec .heading {
    text-align: center;
}

.Storebanner_sec .desc {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .Storebanner_sec .wraper {
        padding: 50px 0;
    }
}
.blink {
    animation: blink-animation 2s steps(2, start) infinite;
    color: #dc3545!important; /* optional: draw attention */
    font-weight: bold;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}


/*****card-design***/
.accessories_wrap {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}


.accessories_wrap .badge {
    padding: 5px !important;
    cursor: pointer;
    border-radius: 50%;
    width: 24px !important;
    height: 24px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.access_datebox {
    /*border: 2px solid #ccc;*/
    border-radius: 8px;
    padding: 0px 0px 0px 6px;
    width: 32%;
    text-align: center;
}

.access_datebox div {
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 2px 2px 2px 6px;
}

.access_datebox span {
    font-size: 72%;
    line-height: normal;
}

.access_datebox span.badge {
    font-size: 65%;
    padding: 0px;
    line-height: normal;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gamesms_text {
    font-size: 65%;
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 2;*/
    /*-webkit-box-orient: vertical;*/
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*height: 40px;*/
    margin-bottom: 2px;
}

#playerList {
    width: 100%;
    max-height: 450px;
    overflow-y: auto;
}

@media (max-width: 480px) {
    .discoverGames_card {
        padding: 6px;
    }
    .access_datebox {
        width: 30%;
    }
    .access_datebox span.badge {
        width: 15px;
        height: 15px;
    }
    
    .discoverGames_card .upcoming.date_time {
        max-width: 125px;
    }
    
    .main_header {
        margin-top: 44px;
    }
}



/***======New Css add =======--------------------------------*/
/* 
==================
About Us sec
=================
*/
.miniheading {
    text-transform: uppercase;
    color: var(--bs-primary);
    font-size: 90%;
    font-weight: 600;
    margin-bottom: 10px;
}

.aboutimg_wrap {
    width: 100%;
    max-width: 85%;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    box-shadow: 0px 0px 5px 0px #ccc;
}

.aboutimg_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus_sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aboutus_sec ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.aboutus_sec ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 18px;
}




/* 
==================
testimonials sec
=================
*/
.testimonials_all {
    width: 100%;
    margin-bottom: 20px;
}


.testimonials_card {
    width: 100%;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid var(--bs-primary);
    border-radius: 20px;
    background-color: var(--bs-body);
    transition: 0.4s;
    margin-bottom:5px;
}

.testimonials_card:hover {
    background-color: var(--white);
    transition: 0.4s;
}

.rating_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.rating_wrap .ratings {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5px;
    position: relative;
}

.rating_wrap .ratings::before {
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background-color: var(--bs-primary);
}

.rating_wrap .ratings span {
    position: relative;
    color: var(--bs-box-shadow-color);
}

.rating_wrap .ratings span::after {
    content: "\f005";
    font-family: "FontAwesome";
    font-size: 100%;
}

.rating_wrap .ratings span.active {
    color: var(--bs-yellow);
}

.rating_wrap .google {
    font-size: 100%;
    color: var(--bs-primary);
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.testimonials_all .slick-dots {
    bottom: -32px;
}


/*******tab css*******/
/*********************/
.gallerypage_sec .tabs {
  display: flex;
  /*gap: 20px;*/
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
  border-bottom: 2px solid var(--bs-primary);
}

.gallerypage_sec .tab {
    cursor: pointer;
    padding: 5px 20px;
    background: #d4e7f5;
    color: var(--bs-primary);
    border-radius: 20px 20px 0px 0px;
    transition: 0.3s;
    font-size: 85%;
}

.gallerypage_sec .tab.active {
  background: var(--bs-primary);
  color: var(--bs-text-white);
}

.gallerypage_sec .tab-content {
  display: none;
}

.gallerypage_sec .tab-content.active {
  display: block;
}


/**************/
.popover-body {
    padding: 10px !important;
    color: #212529;
    font-size: 60%;
}



/*
==================
playground Section
==================
*/

.playground_sec {
    width: 100%;
    height: auto;
}

.playground_list {
    width: 100%;
    height: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--bs-primary);
    border-bottom: 1px solid var(--bs-primary);
    display: flex;
    flex-wrap: wrap;
}

.playground_box {
    width: 25%;
    height: auto;
    border-right: 1px solid var(--bs-primary);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.playground_box:last-child {
    border-right: none;
}

.playground_box .icon {
    font-size: 170%;
    color: var(--bs-primary);
    padding: 0;
    margin-bottom: 2px;
}

.playground_box .count {
    font-size: 280%;
    color: var(--bs-primary);
    font-weight: 600;
    padding: 0;
    margin-bottom: 10px;
    line-height: normal;
}

.playground_box .name {
    font-size: 110%;
    font-weight: 600;
    color: var(--bs-heading);
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .playground_box {
        width: 50%;
    }
    .playground_box:nth-child(1) {
        border-bottom: 1px solid var(--bs-primary);
    }
    .playground_box:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid var(--bs-primary);
    }
}


/******************/
.blink-hard {
  animation: blinker 1s step-end infinite;
}
.blink-soft {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}


/*
==================
integrated Section
==================
*/
.integrated_sec {
    width: 100%;
    height: auto;
}

.integrated_sec .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    width: 100%;
}

.integrated_sec .card {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    margin: 0;
}

.integrated_sec .card:hover {
    transform: translateY(-3px);
    border-color: var(--bs-primary);
}

.card.bigCard {
    grid-column: span 3;
    grid-row: span 1;
}

.integrated_sec .icon {
    font-size: 28px;
    color: var(--bs-primary);
    margin-bottom: 10px;
}

.integrated_sec .tag {
    display: inline-block;
    font-size: 13px;
    background: #f1f5f9;
    color: var(--bs-link-color);
    border: 1px solid #cbd5e1;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.integrated_sec .card h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--bs-heading);
    margin: 5px 0;
    isplay: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.integrated_sec .card p {
    color: var(--bs-text-color);
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 1600px) {
    .integrated_sec .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 1400px) {
    .integrated_sec .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 1199px) {
    .card,
    .card.bigCard {
        grid-column: 1 / -1;
    }
}





