
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Hanken Grotesk", serif;
}
#frame-container {
width: 100%;
height: 100vh;
background-size: cover;
background-position: center;
border: 1px solid #ccc;
transition: background-image 0.1s ease-in-out;
}
.control-reload-container{
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: #282827;
    padding: 5px;
    display: flex;
    align-items: center;
}
.control-reload-container > button{
    background: transparent;
    border: none;
    cursor: pointer;
}
.progress-bar-container{
    bottom: 50px;
    left: 50%;
    width: 35%;
    height: 50px;
    position: absolute;
    gap: 5px;
    display: flex;
    transform: translateX(-50%);
    align-items: center;

}

.hour-bar-container{
    bottom: 0px;
    left: 49%;
    width: 26%;
    height: 50px;
    position: absolute;
    gap: 5px;
    display: flex;
    flex-direction: column;
    transform: translateX(-50%);
    align-items: center;
}
.progress-bar{
width: 100%;
display: flex;
align-items: center;
background: url('./360/imagens/telas_rem_03.png');
background-repeat: no-repeat;
background-size: 100% 100%;
height: 22px;
}

#progress-bar {
    display: block;
    appearance: none;
    background: transparent;
    width: 100%;
}
#progress-bar::-webkit-slider-thumb {
appearance: none;
width: 2.8px;
height: 30px;
background: #f9e2d2;
cursor: pointer;
border-radius: 5px;
}

#progress-bar::-moz-range-thumb {
position: relative;
width: 2.8px;
height: 30px;
background: #f9e2d2;
cursor: pointer;
}