.navbar-brand-img, .navbar-brand > img {
    max-height: unset !important;
}

.not-allowed input,
.not-allowed button,
.not-allowed select,
.not-allowed .select2,
input.not-allowed,
button.not-allowed,
button.not-allowed:hover {
    cursor: not-allowed !important;
    /*pointer-events: none !important;*/
}

main {
    min-height: calc(100vh - 181px);
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faded {
    transition: .25s ease-in-out all;
    position: relative;
}

    .faded.ng-enter {
        transform: translateY(15px);
        opacity: 0;
    }

        .faded.ng-enter.ng-enter-active {
            transform: translateY(0px);
            transition-delay: 0.1s;
            opacity: 1;
            pointer-events: none;
        }

    .faded.ng-leave {
        transform: translateY(0px);
        opacity: 1;
    }

        .faded.ng-leave.ng-leave-active {
            opacity: 0;
            transform: translateY(-15px);
            position: absolute;
            left: 0;
            pointer-events: none;
            display: none;
        }

.fade-in-out {
    transition: .25s ease-in-out all;
}

    .fade-in-out.ng-enter {
        opacity: 0;
        transform: translateY(30px);
    }

        .fade-in-out.ng-enter.ng-enter-active {
            opacity: 1;
            transform: translateY(0px);
        }

    .fade-in-out.ng-leave {
        opacity: 1;
        transform: translateX(0);
    }

        .fade-in-out.ng-leave.ng-leave-active {
            opacity: 0;
            transform: translateX(-100px);
        }


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 16px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 270px !important;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.swiper-item {
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0, rgba(0,0,0,.6) calc(100% - 32px), transparent 100%);
    padding: 32px 16px 16px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-rating {
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    color: var(--bs-dark);
    font-size: 20px;
}

.score {
    font-weight: bold;
    background: var(--bs-green);
    border-radius: 4px;
    padding: 2px 6px;
}

.comments {
    color: gray;
}

.pointer-none {
    pointer-events: none;
}

.pointer-none.show {
    pointer-events: auto;
}

.notie-container {
    z-index: 99999;
}

.swiper-lazy-preloader {
    width: 18px !important;
    height: 18px !important;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border-radius: 50%;
    border-top-color: transparent;
}

.loader {
    width: 8px;
    height: 40px;
    border-radius: 4px;
    display: block;
    margin: 20px auto;
    position: relative;
    background: var(--bs-primary);
    color: #FFF;
    box-sizing: border-box;
    animation: animloader 0.3s 0.3s linear infinite alternate;
}

    .loader::after, .loader::before {
        content: '';
        width: 8px;
        height: 40px;
        border-radius: 4px;
        background: var(--bs-primary);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 20px;
        box-sizing: border-box;
        animation: animloader 0.3s 0.45s linear infinite alternate;
    }

    .loader::before {
        left: -20px;
        animation-delay: 0s;
    }

@keyframes animloader {
    0% {
        height: 48px
    }

    100% {
        height: 4px
    }
}
