/* poppins-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v21-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v21-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* poppins-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }



*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins' !important;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

:root{
    --theme-red: #fb0337;
    /* --theme-blue: #3171fc; */
    --theme-blue: #fb0337;
    --theme-white: #ffffff;
    --theme-black: #000000;
    /* --theme-text: #515151; */
    --theme-text: #333333;
    --theme-blue-shadow: rgba(49, 113, 252, 0.3);
    --theme-red-shadow: rgba(251, 3, 57, 0.3);
}


body {
    font-family: 'Poppins' !important;
    background-color: #f9f9f9;
}
.MainBG{
    margin: 0;
    padding: 0;
    background: fixed;
    background-image: url(../Images/MainBG.svg);
    background-position: center;
    height: 100%;
    background-size: cover;
    overflow-x: hidden;
}

.mainWrraper {
    max-width: 360px;
    margin: 0 auto !important;
    width: 100%;
    height: 100%;
    position: relative;
    overflow-x: hidden;
    background-color: var(--theme-white);
}
/*=============================================================================================================================
 									max-width: 1409px Start
==============================================================================================================================*/
@media only screen and (max-width: 430px){
    .mainWrraper {
        max-width: 100% !important;
        width: 100%;
    }
}

h1, h2, h3, h4, h5, h6{
    margin: 0px;
    padding: 0px;
}
a, a:hover {
    text-decoration: none;
}



/* ====================================  Navbar  ==================================== */
.cusNavbar{
    /* height: 40px; */
    padding: 10px;
}
.Logo{
    max-height: 24px;
}


/* ====================================  Demo Ads  ==================================== */
.ads{
    background-color: #d8d8d8;
    height: 200px;
    width: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}


