body {
    background-color: #fafafa;
    margin: 0;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    font-size: 16px;
    max-width: none;
}

.folders {
    max-width: 30vh;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 71, .5);
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 20px;
    padding: 18px 0;
    overflow-y: auto;
}

.dates {
    max-width: 25vh;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 71, .2);
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px 0;
    font-size: 16px;
    line-height: 20px;
    overflow-y: auto;
}

.gallery {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
}


.folders div,
.dates div {
    width: 100%;
    padding: 2px 0;
}

.folders a,
.dates a {
    padding: 5px 20px;
    display: block;
    width: 100%;
    color: #FFFFFF;
    text-decoration: none;
}

.folders a:hover,
.folders a.on,
.dates a:hover,
.dates a.on {
    background-color: #0a0a47;
}

.thumbnails {
    display: flex;
    margin: 1rem auto 0;
    padding: 0;
    justify-content: center;
}

.thumbnail {
    width: 70px;
    height: 70px;
    overflow: hidden;
    list-style: none;
    margin: 0 0.2rem;
    cursor: pointer;
    opacity: 0.3;
}

.thumbnail.is-active {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: auto;
}

.splide {
    width: 100%;
}

.splide__slide {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.splide__slide img {
    width: auto;
    height: calc(100vh - 70px);
}

#main-carousel {
    height: calc(100vh - 70px);
    overflow: hidden;
}

.images-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    margin: 5px;
    padding: 0;
}

.images-item {
    position: relative;
    height: 220px;
    margin: 5px;
}

.images-item img {
    height: 220px;
    /*border: solid 1px red;*/
}

.images-item span.index {
    font-family: Verdana;
    font-size: 9px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 1);
    color: rgba(10, 10, 71, 1);
    padding:
}

.images-item span.name {
    font-family: Verdana;
    font-size: 9px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 1);
    color: rgba(10, 10, 71, 1);
    padding:
}


