*{
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'ADLaM Display','Play';
    /* font-family: ; */
}
/* ::-webkit-scrollbar {
    width: 16px; 
    height: 16px; 
} */
body{
    width: 100vw;
    height: 100vh;
}


#language-container, #request-container{
    width: 100vw;
    height: 100vh;
}
.btn-cyan:hover, .btn-cyan:active{
    border: solid 1px #A7EBF6;
    color: #A7EBF6;
}
.exclamation_mark{
    font-size: 25vw;
}
@media screen and (orientation: portrait) {
    #request-container {
        display: flex;
    }
    #language-container .btn {
        width: 25vh;
        height: 25vh;
        font-size: 10vh;
    }
    #language-container div {
        flex-direction: column;
    }
}

@media screen and (orientation: landscape) {
    #request-container {
        display: none;
    }
    #language-container .btn {
        width: 25vw;
        height: 25vw;
        font-size: 10vw;
    }
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    color: white;
    border-radius: 15px;
  }
  .popup-content {
    text-align: center;
    font-size: 5vw;
  }
  /* .popup-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
} */
  .menu {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background: rgba(0, 0, 0, 0.8); */
    padding: 20px;
    color: white;
    border-radius: 15px;
    max-height: 80vh;
    overflow: auto;
  }
  .menu-content {
    text-align: center;
    font-size: 5vw;
  }
  /* .menu-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, rgba(60, 255, 239, 0.603), transparent);
    pointer-events: none;
} */

  #loading{
    overflow: hidden;
}
  #loading div{
    overflow: hidden;
    width: 100px;
    height: 100px;
}

.form-range {
    --bs-form-range-track-height: 0.5rem;
    --bs-form-range-track-bg: #A7EBF6; /* Цвет фона */
    --bs-form-range-thumb-bg: #3B8C8C; /* Цвет ползунка */
    --bs-form-range-thumb-border: none;
    --bs-form-range-thumb-width: 1.5rem;
    --bs-form-range-thumb-height: 1.5rem;
}
  
.typing-effect {
    /* width: 0; */
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid;
    animation: typing 5s steps(40, end), blink-caret .75s step-end infinite;
}

.promt{
    position: fixed;
    top: 10px; 
    left: 10px; 
    z-index: 1000; 
    display: none;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: black; }
}