/*
Theme Name: 918kissauto
Theme URI: https://918kissauto.com/
Author: 918kissauto
Author URI: https://918kissauto.com/
Description: Test
Version: 1.3
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
Text Domain: twentytwenty
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;800;900&display=swap');
@font-face {
    font-family: 'PSL-Omyim';
    src: url('fonts/PSL-Omyim.ttf');

}

@font-face {
    font-family: 'PSL-OmyimBold';
    src: url('fonts/PSL-OmyimBold.ttf');
}

body {
  background: rgb(0, 0, 0);
  font-family: 'Kanit', sans-serif;
  position: relative;
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%!important;
  -ms-flex-direction: column!important;
  flex-direction: column!important;
  display: -ms-flexbox!important;
  display: flex!important;
}


/*
    DEMO STYLE
*/


#sidebar p {
    font-size: .5em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

#sidebar a,
#sidebar a:hover,
#sidebar a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}
#sidebar.wpadmin{
    margin-top: 32px;
}
.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100vh;
    z-index: 999;
    background: linear-gradient(45deg, #267dc0, #0b151f);
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
    left: 0;
    right: 0;
    width: 100%;
}

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: linear-gradient(45deg, #6c6c6c, #3c3c3c);
    border-radius: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    border: none;
    color: white;
    z-index: 999999999;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}

#dismiss:hover {
    background: #fff;
    color: #565656;
}

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar .sidebar-header {
    padding: 33px 15px;
    text-align: center;
}
#sidebar .sidebar-header img{
    width: 134px;
    height:auto;
}
#sidebar ul.components {
    border-bottom: 1px solid #ffc705;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}
#sidebar ul{
  margin:0;
  padding:0;
}
#sidebar ul li{
  list-style:none;
}
#sidebar ul li a {
    padding: 10px 20px;
    font-size: 15px;
    display: block;
    margin-bottom:10px;
    text-align: center;
    margin: 10px 0;
}

#sidebar ul li a:hover {
        color: rgb(255 255 255);
    text-shadow: 0 0 5px white, 0 0 25px white, 0 0 35px white;
    background: rgb(247 105 200 / 30%);

}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

.download {
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    color: white;
    font-size: 20px !important;
    font-weight: bold;
}
.download:hover {
     background:  radial-gradient(ellipse farthest-corner at left top, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
                radial-gradient(ellipse farthest-corner at right bottom, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%)  !important;
    color: white !important;
    font-size: 17px !important;

}



a.article{
    background-color: #262626;
    color: white;
    font-weight: bold;
}
a.article:hover {
    background: #565656 !important;
    color: #fff !important;
        font-size: 17px !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}
a{
  color: white;
}




        .wrapper-menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  outline: none;
    position: absolute;left: 10px; top: 8px;
    z-index: 1000;
    transition: all .5s;
}
.wrapper-menu2 {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  outline: none;
}


.wrapper-menu.hamopen{
        position: fixed;left: 200px; top: 8px;
}
.line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 3;
   animation: lineone 2s ease 0s infinite normal none;
}
@keyframes lineone {
        0.0%{
    }
    50.1%{
        transform: scale3d(1.2,1,1) translate(-10px);
    }
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 3;
   animation: linetwo 2s ease 0s infinite normal none;
}
@keyframes linetwo {
        0.0%{

    }
    50.1%{
        transform: scale3d(.8,1,1) translate(10px);
    }
}



.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 3;
   animation: linetree 2s ease 0s infinite normal none;
}
@keyframes linetree {
        0.0%{
    }
    50.1%{
        transform: scale3d(1.2,1,1) translate(-10px);
    }
}
.open .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 3;
  animation: yourAnimation 3s ease 0s infinite normal none;
}
.open .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 3;
  animation: yourAnimation 3s ease 0s infinite normal none;
}
.open .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 3;
  animation: yourAnimation 3s ease 0s infinite normal none;
}

@keyframes yourAnimation {
    0.0%{
    }
    50.1%{
    }
}










