.spider{
    position: absolute;
    display: inline-block;
    animation: swing 2s infinite;
    transform-origin: top;
    transition: 1s ease-in-out;
    scale: .4;
    top: 26px;
    left: 10%;
    animation: spider 2s, swing 2s infinite;
    transition: top 2s;
    cursor: pointer;
}
.spider .spiderweb{
    width: 2px;
    height: 600px;
    margin-left: 49px;
    background: rgba(255,255,255, .7);
}
.spider .body{
    width: 100px;
    height: 80px;
    background: #F0A951;
    position: relative;
    border-radius: 50%;
}
.spider .body .eye{
    width: 33px;
    height: 33px;
    position: absolute;
    bottom: 20px;
    background: #fff;
    border-radius: 50%;
}
.spider .body .eye.left{
    left: 15px;
}
.spider .body .eye.right{
    right: 15px;
}
.spider .body .eye:after{
    background: #F0A951;
    width: 7px;
    height: 7px;
    content: '';
    display: block;
    margin: 55%;
    border-radius: 50%;
    animation: look 8s infinite;
}
.spider .legs .leg{
    width: 80px;
    height: 40px;
    margin-top: -20px;
    border: 5px solid transparent;
    border-top-color: #F0A951;
    border-radius: 40px 40px 0 0;
}
.spider .legs{
    position: absolute;
    bottom: -2.5%;
    z-index: -1;
}
.spider .legs.left{
    left: -70%;
}
.spider .legs.right{
    right: -60%;
}
.legs.left .leg:nth-child(1){
    transform: rotate(10deg);
    margin-left: 10px;
}
.legs.right .leg:nth-child(1){
    transform: rotate(-10deg);
    margin-left: -10px;
}
.legs.left .leg:nth-child(2){
    transform: rotate(-20deg);
    margin-left: 20px;
}
.legs.right .leg:nth-child(2){
    transform: rotate(20deg);
    margin-left: -20px;
}
.legs.left .leg:nth-child(3){
    transform: rotate(-50deg);
    margin-left: 30px;
}
.legs.right .leg:nth-child(3){
    transform: rotate(50deg);
    margin-left: -30px;
}
@keyframes look{
    0%, 40%, 100%{
        transform: translateX(0); 
    }
    45%, 95%{
        transform: translateX(-110%);
}}
@keyframes swing{
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-40px);
}}
@keyframes spider{
    0%{
        top: -120%;
    }    100%{
        top: 26px;
}}
.blood{
    position: relative;
    transform: translate(-20px, -150px);
}
.blood div:nth-child(1){
    position: absolute;
    top: 75px;
    left: 30px;
    width: 75px;
    height: 60px;
    rotate: -20deg;
    border-radius: 45% 55% 67% 33% / 59% 38% 62% 41%;
    background-color: red;
}
.blood div:nth-child(2){
    position: absolute;
    top: 100px;
    left: 5px;
    width: 15px;
    height: 18.75px;
    border-radius: 50% 50% 64% 36% / 30% 48% 52% 70%;
    background-color: red;
}
.blood div:nth-child(3){
    position: absolute;
    top: 40px;
    left: 30px;
    width: 40px;
    height: 30px;
    rotate: 175deg;
    border-radius: 45% 10% 75% 25% / 70% 17% 83% 30% ;
    background-color: red;
}
.blood div:nth-child(4){
    position: absolute;
    top: 50px;
    left: 100px;
    width: 30px;
    height: 20px;
    border-radius: 37% 63% 63% 37% / 38% 59% 41% 62%;    
    background-color: red;
}
.blood div:nth-child(5){
    position: absolute;
    top: 120px;
    left: 100px;
    width: 10px;
    height: 20px;
    border-radius: 26% 74% 27% 73% / 56% 88% 12% 44% ;
    background-color: red;
}
.blood div{
    opacity: 0;
    box-shadow: 0 5px #151515;
    transition: all .3s;
}
@keyframes spiderDead{
    0%{
        opacity: 1;
        scale: .4;
    }    100%{
        opacity: 0;
        scale: 0;
    }}@keyframes stain{
    0%{
        opacity: 0;
        scale: 0;
    }    100%{
        opacity: 1;
        scale: 1;
    }}@keyframes ropeFell{
    0%{
        transform: translateY(0);
        rotate: 0;
    }    100%{
        transform: translate(200px, 1000px);
        rotate: 90deg;
    }}

.label{
    position: absolute;
    top: -8px;
    right: -8px;
    display: inline-block;
    border-radius: 2px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
    background: var(--blue);
    width: 150px;
    text-align: center;
    padding: 12px;
    padding-left: 30px;
    margin: 8px;
    font-weight: 600;
    font-size: 16px;
    color: white;
    transition: clip-path 500ms;
    overflow: visible;
}

