.adultContentWarning, .eggContent{
    display: none;
}

.modalCard{
width: 175px;
height: 245px;
background: #4f964f;
color: #000000;
padding: 20px;
}

#modalContents{
    position: fixed;
    z-index: 9999;
}



slideDown{
    animation-name: updateCardSlide;
}
.centerWrapper{
    padding: 20px;
    text-align: center;
    animation-duration:0.5s;
}

@keyframes updateCardSlide {
    0%   { transform: translateY(-1000px); }
    50%   { transform: translateY(10px); }
    100% { transform: translateY(0px); }
  }


[data-modal-center]:before, #AdultContentWarning:before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);
    width: var(--minWidth);
    height: 100%;
    background: #00000094;
}

#AdultContentWarning{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 500px;
    padding: 25px;
}

[data-modal-center]{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 9999;
}

.modalcenter{
    animation-name: modalAnim;
    animation-duration:0.4s;
    
    width: 500px;
    padding: 25px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border: 12px double #2d2d2d;
    border-radius: 15px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.jsonModal{
    width: 600px;
    height: 600px;
    padding: 25px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border: 12px double #2d2d2d;
    border-radius: 15px;
    overflow: scroll;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@keyframes modalAnim {
    0%   { opacity: 0; top: 0%;}
    75%   { top: 52%;}
    100% { opacity: 1.0; top: 50%;}
  }

.modalCover{
padding: 125px 0px;
width: 100%;
height: 100vh;

background: rgba(3,3,3,0.2);
backdrop-filter: blur(35px) grayscale(1);
position:fixed;
top: 0;
left: 0;
justify-content: center;
align-items: center;
z-index: 1005;

background: 
            url("../img/pathookstransparent.png") bottom right fixed repeat;
animation: bgScroll 120s linear infinite;
}

.modalCover2{


    position: fixed;
    top: 0;
    left: 0;
    padding: 125px 0px;
    width: 100%;
    height: 100vh;
    background:
    linear-gradient(to bottom, rgba(3, 3, 3, 0.7) 25%,rgba(0, 0, 0, 0) 100%);
    background-size: auto;
    justify-content: center;
    align-items: center;
    z-index: 999;

    transition: 3s;
    }

.flexCover{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    position: fixed;
    top: 0;
    left: 0;

    padding: 125px 0px;

    min-width: 1800px;
    width: 100%;
    height: 100vh;
    background:
    linear-gradient(to bottom, rgba(3, 3, 3, 0.7) 25%,rgba(0, 0, 0, 0) 100%);
    background-size: auto;
    justify-content: center;
    align-items: center;
    z-index: 1100;

    transition: 3s;
}

@keyframes bgScroll{
	0% { background-position: 0 0; }
	100% { background-position: 1000px 500px; }
}

.modalContent{
    margin: 20px auto;
    width: 500px; min-height: 350px;
    text-align: center;
    font-size: 15pt;
    padding: 150px 0;
    filter: drop-shadow(3px 10px 0 #000000);
    background:
    url("../img/warningboxtop.png") top center no-repeat,
    url("../img/warningboxbottom.png") bottom center no-repeat;
}

.modalContentInside{
    color: #a0a0a0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    width: 100%;
    min-height: 350px;
    margin: 0px;
    padding: 0px 45px;
    background: url("../img/warningbox.png") repeat-y;
}

.modalContentInside u{
    font-weight: bold;
}

.modalContentInside h3{
    color: #FFFFFF;
    font-size: 45px;
    margin: 0;
}

.adultWarning{
    display: block;
    margin: auto;
}

.centerLogo{
    display: block;
    margin: 50px auto 10px;
}

.enterbutton{
    margin: 7px auto;
    text-align: center;
    color:#666666!important;
    border: 6px solid #2d2d2d;
    display: block;
    width: 400px;
    background: #2d2d2d;
    text-shadow: none;
    font-size: 28pt;
    transition: 0.2s;
    &:hover{
        border: 6px solid #2d2d2d;
        background: #4f964f;
        color: #101010!important;
        transition: 0.2s;
    }
}

/* Animations */
.blink {
animation: blink-animation 1.2s steps(5, start) infinite;
}

@keyframes blink-animation {
to {
visibility: hidden;
}
}

.jitter {
animation-duration: .3s;
animation-timing-function: ease-in-out;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
}

.jitter:hover {
animation-name: jittery;
}

@keyframes jittery {
10% { transform: translate(-2px, -3px) scale(1.01, 1.01); }
20% {transform: translate(3px, 2px) scale(.99, .99);}
30% {transform: translate(-4px, -5px) scale(1.01, 1.01);}
40% {transform: translate(2px, 3px) scale(1, 1);}
50% {transform: translate(-1px, -2px) scale(.98, .98);}
60% {transform: translate(0px, 3px) scale(1.02, 1.02);}
70% {transform: translate(-2px, -4px) scale(1, 1);}
80% {transform: translate(3px, 5px) scale(.99, .99);}
90% {transform: translate(-5px, -3px) scale(1.1, 1.1);}
100% {transform: translate(3px, 1px) scale(.95, .95);}
}

  .zigzag{
    animation-name: zigzag;
    animation-duration: .3s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    }
    
    @keyframes zigzag {
        10% { transform: rotateX(30deg) rotateY(-30deg) rotateZ(-30deg); }
        20% { transform: rotateX(-16deg) rotateY(30deg) rotateZ(-30deg); }
        30% { transform: rotateX(30deg) rotateY(-10deg) rotateZ(-3deg); }
        40% { transform: rotateX(-30deg) rotateY(30deg) rotateZ(30deg);}
        50% {transform: translate(-1px, -2px) scale(.98, .98);}
        60% { transform: rotateX(30deg) rotateY(-10deg) rotateZ(-3deg); }
        70% {transform: translate(-2px, -4px) scale(1, 1);}
        80% { transform: rotateX(-30deg) rotateY(30deg) rotateZ(-19deg); }
        90% {transform: rotateX(30deg) rotateY(-24deg) rotateZ(-30deg);}
        100% {transform: translate(3px, 1px) scale(.95, .95);}
      }
/* Animations END*/



/*** Scrollbars ***/
body::-webkit-scrollbar-track, div::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #1e1e1e;
}

body::-webkit-scrollbar, div::-webkit-scrollbar {
width: 10px;
background-color: #1e1e1e;
}

body::-webkit-scrollbar-thumb, div::-webkit-scrollbar-thumb {
background-color: #017e44;
}

/*** Scrollbars END ***/


/*** Flip some cards ***/
.card-wrapper {
float: left;
margin: 10px 20px 10px 20px;
}

.card-wrapper h2 {
text-align: center;
margin: 0px;
padding: 0px;
color: #FFFFFF;
font-family: "distorted", garamond, serif;
font-weight: bold;
font-size: 17px;
}

.card-center {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.flip-card {
background-color: transparent;
width: 175px;
height: 245px;
perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.5s;
transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden; /* Safari */
backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
background: url("../img/itemcardbg.png") center center no-repeat;
}

/* Style the back side */
.flip-card-back {
background-image: url("../img/cardinside.png");
background-color: #171717;
color: #666666;
transform: rotateY(180deg);
}

.card-text {
display: block;
width: 100%;
height: 100%;
padding: 20px;
}
/*** Flip some cards ***/

@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}