/*Nav Bar-----------------------------------*/
  #sidebar .menu-menu-container li{
   list-style:none;
 }
 #sidebar .menu-menu-container ul{
  padding: 0;
  margin: 0;
}
.sidebarbtn{
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    width: 40px;
    transition: all .3s;
    padding-left: 15px;
    display: none;
    padding: 0;
    padding-left: 15px;
}
.navbarstk{
    position: absolute;
    z-index: 99;
    width: 100%;
    margin: 0 auto;
    height: 90px;
    left: 0;
    right: 0;
    top: 115px;
    padding: 3px 10px;
    padding-top: 5px;
    transition: all .3s;
    font-family: "PSL-Omyim" !important;
}
.navbarstk.fixedtop{
  position:fixed;
  top:20px;
}
.navcontainer{
    width: 100%;
    max-width: 1200px;
    height: 80px;
    margin: 0px auto;
    position: relative;
    display: flex;
    border-radius: 31px;
    background-origin: border-box;
    background-clip: content-box,border-box;
    background-image: url(https://pikachu168.com/wp-content/uploads/2025/07/PKC-%E0%B9%81%E0%B8%96%E0%B8%9A-landing-page-02.png);
    background-size: 100% 100%;
    padding: 2px 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    text-align: left;
}
.navbarstk.sticky{
    background: #13182af7;
    
    
    box-shadow: 0 0 15px #00000094;
}


.navbarstk img{
    width: 176px;
    height: auto;
    animation: animatelight 5s ease 0s infinite normal none;
}
@keyframes animatelight {
  0.0% {
        -webkit-filter: drop-shadow(0px 0px 2px rgba(255, 78 ,148, 1));
    filter: drop-shadow(0px 0px 2px rgba(255, 78 ,148, 1));
  }
  20.1% {
       -webkit-filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
    filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
  }
  54.1% {
       -webkit-filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
    filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
  }
  55.1% {
       -webkit-filter: drop-shadow(0px 0px 2px rgba(255, 78 ,148, 1));
    filter: drop-shadow(0px 0px 2px rgba(255, 78 ,148, 1));
  }
  56.1% {
      -webkit-filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
    filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
  }
  57.1% {
       -webkit-filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
    filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
  }
  58.1% {
       -webkit-filter: drop-shadow(0px 0px 2px rgba(255, 78 ,148, 1));
    filter: drop-shadow(0px 0px 2px rgba(255, 78 ,148, 1));
  }
  59.1% {
        -webkit-filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
    filter: drop-shadow(0px 0px 15px rgba(255, 78 ,148, 1));
  }
  100% {
        -webkit-filter: drop-shadow(0px 0px 2px rgba(255, 78 ,148, 1));
    filter: drop-shadow(0px 0px 2px rgba(255, 78 ,148, 1));
  }
}

.navbarstk ul{
    margin: 0;
    padding: 0;
    display: flex;
    margin-left: 25px;
}
@media (max-width:991px){
  .sidebarbtn{
    display: block;
}
  .navbarstk ul{
    display:none;
}
}

.navbarstk li{
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 5px 0;
}
.navbarstk ul a{
    display: block;
    padding: 10px 6px;
    border-radius: 10px;
    color: white;
    font-weight: 400;
    text-decoration: none;
    font-size: 20px;
    /* text-shadow: 0 0 5px #002fff; */
    text-shadow: -1px 0 rgb(6 41 236), 0 1px rgb(40 9 219), 1px 0 rgb(2 50 155), 0 -1px rgb(27 4 235);
}
.navbarstk ul a:hover{
    background: #acacac33;
    text-shadow: 0 0 5px white, 0 0 20px white;
}
.loginregishead{
    position: absolute;
    right: 0;
    margin: 2px;
    display: flex;
}
@media (max-width:991.86px){
  .loginregishead{
    margin:13px;
  }
}
@media (max-width:767.86px){
  .loginregishead{
    display:none;
  }
}
.loginbtn {
    border-radius: 5px;
    border: none;
    padding: 10px 15px;
    color: white;
        background: linear-gradient(134deg, #ff2e2e, #610f0f);
    box-shadow: rgb(255 255 255) 0px 0px 0px 1.5px inset;
}
.registerbtn{
    border-radius: 5px;
    border: none;
    padding: 10px 10px;
    margin-left: 5px;
    color: white;
    box-shadow: rgb(255 255 255) 0px 0px 0px 1.5px inset;
    background: linear-gradient(168deg, rgba(65, 75, 108, 0.82) 0%, rgb(19, 24, 42) 100%);
}

@media (max-width: 520px){
  .navbarstk img{
  width: 176px;
  }
    .navbarstk{
        padding: 10px;

    }
    .loginregishead{
        margin: 0;
        right: 10px;
    }

    .loginbtn{
        font-size: 14px;
    }
    .registerbtn{
        font-size: 14px;
    }
}
@media (max-width: 450px){
    .navbarstk{
        padding: 10px;
    }
    .loginregishead{
        margin: 0;
        right:5px;
    }
 
    .loginbtn{
        font-size: 12px;
    }
    .registerbtn{
        font-size: 12px;
    }
}
@media (max-width: 390px){

    .navbarstk{
        padding: 5px;
    }
    .loginregishead{
        margin: 0;
        right:5px;
    }

    .loginbtn{
        font-size: 12px;
    }
    .registerbtn{
        font-size: 12px;
            margin-left: 2px;
    }
}

.btn-primary {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  position: relative;
  -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .5));
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .5));
  border-radius: 12px;
  border: 2px solid transparent;
  background-image: linear-gradient(180deg, #267dc0, #0b151f), linear-gradient(90deg, #9c6727, #fdf6ae 31.53%, #bd8d42 64.87%, #fdf6ae);
  background-origin: border-box;
  background-clip: content-box, border-box;
  padding: 0!important;
  transition: -webkit-filter .2s;
  transition: filter .2s;
  transition: filter .2s, -webkit-filter .2s;
  font-size: 19px;
}
@media (max-width:991.86px){
  .btn-primary {
    margin:0px 10px;
  }
  .btn-primary:nth-child(2) {
    margin:0px 0px;
  }
}
.btn-primary:hover {
  -webkit-filter: saturate(2);
  filter: saturate(2);
  border-color: #fcf5ad;
  background-image: linear-gradient(180deg, #da060c, #210001), linear-gradient(90deg, #9c6727, #fdf6ae 31.53%, #bd8d42 64.87%, #fdf6ae);
}
.btn-primary:after{
        background: linear-gradient(
270deg, rgba(234, 182, 113, 0), #eab671 50.8%, rgba(234, 182, 113, 0));
    width: 100%;
    height: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    mix-blend-mode: screen;
    bottom: -4px;
}
.btn-primary:before{
      background: linear-gradient(
270deg, rgba(234, 182, 113, 0), #eab671 50.8%, rgba(234, 182, 113, 0));
    width: 100%;
    height: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    mix-blend-mode: screen;
    top: -4px;
}
.btn-primary a{
  display: block;
  padding: 5px 10px;
  color: #fffcdb;
  text-decoration: none !important;
}
.headleftmenu{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.headcenterlogo{
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
}

.headrightmenu{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 197px;
}
 .navbarstk .headleftmenu li{
  margin-right: 5px;
}
 .navbarstk .headrightmenu li{
  margin-left: 5px;
}
@media (max-width:450px){
  .btn-primary {
    font-size:3vw
  }
}
/*Nav Bar-----------------------------------*/






/* Header Game */
#othergamect{
    position: absolute;
    left: 0;
    right: 0;
    overflow: auto;
    scroll-behavior: smooth;
    transition: all .3s;
    z-index: 1;
    top: 10px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
#othergamect::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#othergamect {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.inothergame{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
    max-width: 1299px;
    margin: 0 auto;
    padding: 0 10px;
}
.imgheadgame{
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
}
.imgheadgame img{
    width: 100px;
    max-width:100%;
    height: auto;
    min-width:90px;
}
@media (max-width: 1080px){
    .imgheadgame{
  padding:10px;
}
}
    .leftbtnhead,.rightbtnhead{
        position: absolute;
        left: 10px;
        top: 23px;
        display: none;
        background: none;
        padding: 5px;
        border: none;
        color: white;
        font-size: 40px;
        z-index: 2;
        text-shadow: 0 0 5px black, 0 0 15px black, 0 0 25px black, 0 0 35px black;
    }
        .rightbtnhead{
        right: 10px;
        left: auto;
    }
@media (max-width: 991px){
    .leftbtnhead,.rightbtnhead{
        display: block;
    }

}
/* Header Game */









/* Wp-admin */
.navbarstk.wpadmin.fixedtop{
    top: 55px;
}
@media screen and (max-width: 782px){
  .navbarstk.wpadmin.fixedtop{
    top: 65px;
}
}
@media screen and (max-width: 600px){
#wpadminbar {
    position: absolute;
    margin-top: -46px;
}
.navbarstk.wpadmin.fixedtop{
    top: 20px;
}
}
/* Wp-admin */










/* Footer Mobile */



#account-actions-mobile {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
}

@media (min-width:768px) {
    #account-actions-mobile {
        display: none
    }
}

