*{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}
.container {
    position: relative;
    background: #aad5f6;
}



.slide-portrait {
    width: 100vw;
    height: 100vh;
    background-size: contain;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow-x: hidden;
}

.slide {
}

.slide-landscape {
    width: 100vw;
    height: 100vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    position: relative;
    overflow-x: hidden;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 100;
    background: rgba(0, 0, 0, .1);
    border-radius: 50%;
    transform: background 500ms;
}
.nav {
    position: absolute;
    top: 1%;
    left: 1%;
    height: 50px;
    width: 400px;
    z-index: 100;
}
.metatoggle {
   cursor: pointer;
   background: rgba(0, 0,0, .1);
   border-radius: 50%;
   font-size: 25px;
   z-index: 100;
   width: 50px;
   height: 50px;
   text-align: center;
   vertical-align: middle;
   line-height: 50px;
   float: left;
}
.spacer {
    width: 20px;
    height: 50px;
    z-index: 100;
    float: left;
}
.galtoggle {
    cursor: pointer;
    background: rgba(0, 0,0, .1);
    border-radius: 50%;
    font-size: 25px;
    z-index: 100;
    width: 50px;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    float: left;
}

.copied {
    position: absolute;
    height: 40px;
    z-index: 100;
    background: #ffcc00;
    padding-top: 10px;
    padding-bottom: 10px;
}

.gal {
    position: absolute;
    height: 33%;
    width: 100%;
    z-index: 95;
    top: 33%;
    font-size: 200px;
    background: rgba(0, 0, 0, 0.6);
    vertical-align: middle;
    padding-top: 50px;
    padding-bottom: 50px;
}
.gal-row {
    width: 100%;
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    overflow: auto;
}

.gal-row::-webkit-scrollbar {
    height: 5px;
}

.gal-row::-webkit-scrollbar-track {
    background: #555;
}

.gal-row::-webkit-scrollbar-thumb {
    background: #888;
}

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

.gal-frame {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: 100%;
    position: absolute;
}

.gal-thumb {
    height: 100%;
}
.arrow img {
    width: 50px;
}
.arrow:hover {
    background: rgba(0, 0, 0, .4);
}
.l {
    left: 0;
}
.r {
    right: 0;
}

.caption {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    position: absolute;
    top: 75%;
    padding: 40px 0px;
    height: clamp(100px, 0.2vh, 0.2vh);
}
.caption p {
    text-align: right;
    font-size: clamp(12px, 2vh, 18px);;
    width: 95%;
    color: #f0f0f0;
    font-family: "Barlow Condensed", sans-serif;
}

.caption .info {
    text-align: right;
    font-size: clamp(10px, 2vh, 18px);;
    color: #a9a9a9;
    font-family: "Barlow Condensed", sans-serif;
}
.caption .title {
    text-align: right;
    font-size: clamp(14px, 3vh, 24px);
    color: #f0f0f0;
    font-family: "Barlow Condensed", sans-serif;
}

.clipboard-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #ffcc00;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.clipboard-notification.show {
    opacity: 1;
}