* {
    overflow: hidden;
    box-sizing: border-box;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: "Afacad Flux",sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    height: 100dvh;
    width: 100dvw;
    margin: 0;
    padding: 0;
    background-color: var(--background-50);
    color: var(--text-950)
}

.hide {
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important
}

.home-layout {
    box-sizing: border-box;
    z-index: 10000;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden
}

.verification {
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    height: auto;
    position: relative;
    width: auto;
    background-color: var(--background-100);
    border-radius: 1.5rem
}

.verification-content {
    position: relative;
    height: auto;
    width: auto
}

.video-layout {
    display: none;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center
}

#video1 {
    height: 90%;
    width: auto;
    object-fit: contain;
    margin: auto;
    padding: 0;
    display: inline-flex;
    border-radius: 1.5rem;
    box-sizing: border-box;
    pointer-events: none;
    transition: none;
    -o-transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -ms-transition: none
}

#video1:focus {
    outline: 0
}

#video2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    object-fit: cover;
    filter: brightness(0.6) blur(50px)
}

.stop-rr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1000;
    border-radius: 1000px;
    backdrop-filter: blur(10px) brightness(0.5);
    font-weight: 400;
    color: var(--text-950);
    padding: .2rem 1rem;
    cursor: pointer;
    opacity: 0
}

.stop-rr:hover {
    opacity: 1
}

.stop-rr:active {
    transform: scale(0.95) translate(-50%,-50%);
    filter: brightness(1.8) saturate(1.5) blur(0.5px)
}

@media(max-width: 550px) {
    .verification {
        max-width:80%
    }
}

@media(max-width: 768px) {
    #video1 {
        height:auto;
        width: 90%;
        pointer-events: auto !important
    }
}

@media(orientation: portrait) {
    #video1 {
        height:auto;
        width: 90%;
        pointer-events: auto !important
    }
}

.loading {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: auto
}

.loading svg {
    -webkit-animation: rotate 2s linear infinite;
    -moz-animation: rotate 2s linear infinite;
    -o-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite
}

@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

.loading circle {
    stroke: var(--primary-500);
    stroke-dasharray: 150,200;
    stroke-dashoffset: -10;
    stroke-width: 5;
    fill: none;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
    height: auto;
    width: auto
}

@keyframes dash {
    0 {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -35
    }

    100% {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -124
    }
}

.loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-950)
}

.snow-container {
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    position: fixed;
    overflow: hidden;
    opacity: .1;
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    pointer-events: none
}

.snowflake {
    animation: fall linear 1 forwards;
    -webkit-user-select: none;
    box-sizing: border-box;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    pointer-events: none;
    position: absolute;
    user-select: none;
    font-size: 12px;
    opacity: .8;
    top: -10px
}

@keyframes fall {
    from {
        transform: translateY(0) rotate(0);
        opacity: .8
    }

    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0
    }
}

.message {
    position: absolute;
    bottom: -20rem;
    left: 50%;
    transform: translate(-50%,-50%);
    backdrop-filter: blur(20px) brightness(0.4);
    font-weight: 500;
    color: var(--text-950);
    padding: .2rem 1rem;
    border-radius: 1rem;
    -webkit-animation: moveUp 2s 1 ease-in-out forwards;
    -moz-animation: moveUp 2s 1 ease-in-out forwards;
    -o-animation: moveUp 2s 1 ease-in-out forwards;
    animation: moveUp 2s 1 ease-in-out forwards
}

@-webkit-keyframes moveUp {
    from {
        bottom: -20rem
    }

    70% {
        bottom: 1.5rem
    }

    85% {
        bottom: .9rem
    }

    to {
        bottom: 1rem
    }
}

@-moz-keyframes moveUp {
    from {
        bottom: -20rem
    }

    70% {
        bottom: 1.5rem
    }

    85% {
        bottom: .9rem
    }

    to {
        bottom: 1rem
    }
}

@-o-keyframes moveUp {
    from {
        bottom: -20rem
    }

    70% {
        bottom: 1.5rem
    }

    85% {
        bottom: .9rem
    }

    to {
        bottom: 1rem
    }
}

@keyframes moveUp {
    from {
        bottom: -20rem
    }

    70% {
        bottom: 1.5rem
    }

    85% {
        bottom: .9rem
    }

    to {
        bottom: 1rem
    }
}

.message.hideMessage {
    animation: moveDown 2s 1 ease-in-out forwards
}

@-webkit-keyframes moveDown {
    from {
        bottom: 1rem
    }

    15% {
        bottom: 1.1rem
    }

    80%,to {
        bottom: -20rem
    }
}

@-moz-keyframes moveDown {
    from {
        bottom: 1rem
    }

    15% {
        bottom: 1.1rem
    }

    80%,to {
        bottom: -20rem
    }
}

@-o-keyframes moveDown {
    from {
        bottom: 1rem
    }

    15% {
        bottom: 1.1rem
    }

    80%,to {
        bottom: -20rem
    }
}

@keyframes moveDown {
    from {
        bottom: 1rem
    }

    15% {
        bottom: 1.1rem
    }

    80%,to {
        bottom: -20rem
    }
}

.btn {
    transition: filter .25s ease-in-out
}

.btn:focus,.btn:hover {
    filter: brightness(0.45) saturate(1.5);
    box-shadow: none !important
}

.progress {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: transparent
}

.progress-bar {
    -webkit-transition: width .15s ease-in-out;
    -moz-transition: width .15s ease-in-out;
    -o-transition: width .15s ease-in-out;
    transition: width .15s ease-in-out;
    width: 0;
    height: 100%;
    border-radius: 1.5rem;
    position: relative;
    background-color: transparent;
    filter: brightness(0.6);
    backdrop-filter: blur(20px)
}

#ms {
    display: none;
    transition: all .25s ease-in-out;
    border-radius: 1rem;
    padding: .25rem 1rem;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--text-950);
    backdrop-filter: blur(5px) brightness(0.6) saturate(1.5)
}