#account-actions-mobile .-register-btn {
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    background: linear-gradient(180deg, #56ccf2, #2f80ed);
    border-radius: 15px 15px 0 0;
    text-align: center
}

#account-actions-mobile .-register-btn span {
    display: inline-block;
    color: #fff;
    background: #fff -webkit-gradient(linear, 100% 0, 0 0, from(#fff), color-stop(.5, #2f80ed), to(#fff));
    background-position: -200px top;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation-name: x-shimmer;
    animation-name: x-shimmer;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@media (max-width:991.98px) {
    #account-actions-mobile .-register-btn span {
        -webkit-animation-duration: 2s;
        animation-duration: 2s
    }
}

@media (max-width:767.98px) {
    #account-actions-mobile .-register-btn span {
        width: 100%
    }
}

#account-actions-mobile .-outer-wrapper {
    display: flex;
    align-items: flex-end
}

#account-actions-mobile .-left-wrapper,
#account-actions-mobile .-right-wrapper {
    display: flex;
    align-items: flex-end;
    flex: 1;
    z-index: 2;
    height: 70px;
    padding-bottom: 6px;
    background: linear-gradient(180deg, #1d2e61, #0071b7);
    border-top: 3px solid #eaeaeb;
    transition: -webkit-filter .2s;
    transition: filter .2s;
    transition: filter .2s, -webkit-filter .2s;
}

#account-actions-mobile .-center-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 3;
    width: 74px;
    height: 74px;
    margin: 0 8px 16px;
    padding-bottom: 8px;
    color: #fff;
    border-radius: 50%;
}

#account-actions-mobile .-center-wrapper .-selected,
#account-actions-mobile .-center-wrapper .-selecting {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center
}

#account-actions-mobile .-center-wrapper .-selected {
    transition: all .4s;
    background-size: 450px;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    background-position: 0 0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}
.-selected img{
    width: 116px !important;
    max-width: inherit !important;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin-top: -20px;
}

#account-actions-mobile .-center-wrapper .-selected.-slot {
    background-position: -93px 0
}

#account-actions-mobile .-center-wrapper .-selected.-skill-game {
    background-position: -188px 0
}

#account-actions-mobile .-center-wrapper .-selected.-sport {
    background-position: -282px -2px
}

#account-actions-mobile .-center-wrapper .-selected.-fishing-game {
    background-position: -378px 0
}

#account-actions-mobile .-center-wrapper .-selected .-text {
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    text-shadow: 0 6px 5px rgba(0, 0, 0, .4);
    white-space: nowrap;
}

#account-actions-mobile .-center-wrapper .-selecting {
    display: none
}

#account-actions-mobile .-center-wrapper .-selecting .-text {
    font-size: .875rem;
    line-height: 16px;
    text-shadow: 0 6px 5px rgba(0, 0, 0, .4)
}

#account-actions-mobile .-center-wrapper .-selecting .-mark {
    position: relative;
    margin-top: 5px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 20px
}

#account-actions-mobile .-center-wrapper:hover {
    color: #fff;
    text-decoration: none
}

#account-actions-mobile .-fake-center-bg-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 50px;
    transition: -webkit-filter .2s;
    transition: filter .2s;
    transition: filter .2s, -webkit-filter .2s;
    overflow: hidden
}

#account-actions-mobile .-fake-center-bg-wrapper svg {
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 108px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

#account-actions-mobile .-fake-center-bg-wrapper svg path {
    fill: url(#rectangleGradient)
}

#account-actions-mobile .-left-wrapper {
    border-top-left-radius: 10px;
    border-top-right-radius: 22px
}

#account-actions-mobile .-right-wrapper {
    border-top-right-radius: 10px;
    border-top-left-radius: 22px
}

#account-actions-mobile .-sub-menu-lobby-wrapper {
    position: absolute;
    flex-direction: row;
    justify-content: center;
    visibility: hidden;
    top: -75px;
    left: 50%;
    z-index: 3;
    opacity: 0;

    -webkit-transform: translateX(-50%) translateY(200px) scaleY(2.5) scaleX(.2);
    transform: translateX(-50%) translateY(200px) scaleY(2.5) scaleX(.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    transition: all .2s
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-item .-text {
    display: inline-block;
    font-size: 10px;
    line-height: 12px;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

@media (max-width:991.98px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-casino .-nav-icon-bg {
        background-position: 3px
    }
}

@media (max-width:360px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-casino .-nav-icon-bg {
        background-position: 0
    }
}

@media (max-width:991.98px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-slot .-nav-icon-bg {
        background-position: -73px
    }
}

@media (max-width:360px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-slot .-nav-icon-bg {
        background-position: -75px
    }
}

@media (max-width:991.98px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-nav-icon-bg {
        background-position: -147px
    }
}

@media (max-width:360px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-nav-icon-bg {
        top: -12px;
        background-position: -150px
    }
}

@media (max-width:360px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-skill-game .-text {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px)
    }
}

@media (max-width:991.98px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-sport .-nav-icon-bg {
        background-position: -221px
    }
}

@media (max-width:360px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-sport .-nav-icon-bg {
        background-position: -224px
    }
}

@media (max-width:991.98px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-fishing-game .-nav-icon-bg {
        background-position: -300px
    }
}

@media (max-width:360px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item.-fishing-game .-nav-icon-bg {
        background-position: -303px
    }
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 66px;
    height: 66px;
    margin: 0 3px;
    padding: 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, #393854, #131228);
    border: 1px solid hsla(0, 0%, 100%, .6);
    border-radius: 50%;
    box-shadow: 0 0 10px hsla(0, 0%, 100%, .6)
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link .-nav-icon-bg {
    background-size: 360px;
    background-repeat: no-repeat;
    width: 100%;
    height: 40px;
    top: -15px;
    position: relative
}

#account-actions-mobile .-sub-menu-lobby-wrapper .nav-link:focus {
    outline: none;
    text-decoration: none
}

@media screen and (max-width:360px) {
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-item .-img {
        margin-top: -15px;
        width: 54px
    }
    #account-actions-mobile .-sub-menu-lobby-wrapper .nav-link {
        width: 60px;
        height: 60px;
        margin: 0 2px
    }
}

#account-actions-mobile .-item-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
    position: relative;
}

.-ic-img img{
    width: 34px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
    position: relative;
}

#account-actions-mobile .-item-wrapper .-textfooter {
    
font-size: .875rem;
    
color: #ffffff;
    
transition: color .2s;
    
