/*ANIMATION=================================*/
.not-animated,
[data-animate]:not(.animated) { opacity: 0; }

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
/*SCROLLBAR=================================*/
/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
/* Track */
::-webkit-scrollbar-track {
    background: black;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #8d919c;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #dead2e;
}
/* Handle when active */
::-webkit-scrollbar-thumb:active {
    background: #dead2e;
}

/*CUSTOM===================================*/

.center {
    text-align: center !important;
    justify-content: center !important;
    justify-items: center !important;
    align-content: center !important;
    align-items: center !important;
}

.flag {
    width: 20px;
    height: 20px;
}

.lang-menu {
    margin: 16px 0 0 20px;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.product-image {
    height: 70vh;
}

.m-5px {
    margin: 5px;
}

.m-top-20px {
    margin-top: 20px;
}

.button-no-style {
    color: white !important;
    background: transparent !important;
    border: 0 solid !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.3s linear !important;
}

.button-no-style:hover {
    color: #8d919c !important;
}