/* ====================================  Action & Puzzel  ==================================== */
.QuizDes{
    color: var(--theme-text);
    
    border: 1px solid var(--theme-white);
    border: 1px solid #ccc;
    
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 16px;
    
    -webkit-box-shadow: 5px 5px 10px 0px rgba(204, 204, 204, 0.3);
    -moz-box-shadow: 5px 5px 10px 0px rgba(204, 204, 204, 0.3);
    box-shadow: 5px 5px 10px 0px rgba(204, 204, 204, 0.3);
}
.MainQuizText{
    font-weight: 600;
    text-align: center !important;
}
.CusBtn{
    font-weight: 600;
    background-color: var(--theme-blue);
    border: 2px solid var(--theme-blue);
    padding: 6px 10px;
    width: 100%;
    text-align: center;
    color: var(--theme-white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    
    -webkit-box-shadow: 5px 5px 10px 0px var(--theme-red-shadow);
    -moz-box-shadow: 5px 5px 10px 0px var(--theme-red-shadow);
    box-shadow: 5px 5px 10px 0px var(--theme-red-shadow);
    /* color: rgba(251, 3, 57, 0.5); */
    /* color: rgba(49, 113, 252, 0.5); */
}

.CusBtn:hover{
    cursor: pointer !important;
    background-color: transparent !important;
    color: var(--theme-blue);
}
.CusBtn:hover path{
    fill: var(--theme-blue) !important;
}


/* ====================================  Footer  ==================================== */
.socialMedia svg {
    cursor: pointer !important;
}
hr{
    width: 100% !important;
    background-color: #9c9c9c;
}
.socialMedia svg path{
    fill: #9c9c9c !important;
}
.footSocialIcon:hover svg path{
    fill: #444444 !important;
}
.cusLink{
    color: #9c9c9c;
    font-size: 13px;
    font-weight: 600;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}
.cusLink:hover{
    color: var(--theme-black);
}





/* ========================== Square game card ========================== */
.gameBox{
    border: 2px solid #ccc;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}
.gameBox:hover{
    z-index: 999;
    transform: scale(1.03);
    -webkit-box-shadow: 5px 5px 10px 0px rgba(204, 204, 204, 0.75);
    -moz-box-shadow: 5px 5px 10px 0px rgba(204, 204, 204, 0.75);
    box-shadow: 5px 5px 10px 0px rgba(204, 204, 204, 0.75);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}
.cusGameName{
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--theme-text);
}
.cusPlayGameNow{
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
    text-align: center;
    color: var(--theme-white);
    background-color: var(--theme-blue);
    border: 2px solid var(--theme-blue);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.cusPlayGameNow:hover{
    color: var(--theme-blue);
    border: 2px solid var(--theme-blue);
    background-color: var(--theme-white);
    -webkit-box-shadow: 5px 5px 10px 0px var(--theme-red-shadow);
    -moz-box-shadow: 5px 5px 10px 0px var(--theme-red-shadow);
    box-shadow: 5px 5px 10px 0px var(--theme-red-shadow);
}

/* ========================== Heading ========================== */
/* .headBox{
    border: 2px solid #ccc;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 10px;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(204, 204, 204, 0.5);
    -moz-box-shadow: 5px 5px 10px 0px rgba(204, 204, 204, 0.5);
    box-shadow: 5px 5px 10px 0px rgba(204, 204, 204, 0.5);
    color: rgba(251, 3, 57, 0.5);
} */
.Heading{
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--theme-blue);
}
.underLine{
    width: 100px;
    height: 3px;
    background-color: var(--theme-blue);
    margin-top: 3px;
}

.custTextclr{
    color: var(--theme-text);
}
.cusULBgclr{
    background-color: var(--theme-text);
}

.cusDec{
    font-size: 14px;
    text-align: justify;
}






/* ========================== Vertical Game Card ========================== */
.cusBox {
    position: relative;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 3.5px solid transparent;
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}
.dOverlay{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.gamePosition{
    position: absolute;
    bottom: 0 !important;
    left: 0;
    right: 0;
    padding: 12px;
    background-image: linear-gradient(rgba(39, 39, 62, 0), #1e1f22);
}
.fffsmallLOGO{
    color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.subText{
    color: #d1d1d1;
    font-size: 14px;
    margin-top: 10px;
}
.gameName{
    color: var(--theme-white);
    font-size: 16px;
    font-weight: 600;
}
.cusPlayNow {
    opacity: 0;
    display: none;
    text-wrap: nowrap;
    margin-top: 10px;
    height: 100% !important;
    width: 100%;
    color: #fff;
    background: linear-gradient(to right, var(--theme-red), var(--theme-blue));
    /*background: var(--theme-red);*/
    box-shadow: 0 0 40px 0 rgba(var(--primary-color-rgb), 1);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding: 6px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transition: all ease-in-out 0.3s !important;
    -webkit-transition: all ease-in-out 0.3s !important;
    -moz-transition: all ease-in-out 0.3s !important;
    -ms-transition: all ease-in-out 0.3s !important;
    -o-transition: all ease-in-out 0.3s !important;
}
.cusBox:hover{
    border: 3.5px solid var(--theme-red);
}
.cusBox:hover .cusPlayNow{
    display: block;
    opacity: 1;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    opacity: 0;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 1000;
    pointer-events: none;
}

.popup-content {
    position: relative;
    height: auto;
    border: 1px solid #888;
    color: #fff;
    border-radius: 5px;
    margin: 0 auto;
    width: 600px;
    padding: 10px;
    position: absolute;
    pointer-events: auto;
    z-index: 1001;
}

.popup {
    align-items: center;
}

.close-popup {
    outline: none;
    background-color: #ffffff;
    border: 1px solid #000;
    border-radius: 20%;
    color: #000;
    cursor: pointer;
    font-family: arial;
    font-size: 25px;
    font-weight: 700;
    height: 30px;
    line-height: 25px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    width: 30px;
    z-index: 1003;
}

@media screen and (max-width: 640px) {
    .popup-content {
        width: 350px;
    }
}

@media screen and (max-width: 470px) {
    .popup-content {
        width: 100%;
    }
}