body {
    /* margin: 0px;
    overflow: hidden;
    color: white;
    text-align: center; */

    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #444444;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

h1 {
    position: absolute;
    width: 100%;
    z-index: 1;
    font-size: 1.5rem;
}

a {
    color: white;
}
a:hover{
    color: purple;
}

#scene-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.drag-notice {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    width: 10em;
    height: 10em;
    box-sizing: border-box;
    font-size: 0.9em;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    border-radius: 5em;
    background: white;
    position: absolute;
    font-size: 13px;
    color: #444444;
}
.drag-notice.start {
    -webkit-animation: popout 0.25s 3s forwards;
    animation: popout 0.25s 3s forwards;
}

@-webkit-keyframes popout {
    to {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes popout {
    to {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

.frame {
    right: 0;
    top:0;
    position: absolute;
    padding: 1rem;
}
.info{
    bottom:0;
    position: absolute;
    padding: 1rem;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.info img{
    height: 70px;

    margin-bottom: 5px;
}
.info div{
    font-size: 15px;
    color: #040404;
}
.info:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 550px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}


.btn_info{
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.btn_info img{
    width: 100%;
    height: 100%;
}

.popup {
    position: fixed;
    background: rgba(0, 0, 0, 0.80);
    left: 20px;
    bottom: 70px;
    z-index: 999999;
    display: none;
    width: 350px;
    height: 50%;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 0.4rem;
    width: 100%;
    border-radius: 0.5rem;
    height: 100%;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.close-button {
    width: 35px;
    height: 35px;
    position: absolute;
    border-radius: 50%;
    top: -15px;
    right: -15px;
    background: #ffffff;
    border: unset;
    cursor: pointer;
}
.close-button:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #00b8ff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: ease-out 0.3s all;
}
.close-button:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #00b8ff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: ease-out 0.3s all;
}
.close-button:hover:before, .close-button:focus:before {
    transform: translate(-50%, -50%) rotate(135deg);
}
.close-button:hover:after, .close-button:focus:after {
    transform: translate(-50%, -50%) rotate(225deg);
}

#content{
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 90%;
    text-align: justify;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.change_lang{
    position: absolute;
    left: 10px;
    top: 10px;
    display: flex;
}

.change_lang a {
    text-decoration: none;
    background: transparent;
    padding: 5px;
    width: max-content !important;
    border: 1px solid white;
}

.change_lang a.active, .change_lang a:hover {
    background: #ff0000;
    color: #ffffff;
}

.control_audio{
    height: 40px;
    width: 300px;
    margin-left: 10px;
}

.control_audio audio{
    height: 100%;
    width: 100%;
}

.list_img {
    display: block;
    margin: 0 auto;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.list_img .slider-for{
    height: 80vh;
}

.list_img .slider-nav{
    max-height: 20vh;
    min-height: 20vh;
    margin-bottom: 0;
}

.slider-for img {
    display: block;
    width: 100%;
    object-fit: contain;
    /*aspect-ratio: 16/9;*/
    min-height: 80vh;
    max-height: 80vh;
}

.slider-nav img{
    display: block;
    width: 98%;
    object-fit: cover;
    aspect-ratio: 16/9;
}


/*custom audio*/
.audio-player {
    height: 40px;
    width: 300px;
    background: #f1f3f4;
    color: #393838;
    font-size: 0.75em;
    overflow: hidden;
    display: grid;
    grid-template-rows: 6px auto;
    margin-left: 10px;
    border-radius: 50px;
}
.audio-player .timeline {
    background: #c1c2c3;
    width: 96%;
    margin-left: 2%;
    position: relative;
    cursor: pointer;
}
.audio-player .timeline .progress_audio {
    background: #000;
    width: 0%;
    height: 100%;
    transition: 0.25s;
}
.audio-player .controls {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 20px;
}
.audio-player .controls > * {
    display: flex;
    justify-content: center;
    align-items: center;
}
.audio-player .controls .toggle-play.play {
    cursor: pointer;
    position: relative;
    left: 0;
    height: 0;
    width: 0;
    border: 7px solid #f1f3f4;
    border-left: 13px solid #000;
}
.audio-player .controls .toggle-play.play:hover {
    transform: scale(1.1);
}
.audio-player .controls .toggle-play.pause {
    height: 15px;
    width: 20px;
    cursor: pointer;
    position: relative;
}
.audio-player .controls .toggle-play.pause:before {
    position: absolute;
    top: 0;
    left: 0px;
    background: #000;
    content: "";
    height: 15px;
    width: 3px;
}
.audio-player .controls .toggle-play.pause:after {
    position: absolute;
    top: 0;
    right: 8px;
    background: #000;
    content: "";
    height: 15px;
    width: 3px;
}
.audio-player .controls .toggle-play.pause:hover {
    transform: scale(1.1);
}
.audio-player .controls .time {
    display: flex;
}
.audio-player .controls .time > * {
    padding: 2px;
}
.audio-player .controls .volume-container {
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.audio-player .controls .volume-container .volume-button {
    height: 26px;
    display: flex;
    align-items: center;
}
.audio-player .controls .volume-container .volume-button .volume {
    transform: scale(0.7);
}
.audio-player .controls .volume-container .volume-slider {
    position: absolute;
    left: -3px;
    top: 9px;
    z-index: -1;
    width: 0;
    height: 15px;
    background: #c1c2c3;
    /*box-shadow: 0 0 20px #000;*/
    transition: 0.25s;
}
.audio-player .controls .volume-container .volume-slider .volume-percentage {
    background: #595959;
    height: 100%;
    width: 75%;
}
.audio-player .controls .volume-container:hover .volume-slider {
    left: -123px;
    width: 120px;
}
/*end custom audio*/

.touch_the_screen{
    position: absolute;
    color: #ffffff;
    top: 10px;
}


.content_text{
    width: 60%;
    height: 80%;
    overflow: auto;
    color: #ffffff;
    text-align: justify;
    padding-right: 10px;
    margin: 15px;
    line-height: 1.5;
}

/* reponsive */


@media screen and (max-width: 1024px){
    .list_img{
        width: 90%;
        height: unset;
    }
}

@media screen and (max-width: 580px){
    .popup-content{
        top: unset;
        left: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0;
        transform: unset;
        height: 100%;
    }

    .close-button{
        right: 15px;
        top: -40px;
    }

    .popup{
        left: 0;
        width: 100%;
        height: 50%;
    }

    .control_audio {
        width: 250px;
    }

    .list_img {
        width: 88%;
        height: auto;
    }

    .btn_info{
        margin-bottom: 1px;
    }

    .slick-prev {
        left: -22px !important;
    }

    .slick-next {
        right: -22px !important;
    }

    .audio-player{
        width: 250px;
    }

    .content_text {
        width: 100%;
    }

}

@media screen and (max-width: 500px){
    .audio-player {
        background: #575656ed;
        color: #c1c2c3;
        margin-left: 15px;
    }

    .audio-player .controls .toggle-play.play {
        border: 7px solid #5b5a5a;
        border-left: 13px solid #c1c2c3;
    }

    .audio-player .controls .volume-container .volume-button .volume {
        color: #c1c2c3;
    }

    .audio-player .controls .volume-container .volume-slider{
        background: #6b6a6a;
    }

    .audio-player .controls .volume-container .volume-slider .volume-percentage {
        background: #c1c2c3;
    }

    .audio-player .timeline {
        background: #6b6a6a;
    }

    .audio-player .timeline .progress_audio {
        background: #c1c2c3;
    }

    .audio-player .controls .toggle-play.pause:before, .audio-player .controls .toggle-play.pause:after{
        background: #c1c2c3;
    }

    .touch_the_screen{
        top: 50px;
    }

    .list_img .slider-for{
        margin-bottom: 0;
    }
}


.group_control{
    position: absolute;
    left: 15px;
    bottom: 15px;
    display: flex;
    align-items: end;
}
