/* debuggg, rm on production~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.debug-overlay{
    display: none;
}

.debug-overlay.show{
    display: block;
    position:absolute;
    z-index: 1111;
    top: 10px;
    width: 100%;
    height: auto;
    max-height: 50%;
    overflow: scroll;
    color:red;
    font-size: 0.5rem;
    font-family: 'Courier New', Courier, monospace;
}



audio.debug {
    position: absolute;
    z-index: 100000;
    bottom: 20px;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

@font-face {
    font-family: 'GT Pressura Mono';
    src: url('./fonts/pressura/gt-pressura-mono-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* disables refresh by scroll on modern browsers*/
html, body {
    overscroll-behavior: none;
}
/* Disable Refresh with pointer-events Hack */
html, body {
    touch-action: none; /* Disables touch scrolling */
}

body{
    margin: 0px;
    font-family: "GT Pressura Mono", monospace;
    font-size: 13vw;
}

.main{
    height: calc(var(--vh, 1vh) * 100);
    position:fixed;

}
body > div {
    height: 100vh;
    width: 100%;
}

.content-wrapper{
    height: 100%;
    width: 100%;    
}

.snooze-button-wrapper{
    text-align: center;

    position: absolute;
    bottom: calc(var(--poster-image-height-\%) * 22);
    right: calc(var(--poster-image-width-\%) * 9);
    margin-bottom: var(--poster-image-margin-y);
    margin-right: var(--poster-image-margin-x);
}

.snooze-button-wrapper[data-isActive="false"]{
    display: none;
}

.snooze-button{    
    border: 2px solid black;
    display: inline-block;
    border-radius: 16px;
    background-color: #cad3d0;
}

.snooze-button > span{
    font-size: 12vw;   
    line-height: 9vw;
    height: 14vw;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 0px 3vw;
    letter-spacing: 0.5vw;
}

.snooze-countdown-wrapper{
    font-size: 10vw;

    position: absolute;

    top: calc(var(--poster-image-height-\%) * 25);
    left: calc(var(--poster-image-width-\%) * 2);
    margin-top: var(--poster-image-margin-y);
    margin-left: var(--poster-image-margin-x);
}

.snooze-countdown-display{

}

.snooze-button, .snooze-countdown-display {
    transform: rotate(2deg);
}

.landing-poster-wrapper{ 
    /* opacity: 0; */
    height: 100%;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 0px;
    left: 0px;
}

.landing-poster{     
    height: 100%;
    width: 100%;
    background-image: url('./bg_landing_with_text-min.jpg');
    background-size: contain;
    background-position: center; 
    background-repeat: no-repeat; 
}

.alarm-background  {    
    z-index: -999;
}
.alarm-background > .landing-poster {
    background-image: url('./bg_alarm-min.jpg');
}