@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
}

#loader{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999;
}

#loader #image-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loader #image-wrapper img{
    width: 100px;
    transform-origin: 50% 50%;
    animation: loader 4s infinite;
}

.dropdown-submenu {
    position:relative;
}

.dropdown-submenu .dropdown-menu {
    top:0;
    left:100%;
}

.dropdown-menu{
    margin-top: 0;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 0;
}

ul.dropdown-menu li:hover{
    background: rgba(0, 0, 0, 0.5);
}

li.dropdown-item:hover > ul.dropdown-menu,
li.dropdown:hover > ul.dropdown-menu{
    display: block;
}

header{
    background: rgba(0, 0, 0, 0);
	box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 99;
    transition: background 0.5s, box-shadow 0.5s;
}

header.scrolled{
    background: rgba(0, 0, 0, 1);
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

header ul#social-networks{
	transition: display 0.5s;
}

header .header-menu a{
    color: #fff;
    text-decoration: none !important;
}

a.link-zoom-image img{
    transform: scale(0.8);
    transition: transform 0.2s;
}

a.link-zoom-image:hover img{
    transform: scale(1);
}

.text-aqua{
    color: #1eb395;
}
a.text-aqua:hover{
    color: #167e69;
}

.bg-aqua{
    background-color: #1eb395;
}

@keyframes loader{
    0% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(-1, 1);
    }

    50% {
        transform: scale(-1, -1);
    }

    75% {
        transform: scale(1, -1);
    }

    100% {
        transform: scale(1, 1);
    }
}

.embed-container { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 

.embed-container iframe,
.embed-container object,
.embed-container embed { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

a.product-preview{
    display: block;
    transform: scale(0.9);
    background: rgba(0, 0, 0, 0);
    box-shadow: none;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    text-decoration: none !important;
}
a.product-preview:hover{
    transform: scale(1);
    background: rgba(236, 240, 241,1.0);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
a.product-preview .product-preview-logo{
    width: 100%;
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
a.product-preview .product-preview-thumbnail{
    width: 100%;
    padding-top: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#footer-widget-one a,
#footer-widget-two a{
    color: #fff !important;
}

.bg-black{
    background-color: #000;
}

.social-icon{
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    color: #FFF;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s, color 0.2s;
}
.social-icon *{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.social-icon:hover{
    color: inherit;
    background: rgba(255, 255, 255, 1);
}

.post-thumbnail{
    width: 100%;
    padding-top: 75%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

a.social-button{
    position: relative;
    width: 50px;
    height: 50px;
}

a.social-button *{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.author-profile{
    border-left: solid 10px #1eb395;
}

.author-profile-picture{
    width: 100%;
    padding-top: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bcn_display a{
    text-decoration: none !important;
    color: #1eb395;
}

#product-carousel img{
    cursor: zoom-in;
}

#product-carousel-nav .slick-slide img{
    border-style: solid;
    border-color: #1eb395;
    border-width: 0px;
    transition: border-width 0.5s;
}
#product-carousel-nav .slick-slide.slick-current img{
    border-width: 10px;
    transition: border-width 0.5s;
}

#zoom-modal .modal-content button.next-slide,
#zoom-modal .modal-content button.prev-slide{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    padding: 5px 10px;
}

#zoom-modal .modal-content button.next-slide{
    right: 15px;
}
#zoom-modal .modal-content button.prev-slide{
    left: 15px;
}