position: absolute;
    
bottom: 0;
    
left: 50%;
    
transform: translateX(-50%);
    
white-space: nowrap;
    
margin: 0 auto;
    
margin-top: .25rem;
}

@media (max-width:575.98px) {
    #account-actions-mobile .-item-wrapper .-textfooter {
        font-size: .8rem
    }
}

#account-actions-mobile .-item-wrapper:active,
#account-actions-mobile .-item-wrapper:hover {
    text-decoration: none
}

#account-actions-mobile .-item-wrapper:active .-text,
#account-actions-mobile .-item-wrapper:hover .-text {
    color: #f7d18e
}

#account-actions-mobile .-item-wrapper.-shimmer .-text {
    display: inline-block;
    color: #fff;
    background: #97a7c1 -webkit-gradient(linear, 100% 0, 0 0, from(#97a7c1), color-stop(.5, #fff), to(#97a7c1));
    background-position: -200px top;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation-name: x-shimmer;
    animation-name: x-shimmer;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: x-shimmer-shorter;
    animation-name: x-shimmer-shorter
}

@media (max-width:991.98px) {
    #account-actions-mobile .-item-wrapper.-shimmer .-text {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-duration: 2.5s;
        animation-duration: 2.5s
    }
}

#account-actions-mobile .-fully-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, .6)
}

#account-actions-mobile.-active .-fake-center-bg-wrapper,
#account-actions-mobile.-active .-left-wrapper,
#account-actions-mobile.-active .-right-wrapper {
    -webkit-filter: brightness(.5);
    filter: brightness(.5)
}

#account-actions-mobile.-active .-fake-center-bg-wrapper a,
#account-actions-mobile.-active .-left-wrapper a,
#account-actions-mobile.-active .-right-wrapper a {
    pointer-events: none
}

#account-actions-mobile.-active .-center-wrapper {
    background: linear-gradient(0deg, rgba(251, 200, 68, .85), rgba(248, 128, 18, .85))
}

#account-actions-mobile.-active .-center-wrapper .-selected {
    display: none
}

#account-actions-mobile.-active .-center-wrapper .-selecting {
    display: flex
}

#account-actions-mobile.-active .-sub-menu-lobby-wrapper {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
    transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

#account-actions-mobile.-active .-fully-overlay {
    display: block
}



/* Footer Mobile */





/* Fixed Line Sood */
.x-wrapper-right-container {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-end;
    position: fixed;
    right: 0;
    z-index: 99;
}

@media (min-width:992px) {
    .x-wrapper-right-container {
        top: 30%
    }
}

@media (min-width:768px) and (max-width:991.98px) {
    .x-wrapper-right-container {
        bottom: 30%
    }
}

@media (max-width:767.98px) {
    .x-wrapper-right-container {
        bottom: 216px;
    }
}

@media (max-width:575.98px) {
    .x-wrapper-right-container.-has-my-score-ranking {
        bottom: 150px
    }
}
.x-contact-us-v2 .-link-item {
    display: block;
    padding-right: 10px;
    -webkit-filter: drop-shadow(0 0 10px rgba(236, 189, 123, .3));
    filter: drop-shadow(0 0 10px rgba(236, 189, 123, .3));
    transition: -webkit-filter .3s;
    transition: filter .3s;
    transition: filter .3s, -webkit-filter .3s
}

.x-contact-us-v2 .-link-item.-img img {
    width: 100px !important;
    max-width: 100px !important;
    height: auto;
}

@media (max-width:991.98px) {
    .x-contact-us-v2 .-link-item.-img img {
        width: 100px !important; 
        max-width:100px !important; 
    }
}

@media (max-width:767.98px) {
    .x-contact-us-v2 .-link-item.-img img {
        width: 90px !important; 
        max-width:90px !important; 
    }
}

.x-contact-us-v2 .-link-item:hover {
    -webkit-filter: drop-shadow(0 0 10px rgba(236, 189, 123, .6));
    filter: drop-shadow(0 0 10px rgba(236, 189, 123, .6))
}





.x-entrance-sood {
    width: 100px;
    position: fixed;
    bottom: 50px;
    left: 30px;
    z-index: 100;
    cursor: pointer;
    transition: all .3s;
}
@media (max-width:1250px){
    .x-entrance-sood.-img-pattern.sidelinebt{
    bottom: 170px;
}
}

@media (max-width:767.98px) {
    .x-entrance-sood {
        display: none
    }
}

.x-entrance-sood .-img-pattern {
    width: 100%;
    height: auto;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center
}

.x-entrance-sood .-btn-sood {
    border: none;
    position: absolute;
    bottom: -38px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-top: 3px;
    height: 30px;
    width: 100px;
    border-radius: 15px
}