[data-tooltip]{
    position: relative;
}

[data-tooltip]::before{
    top: 0px;
    border-left: 7.5px solid transparent;
    border-top: 7.5px solid var(--dark-blue);
    border-right: 7.5px solid transparent;
    height: 0px;
    width: 0px;
    content:'';
}
[data-tooltip-right]::before{
    right: 10px;
}
[data-tooltip-center]::before, [data-tooltip-center]::after{
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    text-align: center;
}
[data-tooltip-center]::after{
    left: 50%;
    transform: translateX(-50%);
}
[data-tooltip]::after{
    content: attr(data-tooltip);
    background: var(--dark-blue);
    border-radius: 4px;
    padding: 3px 6px;
    white-space: nowrap;
    color: white;
    font-size: 14px;
    top: -15px;
}
[data-tooltip-right]::after{
    right: 0px;
}
[data-tooltip]::after, [data-tooltip]::before{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
[data-tooltip]:hover::before{
    top: -10px;
    opacity: 1;
    visibility: visible;
    animation: .3s beforeDown 5s forwards;
}
[data-tooltip]:hover::after{
    top: -34px;
    opacity: 1;
    visibility: visible;
    animation: .3s afterDown 5s forwards;
}

@keyframes beforeDown{0%{top: -10px;opacity: 1;visibility: visible;}100%{top: 0;opacity: 0;visibility: hidden;}}
@keyframes afterDown{0%{top: -34px;opacity: 1;visibility: visible;}100%{top: -15px;opacity: 0;visibility: hidden;}}

/* Notifications */

.notification-holder{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0px;
    right: calc(50% - 60px);
    transform: translateX(50%);
    padding-bottom: 10px;
    overflow: hidden;
    z-index: 10;
}
.notification{
    display: flex;
    flex-direction: row;
    column-gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
}
.notification i{
    font-size: 16px;
}
.notification a{
    transition: color .3s ease;
}
.notification a:hover{
    color: var(--aqua)
}
.notification *{
    color: inherit;
}
.notification:not(:first-of-type){
    margin-top: 10px;
}

@keyframes notificationAnimate{
    0%{
        opacity: 0;
        max-height: 1px;
        transform: translateY(100px);
        scale: 0;
    }
    100%{
        opacity: 1;
        max-height: fit-content;
        transform: translateY(0px);
        scale: 1;
    }
}

/* Loading */
.loading{
    /* display: inline-block; */
    display: none;
    position: relative;
    width: 80px;    
    height: 80px;
    margin-top: -20px;
}
.loading div{
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: loading 1.2s linear infinite;
}
.loading div:nth-child(1){
    animation-delay: 0s;
    top: 37px;
    left: 66px;
}
.loading div:nth-child(2){
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
}
.loading div:nth-child(3){
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
}
.loading div:nth-child(4){
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
}
.loading div:nth-child(5){
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
}
.loading div:nth-child(6){
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
}
.loading div:nth-child(7){
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
}
.loading div:nth-child(8){
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
}
.loading div:nth-child(9){
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
}
.loading div:nth-child(10){
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
}
.loading div:nth-child(11){
    animation-delay: -1s;
    top: 62px;
    left: 52px;
}
.loading div:nth-child(12){
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
}
@keyframes loading{
    0%, 20%, 80%, 100%{transform: scale(1);}
    50%{transform: scale(1.5);}
}

/* Footer Waves */

.fWave{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("https://i.ibb.co/wQZVxxk/wave.png");
    background-size: 1000px 100px;
}

.fWave#wave1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
}

.fWave#wave2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
}

.fWave#wave3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
}

.fWave#wave4{
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
}

@keyframes animateWaves{0%{background-position-x: 1000px;}100%{background-positon-x: 0px;}}

@keyframes animate{0%{background-position-x: -1000px;}100%{background-positon-x: 0px;}}

/* Default Animations */

@keyframes popUp{
    0%{
        opacity: 0;
        transform: translateY(100px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes zoomIn{
    0%{
        opacity: 0;
        transform: scale(.3);
    }
    30%{
        /* opacity: 0; */
        display: inline-block;
        transform: scale(1.5);
    }
    70%{
        display: inline-block;
        transform: scale(.7);
    }
    100%{
        opacity: 1;
        display: inline-block;
        transform: scale(1);
    }
}

@keyframes resumePopUp{
    0%{
        opacity: 0;
        transform: translate(-50%, 100px);
    }
    100%{
        opacity: 1;
        transform: translate(-50%, 0px);
    }
}