body {
    font-family: "Roboto", sans-serif;
}

a:hover {
    text-decoration: none;
}

.img-container {
    position: relative;
}

.img-container img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
}

.img-container img:first-child {
    position: relative;
}

.img-container img.next {
    opacity: 1;
    z-index: 1;
}

.img-container img.prev {
    opacity: 1;
    z-index: 2;
}

.img-container img.fade-out {
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s linear;
    visibility: hidden;
}

.img-container span {
    opacity: 1;
    z-index: -1;
}

.img-container span.next {
    opacity: 1;
    z-index: 1;
}

.img-container span.prev {
    opacity: 1;
    z-index: 2;
}

.img-container span.fade-out {
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s linear;
    visibility: hidden;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
}

.date-badge {
    position: absolute;
    right: 0;
    bottom: 0;
}

.badge {
    border-radius: 0px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