@media (min-width:992px) {
    .x-entrance-sood:hover .-img-pattern {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
}
/* Fixed Line Sood */
















/*Footer*/

/*Tab Racommed*/
.tagcontainer {
    
    text-align: center;
}
.tagcontainer span {
    display: inline-block;
}
.tagfooter {
margin: 5px 2px;
display: inline-block;
}
.tagfooter a{
  display: inline-block;
  padding: 2px 10px;
border-radius: 5px;
  color:white;
  text-decoration:none;
  background: linear-gradient(180deg, #81215f, #3e103d);
}
.tagfooter a:hover{
  background: linear-gradient(180deg, #c24696, #7e247c);
  text-shadow:0 0 5px white, 0 0 10px white;
}

/*Tab Racommed*/

.footercontain {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}
.disfooterct {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
}
.infootergrid {
    display: flex;
    padding: 0 10px;
    word-break: break-word;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
}
.infootergrid:empty {
  display:none;
}


.fotterctn{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.infootergrid:empty {
  display:none;
}
.rightmenu{
  font-size: 30px;
}
  
  .infootergrid{
    text-align: center;
  }
  .infootergrid img{
    border-radius: 0;
    max-width: 300px !important;
    width: 100%;
  }
  .infootergrid h2{
          background-image: linear-gradient(
180deg
, #ded880 20%, #feab26 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }
  .infootergrid ul{
    padding:none;
    margin:0;
    display: flex;
    padding:0;
    padding-left:10px;
    justify-content: center;
  }
  .infootergrid  li{
    list-style:none;
    font-size: 23px;
    padding: 8px;
    padding-bottom:4px;
  }

.trueimg img{
  display: block;
  width: 250px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
}
.headerbt{
  display: block;
      background-image: linear-gradient(
180deg
, #ded880 20%, #feab26 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  font-size: 30px;
}
.bankcontainer{
  text-align: center;
}
.bankcontainer .gallery-item{
    width:auto; 
}
.bankcontainer .gallery {
    margin: auto;
    display: flex;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-content: center !important;
}
.bankcontainer img{
  width: 40px;
  margin: 5px;
  height: auto;
  border: none !important;
}
.bankcontainer .gallery-item{
    width: auto !important;
    margin-top: 0 !important;
}
@media (max-width: 440px){
  .bankcontainer img{
  width: 10vw;
  margin: 5px;
  height: auto;
}
.infootergrid li {
    list-style: none;
    font-size: 5vw;
    padding: 8px;
    padding-bottom: 4px;
}

}
@media (max-width:991px){
footer {
    padding-bottom: 90px;
}
.bankcontainer img{
  width: 40px;
  margin: 5px;
  height: auto;
}
.disfooterct {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
}
.infootergrid h2{
  margin-top:20px;
}

}
.footerhr {
    height: 1px;
    margin: 3px 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, #ffffff21 30%, #d5d5d538 70%, transparent);
}
/*Footer*/




/* Section01 */

.section01{
    background-position: top;
    background-size: 102% 100%;
    -webkit-animation: x-bg-pan-left 8s infinite alternate;
    animation: x-bg-pan-left 8s infinite alternate;
    padding-top: 251px;
    padding-bottom: 76px;
    position: relative;
}

.section01:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: white;
    box-shadow: 0 0 5px #f196dd, 0 0 15px #eb63c7, 0 0 20px #ff69fa;
}

@-webkit-keyframes x-bg-pan-left {
    0% {
        background-position: 100% 50%
    }
    to {
        background-position: 0 50%
    }
}

@keyframes x-bg-pan-left {
    0% {
        background-position: 100% 50%
    }
    to {
        background-position: 0 50%
    }
}
@media (max-width: 991.98px){
.section01 {
    background-size: cover;
    -webkit-animation: x-bg-pan-left 50s infinite alternate;
    animation: x-bg-pan-left 50s infinite alternate;
}
}
.insection01{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}
.-banner-img{
    position: relative;
    padding: 4px;
    z-index: 20;
}
.-banner-img video{
    border-radius: 13px;
}

.-banner-img::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    bottom: 0;
    left: 0;
    border: 4px solid transparent;
    border-radius: 10px;
    box-shadow: 5px 5px 15px black;
    background-image: linear-gradient( 
180deg
 , #1c1c1c, #0f0e0a), linear-gradient( 
180deg
 , #c7316d -30%, #ff87b7 22%, #65233c 72%, #ff5298 112%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.-banner-img  .mejs-container{
    background: transparent;
}
.x-index-top-container .-top-row-wrapper .-banner-img img {
    width: 100%;
    height: auto
}

@media (min-width:992px) and (max-width:1199.98px) {
    .x-index-top-container .-top-row-wrapper .-banner-img img {
        width: 110%
    }
}

@media (min-width:768px) and (max-width:991.98px) {
    .x-index-top-container .-top-row-wrapper .-banner-img img {
        width: 70%
    }
}

@media (min-width:576px) and (max-width:767.98px) {
    .x-index-top-container .-top-row-wrapper .-banner-img img {
        width: 85%
    }
}

.x-index-top-container .-top-row-wrapper .-logo-img img {
    width: 233px;
    height: auto;
    margin-top: 2rem;
    -webkit-filter: drop-shadow(0px 0px 12px rgba(0 ,0 ,0,0.5));
    filter: drop-shadow(0px 0px 12px rgba(0 ,0 ,0,0.5));
}

@media (max-width:991.98px) {
    .x-index-top-container .-top-row-wrapper .-logo-img img {
        margin-top: 0
    }
}

@media (max-width:575.98px) {
    .x-index-top-container .-top-row-wrapper .-logo-img img {
        width: 50%;
    }
}

.-logo-img{
  z-index:5;
  position: relative;
}
.x-index-top-container .-top-row-wrapper .-title {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.2015rem;
    font-weight: 500;
    line-height: 1.5;
    word-break: break-word;
    z-index: 1;
    position: relative;
    text-shadow: 0 0 5px black;
}

@media (max-width:575.98px) {
    .x-index-top-container .-top-row-wrapper .-title {
        font-size: 1.0035rem
    }
}

.x-index-top-container .-top-row-wrapper .-btn {
    margin-top: 1.5rem;
    z-index: 1;
}

@media (max-width:991.98px) {
    .x-index-top-container .-top-row-left-wrapper {
        text-align: center
    }
}

.x-index-top-container .-top-row-right-wrapper {
    text-align: center;
    z-index: 11;
}

@media (max-width:991.98px) {
    .x-index-top-container .-top-row-right-wrapper {
        margin-top: -2rem;
    }
}

@media (max-width:575.98px) {
    .x-index-top-container .-top-row-right-wrapper {
    }
}

.x-index-top-container .-bottom-row-wrapper {
    margin-top: 5rem
}

@media (min-width:992px) and (max-width:1199.98px) {
    .x-index-top-container .-bottom-row-wrapper {
        margin-top: 8rem
    }
}

@media (max-width:991.98px) {
    .x-index-top-container .-bottom-row-wrapper {
        margin-top: 7rem
    }
}

@media (max-width:767.98px) {
    .x-index-top-container .-bottom-row-wrapper {
        margin-top: 3rem
    }
}

.-btn {
    position: relative
}

.-btn.-btn-image-primary,
.-btn.-btn-image-secondary {
    padding: 0;
    width: 230px
}

.-btn.-btn-image-primary .-fake-bg-wrapper,
.-btn.-btn-image-secondary .-fake-bg-wrapper {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 80%, #3e001a);
    border-radius: 40px;
    box-shadow: 0 0 4px #ffc87f;
    transition: box-shadow .2s
}

.-btn.-btn-image-primary .-fake-bg-wrapper .-fake-bg-glow,
.-btn.-btn-image-secondary .-fake-bg-wrapper .-fake-bg-glow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 150px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.-btn.-btn-image-primary .-real-content-wrapper,
.-btn.-btn-image-secondary .-real-content-wrapper {
    position: relative
}
 .-bg-img {
    position: relative;
    width: 228px;
    height: auto;
}

.-bg-img img {
    position: relative;
    width: 100%;
    height: auto
}

.-btn.-btn-image-primary .-real-content-wrapper .-btn-text,
.-btn.-btn-image-secondary .-real-content-wrapper .-btn-text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: auto;
    height: auto;
    font-size: 1.2015rem;
    font-weight: 500;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .5));
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .5));
    display: inline-block;
    color: #fff;
    background: #fff -webkit-gradient(linear, 100% 0, 0 0, from(#fff), color-stop(.5, #c2008c), to(#fff));
    background-position: -200px top;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation-name: x-shimmer;
    animation-name: x-shimmer;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@media (max-width:991.98px) {
    .-btn.-btn-image-primary .-real-content-wrapper .-btn-text,
    .-btn.-btn-image-secondary .-real-content-wrapper .-btn-text {
        -webkit-animation-duration: 2s;
        animation-duration: 2s
    }
}

@media (min-width:992px) {
    .-btn.-btn-image-primary:hover .-fake-bg-wrapper,
    .-btn.-btn-image-secondary:hover .-fake-bg-wrapper {
        box-shadow: 0 0 10px #ffc87f
    }
    .-btn.-btn-image-primary:hover .-real-content-wrapper,
    .-btn.-btn-image-secondary:hover .-real-content-wrapper {
        top: 5px
    }
}
/* Section01 */


/* Section02 */
.insection02{
    width: 100%;
    margin: 0 auto;
}

.linesection01{
    position: relative;
}
.linesection01:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: white;
    box-shadow: 0 0 5px #f196dd, 0 0 15px #eb63c7, 0 0 20px #ff69fa;
    z-index: 1;
}
/* Section02 */









/* Single Page */
.headerppp{
  text-align: center;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  padding: 2px;
  margin-top: -38px;
  margin-bottom: 15px;
  border-radius: 10px;
  background-image: linear-gradient(180deg,#c9266a,#540438), linear-gradient(90deg, #9c6727, #fdf6ae 31.53%, #bd8d42 64.87%, #fdf6ae);
  background-origin: border-box;
  background-clip: content-box, border-box;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
}
.headerppp h1{
  font-size: 23px;
  padding: 5px;
  margin: 0;
}
.containpage{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 233px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    background: #ffffff75;
}
.pagemargin{
    margin-top: 230px;
}

/* Single Page */














/* AllPost */

/*Post*/
.containpage .category-post h2{
  display: none;
}
.containpage .category-post ul{
  padding: 0;
  margin: 0;
}

.containpage .category-post li{
  list-style: none;
  padding: 0;
  margin: 0;
}
.containpage .category-post li.current-cat a{
  background: linear-gradient(177deg, #267dc0, #0b151f);
  text-shadow: 0 0 5px white,0 0 20px white,0 0 30px white;
  color: white;
}
.containpage .category-post ul li a{
  padding: 11px 3px;
  margin-bottom: 9px;
  display: block;
  color: #000;
  background: #ffffff63;
  border-radius: 9px;
  text-decoration:
  none;
}
@media (max-width:767px){
  .containpage .category-post ul{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
} 

  .containpage .category-post ul li a{
    padding: 10px 5px;
    margin:0 5px;
    margin-bottom:10px;
    height: 100%;
    display: flex;
    text-align: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.containpage .pages-post{
  text-align: center;
  margin-top: 10px;
}
.containpage .pages-post a,.containpage .pages-post span{
  display:inline-block;
  background: linear-gradient(180deg,#505050 30%,#262626);
  padding: 10px;
  border-radius:10px;
}
.containpage .pages-post span{
  background: linear-gradient(180deg,#f52867 30%,#bf001d);

}






/*POST*/
.postcontainer{
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.posthead{

}
.nav-link{
  font-size: 16px;
}
.p-post{
  padding:0 5px !important;
}
.nav-link{
  line-height: 25px;
  padding: 20px 0;
}
.nav-link i{
  width: 40px;
}
.nav-pills .nav-link {
  border-radius: .25rem;
  margin-top:5px;
  font-size: 18px;
  background: #0000005e;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background: linear-gradient(180deg,#f52867 30%,#bf001d);
  text-shadow: 0 0 5px white;
}
.gridpost{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ingridpost{
  padding: 5px;
  text-align: center;
  font-size: 18px;
  width: 100%;
}
.iningridpost{
  width: 100%;
  background: #ffffff45;
  padding: 5px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  height: 100%;
  padding-bottom: 13px;
  color: black;
}

.ingridpost img{
  width: 100%;
  height: auto;
  padding-bottom: 5px;
  border-radius: 10px;
}
@media (max-width: 991px){
  .p-post{
    padding:0 5px !important;
  }
}
@media (max-width: 768px){
  .gridpost{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr ;
  }
}
@media (max-width: 575px){
  .nav-pills .nav-link {
    border-radius: .25rem;
    margin-top: 5px;
    background: #2626266e;
  }
  .postmenu{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .nav-link{
    padding: 10px 0 !important;
  }
  .gridmenu{
    padding: 3px;
  }
  .nav-link .inpostmenu{
    width: 100%;
    height: 100%;
    padding-top: 10px;
    border-radius: 5px;
  }
  .nav-link.active .inpostmenu{
    width: 100%;
    height: 100%;
    background: transparent;
    padding-top: 10px;
    border-radius: 5px;
  }
}
.head06 img {
  width: 90px;
  -webkit-filter: drop-shadow(0px 0px 7px #b59951);
  filter: drop-shadow(0px 0px 7px #b59951);
}
.head06 {
  padding-top: 15px;
  font-size: 26px;
  white-space: nowrap;
  text-align: center;
}
/*END POST*/
/* AllPost */











/* LOGIN MODAL */
.modaldiv{
  display: none;
  position: fixed;
  z-index: 100;
  bottom: 0;
  right:0;
  top: 0;
  left: 0;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  padding: 0 10px;
}
.contentmodal{
  width: 100%;
  max-width: 500px;
  height: auto;
  z-index: 2;
  position: relative;
  margin: 0 auto;
  background: linear-gradient(180deg,#c11b85b8,#3e0117d4);
  border-radius: 20px;
  padding: 10px;
}
.contentmodal iframe{
  height: 100%;
  width: 100%;
  border: none;
}
.contentmodal button{
  position: absolute;
  right: 2px;
  top: -10px;
  border-radius: 50px;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  text-align: center;
  background:#ff4c4c;
  padding: 0;
}
.contentmodal button i{
  display:block;
  margin:0 auto;
  color:white;
}
.overlaymodal{
  position: fixed;
  bottom: 0;
  right:0;
  top: 0;
  left: 0;
  background: #00000070;
  z-index: -1;
}
.contentmodal.animate__animated.animate__bounceInDown {
  --animate-duration: .6s;
}
.contentmodal .login h1{
  text-align:center;
  font-size:20px;
  margin-top:10px;
}
.contentmodal .login{
    padding: 0 20px;
}
.contentmodal .login img{
  width:100%;
  max-width:200px;
  height:auto;
  margin:0 auto;
  display:block;
  margin-top:15px;
}
.contentmodal .login input{
    background: #00000085;
    width:100%;
    border-radius: 9px;
    border: none;
    padding: 10px;
    outline: none;
    color: white;
    box-shadow: 0 0 2px white,0 0 15px #0000009e;
}
.contentmodal .login a.btnLogin{
    width:100%;
    max-width:200px;
    padding:10px;
    background: linear-gradient(163deg, #ff2cb5, #6f104d);
    display:block;
    margin:20px auto;
    text-align:center;
    border-radius:20px;
    color: white;
    text-decoration: none;
}
/* LOGIN MODAL */

















/* Playing Cards */

:root {
  --bg: #f9f9f9;
  --table-color: #ecf0f1;
  --card-red: #e74c3c;
  --card-black: #333;
}
#frame {
  display: flex;
  width: 100%;
  height: 400px;
  border-radius: 30px;
  border-top: 0;
  border-bottom: 0;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  transform-style: preserve-3d;
  margin-top: -393px;
  opacity: .5;
  z-index: -1;
}

#frame  button {
  position: absolute;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: transparent;
  left: 50%;
  transform: translateX(-50%);
  top: 5.5%;
  border-radius: 10px;
  border: none;
  padding: 5px 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  user-select: none;
  z-index: 99;
  cursor: default;
  outline: none !important;
}
#frame  button:hover {
  background: transparent;
}

#table {
  position: relative;
  width: 85%;
  height: 80%;
  perspective: 1200px;
  transform: rotateY(0deg) rotateX(53deg);
}
#table .card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 105px;
  border-radius: 10px;
  box-shadow: 1px 1px 5px 1px rgba(150, 150, 150, 0.15);
}
#table .card__symbol {
  font-size: 60px;
  color: var(--card-black);
  user-select: none;
}
#table .card__symbol--red {
  color: var(--card-red);
}
#table .card--sample {
  top: 40%;
  left: 45%;
  transform: rotate(45deg);
}

@media (max-width:768px){
  #frame {
    overflow: hidden;
    height:400px;
  }
  
}

/* Playing Cards */















  /* 404 Not found */
  .containerror{
    margin-top: 260px;
  }
  .incontainerror{
    text-align: center;
    font-size: 40px;
  }
/* 404 Not found */





/* VIDEO PORN */
.-right-container{height: 264px;margin-top: 23px;}

#x-video-porn {
    text-align: center
}

#real-canvas-vdo {
    z-index: 1!important;
    left: 50%;
    top: -45px!important;
    transform: translateX(-50%);
}

@media (max-width:991.98px) {
    #real-canvas-vdo {
        width: auto!important;
        height: 430px!important;
        top: 0!important;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width:767.98px) {
    #real-canvas-vdo {
        z-index: 0!important;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}



 .-right-container .-porn-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 500px
}

 .-right-container .-poster {
    position: absolute;
    bottom: -96px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}

 .-right-container .-poster .-right-inner-wrapper {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

 .-right-container .-poster .-right-inner-wrapper .-img {
    width: auto;
    height: 400px
}

@media (max-width:991.98px) {
     .-right-container .-poster .-right-inner-wrapper .-img {
        height: 302px;
    }
}

 .-right-container .-poster .-right-inner-wrapper .-click-me {
    position: absolute;
    top: 40px;
    left: -80px;
    padding: 5px 7px;
    padding-bottom: 2px;
    font-size: 1.3rem;
    border-radius: 10px;
    background: #fd3386;
    border: 1px solid #fd3386;
    transition: all .2s;
    -webkit-animation: x-sexy-left-right 1.5s ease-in-out infinite;
    animation: x-sexy-left-right 1.5s ease-in-out infinite;
}

 .-right-container .-poster .-right-inner-wrapper .-click-me:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 13px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 10px solid #fd3386;
    border-bottom: 8px solid transparent;
    transition: all .2s
}

 .-right-container .-poster .-right-inner-wrapper .-click-me:hover {
    cursor: pointer;
    background: #7f1a43;
    border-color: #7f1a43
}

 .-right-container .-poster .-right-inner-wrapper .-click-me:hover:after {
    border-left-color: #7f1a43
}

@media (max-width:1199.98px) {
     {
        padding-top: 8rem
    }
     .-left-container {
        padding-left: 1rem
    }
     .-left-container .-title-logo img {
        height: auto;
        width: 300px
    }
     .-right-container .-porn-img {
        width: 450px
    }
}

@media (max-width:991.98px) {
     {
        padding-top: 6rem
    }
     .-left-container {
        padding-left: 1rem;
        padding-bottom: 8rem
    }
     .-left-container .-title-logo img {
        height: auto;
        width: 250px
    }
     .-left-container .-btn-group .-play-real {
        padding: 10px 25px 4px!important
    }
     .-left-container .-btn-group .-play-real .x-heart:after,
     .-left-container .-btn-group .-play-real .x-heart:before {
        top: 6px
    }
     .-left-container .-btn-group .-register .x-heart {
        top: 13px
    }
     .-right-container .-porn-img {
        width: 380px;
        left: -10px
    }
}

@media (max-width:767.98px) {
     {
        padding-top: 5rem
    }
     .-left-container {
        padding-top: 0;
        padding-bottom: 2rem;
        text-align: center
    }
     .-left-container .-title-logo img {
        height: auto;
        width: 230px
    }
     .-left-container .-btn-group {
        position: relative;
        margin-top: 12rem;
        z-index: 10
    }
     .-left-container .-btn-group .-play-real {
        padding: 8px 25px 6px!important
    }
     .-left-container .-btn-group .-register .x-heart {
        top: 10px
    }
     .-right-container {
        z-index: 5
    }
     .-right-container .-porn-img {
        left: 0;
        right: 0;
        width: 300px;
        margin: auto
    }
}

@media (max-width:575.98px) {
     .-left-container .-title-logo img {
        height: auto;
        width: 200px
    }
    .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-modal .modal-content .modal-body  .-left-container .-btn-group .btn-primary.vex-dialog-button,
    .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-modal .modal-content .modal-body  .-left-container .-btn-group .vex-dialog-button.vex-dialog-button-primary,
    .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .x-modal .modal-content .modal-body  .-left-container .-btn-group .-copy-btn.vex-dialog-button,
     .-left-container .-btn-group .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-modal .modal-content .modal-body .btn-primary.vex-dialog-button,
     .-left-container .-btn-group .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-modal .modal-content .modal-body .vex-dialog-button.vex-dialog-button-primary,
     .-left-container .-btn-group .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .x-modal .modal-content .modal-body .-copy-btn.vex-dialog-button,
     .-left-container .-btn-group .x-btn-primary,
     .-left-container .-btn-group .x-btn-secondary,
     .-left-container .-btn-group .x-modal .modal-content .modal-body .btn.btn-primary,
     .-left-container .-btn-group .x-modal .modal-content .modal-body .vex.vex-theme-plain .vex-content .vex-dialog-buttons .btn-primary.vex-dialog-button,
     .-left-container .-btn-group .x-modal .modal-content .modal-body .vex.vex-theme-plain .vex-content .vex-dialog-buttons .vex-dialog-button.vex-dialog-button-primary,
     .-left-container .-btn-group .x-modal .modal-content .modal-body .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .-copy-btn.vex-dialog-button,
     .-left-container .-btn-group .x-modal .modal-content .modal-body .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .btn.-copy-btn,
     .-left-container .-btn-group .x-modal .modal-content .modal-body .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .vex.vex-theme-plain .vex-content .vex-dialog-buttons .-copy-btn.vex-dialog-button,
     .-left-container .-btn-group .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-modal .modal-content .modal-body .-copy-btn.vex-dialog-button,
     .-left-container .-btn-group .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .x-modal .modal-content .modal-body .btn.-copy-btn,
    .x-modal .modal-content .modal-body .vex.vex-theme-plain .vex-content .vex-dialog-buttons  .-left-container .-btn-group .btn-primary.vex-dialog-button,
    .x-modal .modal-content .modal-body .vex.vex-theme-plain .vex-content .vex-dialog-buttons  .-left-container .-btn-group .vex-dialog-button.vex-dialog-button-primary,
    .x-modal .modal-content .modal-body .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-tab-event-container .-event-tab-info-container .-how-to-wrapper  .-left-container .-btn-group .-copy-btn.vex-dialog-button,
    .x-modal .modal-content .modal-body  .-left-container .-btn-group .btn.btn-primary,
    .x-modal .modal-content .modal-body .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .vex.vex-theme-plain .vex-content .vex-dialog-buttons  .-left-container .-btn-group .-copy-btn.vex-dialog-button,
    .x-modal .modal-content .modal-body .x-tab-event-container .-event-tab-info-container .-how-to-wrapper  .-left-container .-btn-group .btn.-copy-btn,
    .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .vex.vex-theme-plain .vex-content .vex-dialog-buttons .x-modal .modal-content .modal-body  .-left-container .-btn-group .-copy-btn.vex-dialog-button,
    .x-tab-event-container .-event-tab-info-container .-how-to-wrapper .x-modal .modal-content .modal-body  .-left-container .-btn-group .btn.-copy-btn {
        min-width: 130px!important
    }
     .-left-container .-btn-group .-register .x-heart {
        left: 12px
    }
     .-left-container .-btn-group .-register .-span {
        margin-left: 15px
    }
}

@-webkit-keyframes x-sexy-left-right {
    0% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
}

@keyframes x-sexy-left-right {
    0% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
}
/* VIDEO PORN */

/* Button Animation */
.animateregis{
    -webkit-animation: regis-bttn;
    animation: regis-bttn;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;

}
@keyframes regis-bttn{
0% {
    -webkit-transform: scale(1);
    transform: scale(1);
}

50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
100% {
    -webkit-transform: scale(1);
    transform: scale(1);
}
}
.tadaa {
    animation: animationFrames linear 1s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: animationFrames linear 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: animationFrames linear 1s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: animationFrames linear 1s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: animationFrames linear 1s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes animationFrames{
0% {
    -webkit-transform: rotate(0deg) scaleX(1) scaleY(1);
    transform: rotate(0deg) scaleX(1) scaleY(1);
}
10% {
    -webkit-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
    transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
}
20% {
    -webkit-transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
    transform: rotate(-3deg) scaleX(0.8) scaleY(0.8);
}
30% {
    -webkit-transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
    transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
}
40% {
    -webkit-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2);
    transform: rotate(-3deg) scaleX(1.2) scaleY(1.2);
}
50% {
    -webkit-transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
    transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
}
60% {
    -webkit-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2);
    transform: rotate(-3deg) scaleX(1.2) scaleY(1.2);
}
70% {
    -webkit-transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
    transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
}
80% {
    -webkit-transform: rotate(-3deg) scaleX(1.2) scaleY(1.2);
    transform: rotate(-3deg) scaleX(1.2) scaleY(1.2);
}
90% {
    -webkit-transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
    transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
}
100% {
    -webkit-transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
    transform: rotate(3deg) scaleX(1.2) scaleY(1.2);
}
}
/* Button Animation */

/*  */
.bg100{
    background-size: 100% 100% !important;
}
/*  */





/*  New Sub-Menu SideBar*/
.navbarstk li .sub-menu{
  position:absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  margin-left: 0px !important;
  background: linear-gradient(151deg, #0000007a, #0000007a);
  border-radius: 16px;
}
.navbarstk li .sub-menu li{
    margin:0 !important;
}
.navbarstk li:hover .sub-menu{
  display:flex
}

.menu-item-has-children a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.menu-item-has-children li a::after{
    display:none;
}
/*  New Sub-Menu SideBar*/




/* News Custom Categort */

.containpage .category-post ul{
  margin-bottom: 10px;
}
.containpage .category-post li.current-cat a{
   pointer-events: none;
  cursor: default; 
  text-decoration: none;
}
@media (max-width:767px){
  .containpage .category-post ul li{
    display:none;
    
  margin-bottom: 7px;}
  .containpage .category-post ul{
  display: grid;
  grid-template-columns:   1fr;
  transition: all .3s;
} 
  .containpage .category-post li.current-cat{
  display:block;
}
.containpage .category-post li.current-cat a{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  position:relative;
  margin:0;
  padding:0;
}
.containpage .category-post li.current-cat::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.7em solid #b1b1b1;
    border-right: 0.9em solid #ffffff00;
    border-bottom: 0;
    border-left: 0.9em solid transparent;
}
  .containpage .category-post ul:hover li {
    display:block;
  }
    .containpage .category-post ul:hover li a{
    padding: 10px 5px;
    margin-bottom: 9px;
  }
  .containpage .category-post ul:hover li.current-cat::after{
    display:none;
  }
}
/* News Custom Categort */