.fade-in {
    animation-name: fadeIn;
    animation-duration: 1.3s;
    animation-timing-function: cubic-bezier(0, 0, 0.4, 1);
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




.animacija {
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 100;
    position: fixed;
    transition: transform 5s;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
}

.anim {
    transform: translateY(-1000px);
}


.preloade {
    margin-bottom: 1.5vw;
}


#loading {
    display: inline-block;
    animation: rotation 1s infinite linear;
    width: 70px;
    height: 70px;
}

.preloader-text {
    text-align: center;
    font-size: 1.5em;

}

@keyframes rotation {
    5% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


#myBar {
    height: 1px;

    background-color: #fbd559;

    margin-bottom: 1.5vw;

}

.animacija.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}



@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}







.bigList {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 7;
    padding: 4.5vw 4.5vw;
    background-color: white;
    margin: 0;
  



}

.list {
    height: 40vh;
    flex-grow: 1;
    margin: 0.5vw;
}

.list:last-child {

    flex-grow: 10;
}

.slika {
    max-height: 100%;
    min-width: 100%;
    object-fit: cover;
    vertical-align: bottom;
}


@media (max-aspect-ratio: 1/1) {
    .list {
        height: 30vh;
    }
}



@media (max-height: 480px) {
    .list {
        height: 80vh;
    }
}



@media (max-aspect-ratio: 1/1) and (max-width: 480px) {
    .biglist {
        flex-direction: row;
    }

    .list {
        height: auto;
        width: 100%;
    }

    .slika {
        width: 100%;
        max-height: 75vh;
        min-width: 0;
    }
}
