@media screen and (max-width: 769px) {
    #leftbar {
        position: fixed;
        width: 80vw;
        height: 100vh;
        top: 0;
        transform: translateX(-100%);
        background-color: #fff;
        display: flex;
        flex-direction: column;
        padding-bottom: 5vh !important;
        z-index: 999999;
    }

    #leftbar.expand {
        animation: slide-in 0.5s forwards;
    }

    #leftbar > div:nth-of-type(1) {
        flex: 1;
        min-height: 0;
        padding-right: 8px;
        overflow-y: auto;
    }

    #leftbar > div:nth-of-type(2) > div {

    }

    .filter-bar-overlay {
        display: block;
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999998;
    }
}

@keyframes slide-in {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

select {
    border: none;
    box-shadow: none;
    border-bottom: solid 1px #faaf56;
    border-radius: 0px;
}

@media screen and (max-width: 769px) {
    .imagetxt-2 {

    }

    .imagetxt-2 > img {
        height: 30rem !important;
        object-fit: cover;
    }

    .imagetxt-2 > .txt {
        position: absolute;
        top: 50%;
        left: 30%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 24px;
        font-weight: bold;
        padding-left: 10rem !important;
        width: 100% !important;
    }

    .imagetxt-2 > .txt > span:nth-of-type(1) {
        font-size: 2rem !important;
    }
    .imagetxt-2 > .txt > span:nth-of-type(2) {
        font-size: 1rem !important;
    }

    .imagetxt-2.news {
        width: 100%;
    }

    .imagetxt-2.news > img {
        height: 10rem !important;
    }
}

.imagetxt-2 {
    position: relative;
}

.imagetxt-2 > .txt {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.imagetxt-2 > img {
    filter: brightness(0.5);
}

.imagetxt-2.no-filter > img {
    filter: none;
}

@media screen and (min-width: 769px) {
    .imagetxt-2 > img {
        width: 100%;
        height: 25rem !important;
        object-fit: cover;
    }
}



@media screen and (max-width: 769px) {
    .news-item {
        min-height: auto !important;
    }
}

.custom-tabs {
    border: none;
    box-shadow: 0px 2px 10px 0px #eee;
}

.custom-tabs > center > div > div {
    text-align: center;
}

@media screen and (max-width: 769px) {
    .custom-tabs > center > div {
        font-size: 1.5rem;
    }

    .custom-tabs > center > div > div {
        text-align: center;
    }
}