@font-face {
    font-family: 'LabGrotesque'; /*a name to be used later*/
    src: url('assets/fonts/LabGrotesque-Thin.woff2'); /*URL to font*/
}
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /*overflow: hidden;*/
}
.overlay{
    position: absolute;
    width: 300px;
    height: 200px;
    background-color: #b66dff42;
    text-align: center;
    color: white;
    background-color: #1df7ba;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.placeButton{
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 0.8em;
    font-family: 'LabGrotesque';
    font-weight: 900;
}
.fadeButton{
    animation-duration: 0.5s;
    animation-name: buttonClick;
}
@keyframes buttonClick {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}
.fadeButtonIn{
    animation-duration: 0.5s;
    animation-name: openClick;
    /*animation-iteration-count: infinite;*/
}

@keyframes openClick {

    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

}
.placeBoxDirection{
    border-style: solid;
    border-width: 1px;
    border-color: #1df7ba;
    border-radius:20px;
    color: white;
    display:table;
    font-size: 1.2em;
    font-family: 'LabGrotesque';
    font-weight: 900;
    width: 60vw;
    height: 20vw;
    margin:0 auto;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
}
.placeBoxDirection p{
    display:table-cell;
    vertical-align:middle;
    text-align:center;
    padding: 0 15px;
}
#myConfirmButton{
    display: none;
}
#openBoxButton{
    display: none;
}
.actionButton{
    width: 75vw;
    height: 14vw;
    border-radius: 1vw;
    position: absolute;
    background-color: #1df7ba;
    /* top: 50%; */
    border: 2px solid #c8c8c84f;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    font-family: 'LabGrotesque';
    font-weight: 900;
    color: #01024e;

}
.videoElement{
    display: none;
    position: absolute;
    top: 0;
    transform: scale(0.5, 0.5);
}
.discription{
    text-align: center;

    border-radius: 3vw;
    width: 75vw;
    height: 25vh;
    background-color: white;
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.discription img{
    position: absolute;
    top: -22vw;
    left: 19vw;
    width: 45%;
}
.discriptionTile{

    bottom: 2%;
    left: 50%;
    margin-top:10vh; 
    font-size: 1.4em;
    font-family: arial;
    font-weight: 600;
    color: #8f3ce4;
}
.discriptionBody{
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8em;
    color: #748383;
    font-family: 'LabGrotesque';
    font-weight: 900;

}
#cameraDiscription{
    display: none;
}
#restDiscription{
    display: none;
}
.track {
    stroke-width: 10;
    stroke: lightgrey;
    fill: rgb(250, 250, 250);
}
.trackscale{
    stroke: rgba(169, 238, 243, 0.47);
    fill: rgba(169, 238, 243, 0.47);
    stroke-width: 0px;
}
.progress {
    stroke-width: 10;
    stroke: rgb(29, 247, 186);
    stroke-linecap: round;
    stroke-dasharray: 510;
    stroke-dashoffset:510;
    fill:none;
    transform: rotate(270deg);
    transform-origin: center;
}

.presText{
    position: absolute;
    bottom: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    text-align: center;
    color: #000000;
}
.prograssContainer{
    position: absolute;
    bottom: -7%;
    left: 50%;
    transform: translate(-50%, 0%) scale(0.7);
    transform-origin: center;
    display: none;
}
#pressingText{
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9vw;
    text-align: center;
    color: white; 
}

#wishText{
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9vw;
    text-align: center;
    color: white;  
}

.recordButton{
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.4);
    font-size: 1.2em;
    z-index: 10;
}
.recordOut{
    stroke-width: 5;
    stroke: rgb(255 255 255);
    fill: rgba(250,  255,  255,0.2);
}
.recordIn{
    stroke-width: 0;
    stroke: rgb(250, 250, 250);
    fill: rgb(255 255 255 / 24%);
}

#stopRecordIn{
    animation: recordIn 0.3s infinite alternate; 
}
@keyframes recordIn {
    100% {
        stroke-width: 10;
    }
}
.recordingTime{
    color: red;
    position: absolute;
    width: 100%;
    font-size: 1.5em;
    text-align: center;
    margin: 0px auto;   
}
.recordText{
    position: absolute;
    top: 0;
    font-size: 1.5em;
    display: flex;
    width: 100%;
    height: 100%;
    margin: auto;
    align-items:center;
    justify-content:center;
}
#strtRecord{
    display: block;
}
#stopRecord{
    display: none;
}
#recordingSection{
    display: none;
}
#displayTime{
    display: none;
}
#captureVdieo{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
}
.videoContainer{
    z-index: 5;
    position: absolute;
    width: 100%;
    height:100%;
    background-color: #191a1de0;
    display: none;

}
.icons{
    display: flex;
    justify-content: space-between;  
    position: fixed;
    width: 55%;
    left: 50%;
    bottom: 2vh;
    transform: translate(-50%, -50%);
    z-index: 2
}
.coloricon{
    font-size: 5vw;
    color: white;
}
.coloricon img{
    background-color: white;
    width: 10vw;
    border-radius: 25%;
    padding: 2vw;
}
#shareIcon div{
    background-color: #1df7ba;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    z-index: -1;
    border-radius: 100%;  
}
.blowSection{
    z-index: 20;
    display: none;
}
.blowSection img{

    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
}
#blowButton{
    z-index: 20;
    width: 70vw;
    border-radius: 20px;
    position: absolute;
    background-color: #1df7ba;
    border: 2px solid #c8c8c84f;
    bottom: -1%;
    left: 50%;
    color: #000b38;
    transform: translate(-50%, -50%) ;
    font-size: 1em;
    padding: 10px;
    font-family: 'LabGrotesque';
    font-weight: 900;
}
#overlay_padjipbilemhhpppjmkabednoeiaaaac{
    background-color: rgb(0 0 0) !important;
}
.zappar-permission-request{
    background-color: rgb(0 0 0) !important;
    color: #1df7ba !important;
    background: url(assets/images/birthdaySplash.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.zappar-inner > button {
    color: #1df7ba !important;  
    border: 2px solid #1df7ba !important;
}
div:has(#zappar-loader-inner) { 
    background-color: rgba(0, 0, 0, 1) !important;
}
#zappar-loader-inner:parent(div) {
    background-color: rgba(0, 0, 0, 1) !important;

}

#imageOverlay>img{
    position: absolute;
    top: 0;
    height: 17%;
    width: 100%;
}

#imageOverlay{
z-index: 2;
    top: 0;
    width: 100%;
    margin: 0;
}