.key-notes{
    box-shadow:0 0 5px #464646;
    padding:5px 10px;
    border-radius: 5px;
}

.flower-left{
    left:-200px;
}

.flower-right{
    right:-80px
}


.flower-left-img{
    position: fixed;
    width: 200px;
    opacity: .5;
    left:0px;
    top:80%;
    filter: invert(50%) sepia(100%) saturate(10207%) hue-rotate(-9deg) brightness(295%) contrast(100%);
    animation:shakeLeft 10s alternate-reverse infinite;
    animation-delay: 1s;
    transform-origin: bottom;
}

.event-invitee-card{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.flower-left-img-1{
    position: fixed;
    width: 200px;
    opacity: .5;
    right:0px;
    top:80%;
    filter: invert(50%) sepia(100%) saturate(10207%) hue-rotate(-9deg) brightness(295%) contrast(100%);
    transform: scaleX(-1);
    animation:shakeRight 10s alternate-reverse infinite;
    transform-origin: bottom;
}


/* animation */
@keyframes shakeRight {
    0%{
        transform:scaleX(-1) rotate(0deg);
    }
    25%{
        transform: scaleX(-1) rotate(2deg);
    }
    50%{
        transform: scaleX(-1) rotate(-2deg);
    }
    100%{
        transform: scaleX(-1) rotate(0deg);
    }
}

@keyframes shakeLeft {
    0%{
        transform: rotate(0deg);
    }
    25%{
        transform: rotate(2deg);
    }
    50%{
        transform: rotate(-2deg);
    }
    100%{
        transform: rotate(0deg);
    }
}


.flower-right-img{
    width: 100px;
    opacity: .8;
    transform: rotateZ(260deg);
}

.circle{
    height:1000px;
    width: 1000px;
    border-radius: 50%;
    top:0%;
    border-radius: 50% ;
    left:0;
    z-index: -1;
    animation: spinner 122s linear infinite;
    border:20px solid #FFD700;
    transform-origin: left;
    opacity: .1;
}

.circle1{
    height:1000px;
    opacity: .1;
    top:50%;
    width: 1000px;
    border-radius: 50% ;
    animation: spinner 122s linear infinite;
    border:20px solid #FFD700;
    transform-origin: top;
    z-index: -1;
}

.circle2{
    height:1000px;
    width: 1000px;
    opacity: .2;
    transform-origin: right;
    left:-50%;
    border-radius: 50%;
    animation: spinner 122s linear infinite;
    z-index: -1;
    border:20px solid #FFD700;
}

.circle3{
    height:1000px;
    width: 1000px;
    z-index: -1;
    opacity: .2;
    right:-50%;
    border-radius: 50%;
    border:20px solid #FFD700;
    animation: wobble 10s linear infinite;
}

.circle4{
    height:1000px;
    z-index: -1;
    width: 1000px;
    opacity: .2;
    top:10%;
    right:0%;
    border-radius: 50%;
    border:20px solid #FFD700;
    animation: wobble 10s linear infinite;
    animation-delay: 5s;
}


.event-invitee-card{
    height:max-content; 
    backdrop-filter: blur(10px);
}

.view-event-invitee-details-btn{
    background:#ff5454;
    border-radius: 5px;
    color:#fff;
}

.view-event-invitee-details-btn:hover{
    background:#ff4949;
    border-radius: 5px;
    color:#fff;
}


/* animation */
@keyframes spinner {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes wobble {
    0%{
        transform: translate(0%,0%);
    }
    50%{
        transform: translate(-1%,-5%);
    }
    100%{
        transform: translate(0%,0%);
    }
}