#volume-slider{
    width: 100%;
    appearance: none;
    height: 5px;
    background: grey;
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

#volume-slider:hover{
    opacity: 1;
}

#volume-slider::-webkit-slider-thumb{
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb{
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
}


#download-button{
    cursor: pointer;
}

.section-title{
    text-align: center;
    width: 55%;
}

.logo{
    height: 100%;
    width: auto;
}

.banner-container{
    width: 100%;
    position: relative;
    height: auto;
}

.video-container{
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border-width: 50px;
    border-color: white;
    z-index: 2;
}

#loading-icon{
    z-index: 10;
    width: 90%;
    height: 90%;
}


#loading-icon:after {
    content: " ";
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6.4px solid white;
    border-color: white transparent white transparent;
    animation: lds-dual-ring 2.2s linear infinite;
    background-image: url('media/DYS-Logo.svg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 15%;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#banner-video {
    width: 100%;
    z-index: 0;
}


#banner-sound-controls {
    position: absolute;
    bottom: 0%;
    left: 85%;
    height: auto;
    width: 13%;
    cursor: pointer;
    z-index: 3;
}

@media screen and (min-width:768px) {
    .mission-text{
        transform: translateY(-7vw);
    }
}


.ff-tabs{
    --grid-columns: 1fr 8fr;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width:768px) and (max-width:1199px) {
    .ff-tabs{
        margin-top: 50px;
        display: grid;
        grid-template-columns: var(--grid-columns);
    }
}

@media screen and (min-width:1200px) {
    .ff-tabs{
        margin-top: 50px;
        display: grid;
        grid-template-columns: var(--grid-columns);
    }
}

.ff-icon{
    align-self: flex-start;
    width: 60px;
}

@media screen and (min-width:768px) and (max-width:1199px) {
    .ff-icon{
        width: 100%;
    }
}

@media screen and (min-width:1200px) {
    .ff-icon{
        width: 100%;
    }
}

/* Kollagen */

.two-img{
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 2fr;
    grid-template-areas: 
        "left"
        "pend"
        "right";
}

.two-img > *:nth-child(1) {
    grid-area: left;
}

.two-img > *:nth-child(2) {
    grid-area: right;
}

.two-img > *:nth-child(3) {
    grid-area: pend;
}

@media screen and (min-width:768px) and (max-width:1199px) {
    .two-img{
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: 
            "left right"
            "left pend";
    }
}

@media screen and (min-width:1200px) {
    .two-img{
        display: grid;
        gap: 5px;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: 
            "left right"
            "left pend";
    }
}

/* RANDOM STYLE */  

.typing-text{
    position: absolute;
    top: 0;
    left: 0;
    font-family: SometypeMono;
    color: white;
}

.typing-text-duplicate{
    font-family: SometypeMono;
    visibility: hidden;
}

.image-display-1, .image-display-2{
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 10% 0;
    gap: 15px;
}

.image-display-1 > *:nth-child(1){
    transform: translateY(-20%);
}

.image-display-1 > *:nth-child(2){
    transform: translateX(20%);
}


.image-display-1 > *:nth-child(3){
    transform: translateX(-20%);
}

.image-display-1 > *:nth-child(4){
    transform: translateY(20%);
}

.image-display-2{
    margin: calc(100% / 6) 0;
}

.image-display-2 > *:nth-child(1){
    transform: translate(-10vw, -20%);
}

.image-display-2 > *:nth-child(2){
    transform: translateX(-5%);
}


.image-display-2 > *:nth-child(3){
    transform: translateX(5%);
}

.image-display-2 > *:nth-child(4){
    transform: translate(10vw, 20%);
}

.benefit-grid {
    display: grid;
    width: 100%;
    gap: 5px;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr;
}

@media screen and (min-width:768px) {
    .benefit-grid{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

.benefit-item {
    margin: 10px;
    position: relative;
}

.benefit-item-text{
    padding: 15px;
    height: calc(100% - 15px * 2);
    width: calc(100% - 15px * 2);
    position: absolute;
    background-color: black;
    border: 1px solid white;
    top: 0%;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.benefit-item-header{
    height: 100%;
}

.benefit-item-text:hover, .bi-hover {
    opacity: 1;
}

.apply-backdrop{
    transform: translate(400%, -200%) scale(5);
    top: 50%;
    left: 50%;
    z-index: 0;
}

.apply-special{
    flex-direction: column;
}

@media screen and (min-width:768px) {
    .apply-backdrop{
        transform: translate(300%, -50%) scale(10);
    }
    .apply-special{
        flex-direction: row;
    }
}

.accordion{
    position: relative;
    background-color: transparent;
    width: 100%;
    border: none;
}

.accordion::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50%;
    border-bottom: 2px solid white;
}

.accordion > span:nth-child(1) {
    text-align: left;
    margin: 25px 0px;
}

.accordion > span:nth-child(2) {
    font-size: 26px;
    margin: 5px 5px 5px 20px;
}

.acc-active, .accordion:hover{
    background-color: rgba(255,255,255, 0.2);
}

.panel {
    max-height: 0;
    margin: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out, margin 0.2s ease-in-out;
}

.footer-responsive{
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.partner{
    display: grid;
    grid-auto-flow: row;
    align-items: center;
    gap: 5vw;
    margin: 10vh 0;
}

@media screen and (min-width:768px) {
    .partner{
        grid-template-columns: repeat(3, 1fr);
    }
}

.moons-container{
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    margin: 10vh 0;
    align-items: center;
}

.grid-area-debug {
    background-color: rgba(255, 0, 0, 0.5); /* semi-transparent red */
    color: white;
    text-align: center;
    line-height: 100px; /* adjust this to vertically center the text */
}


@keyframes animation_transparentBlur {
    from{
        filter: opacity(100%);
        transform: translateY(100%);
    }
    to{
        filter: opacity(50%) blur(3px);
        transform: translateY(0%);
    }
}

.animation_fadeBlur{
    animation-name: animation_transparentBlur;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

@media screen and (min-width: 1199px) {
    #memberPriceText{
        margin-right: 5vw;
    }
}

.city-container {
    position: relative;
    display: flex;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 25px;
    scrollbar-width: thin !important;
}

.city-container.city-all {
    column-width: 25em;
    display: block;
}

.container-container {
    position: relative;
}

.city-card {
    position: relative;
    flex: 1 1 15em;
    overflow: hidden;
    min-width: 15em;
}

.city-card-img-container {
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 15em;
}

.city-card img {
    object-fit: cover;
    filter: grayscale(1);
    width: 100%;
    height: 100%;
}
