/* WP styles */

@media (max-width: 769px) {
    #wpadminbar {
        position: fixed;
    }
}+

.entry-content img {
    margin: 0 0 1.5em 0;
}

.alignleft, img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
}

.alignright, img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
}

.aligncenter, img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
}

.alignnone, img.alignnone {
    /* not sure about this one */
}

.wp-caption {
    margin-bottom: 1.5em;
    text-align: center;
    padding-top: 5px;
}

.wp-caption img {
    border: 0 none;
    padding: 0;
    margin: 0;
}

.wp-caption p.wp-caption-text {
    line-height: 1.5;
    font-size: 10px;
    margin: 0;
}

.wp-smiley {
    margin: 0 !important;
    max-height: 1em;
}

blockquote.left {
    margin-right: 20px;
    text-align: right;
    margin-left: 0;
    width: 33%;
    float: left;
}

blockquote.right {
    margin-left: 20px;
    text-align: left;
    margin-right: 0;
    width: 33%;
    float: right;
}

.gallery dl {
}

.gallery dt {
}

.gallery dd {
}

.gallery dl a {
}

.gallery dl img {
}

.gallery-caption {
}

.size-full {
}

.size-large {
}

.size-medium {
}

.size-thumbnail {
}


/* Custom styles */

header .logo a {
    display: block;
    width: 100%;
}

header .logo img {
    width: 100%;
}

.category-list .category-products .category-product-item-img img {
    width: 100%;
    height: auto;
    margin: 0;
}

.category-list .category-products .category-product-item-img {
    height: auto;
    padding: 30px 15px 15px;
}

.category-list .category-products {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -ms-grid-row-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.category-list .category-products .category-product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-transition: .3s;
    transition: .3s;
}

.category-list .category-products .category-product-item-title {
    margin-top: auto;
}

.category-list .row {
    margin: 0;
}

.category-list .category-products .category-product-item-title h4 {
    margin: 0;
}

.category-list .category-products a {
    width: calc(100% / 4 - 15px);
}

.category-list .category-products a:not(:nth-child(4n)) {
    margin-right: 20px;
}

.category-list .category-products .category-product-item-hover-eyes {
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
}

.category-list .category-products .category-product-item:hover .category-product-item-hover-eyes {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

.category-list .category-products .category-product-item-like i,
.category-list .category-products .category-product-item-title h4,
.category-list .category-products .category-product-item-title {
    -webkit-transition: .3s;
    transition: .3s;
}

.single-product .product-media {
    margin-right: 0;
    padding: 15px;
}

.product-swiper .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.swiper-slide {
    cursor: pointer;
}

.product-swiper .swiper-slide img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

.product-swiper .swiper-slide a {
    display: block;
    position: relative;
    height: 0;
    width: 100%;
    padding-top: 70%;
}

.product-thumb .swiper-slide {
    height: 150px;
}

.product-thumb .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

header .top-line-blog a i {
    margin-right: 5px;
}

.hidden-menu-ticker:checked ~ .btn-menu span.first {
    top: 6px;
}

.hidden-menu-ticker:checked ~ .btn-menu span {
    background-color: #000;
}

.social__list {
    position: fixed;
    left: 0;
    bottom: 50px;
    padding: 0;
    margin: 0;
    z-index: 3;
}

.social__list.stick {
    position: absolute;
    top: -15px;
    bottom: auto;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}


.social__list li {
    list-style: none;
}

.social__list li:first-child a {
    border-top-right-radius: 5px;
}

.social__list li:last-child a {
    border-bottom-right-radius: 5px;
}

.social__list a {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
}

.social__list a:hover span {
    left: 120%;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.social__list a span {
    font: 12px "Open Sans", sans-serif;
    text-transform: uppercase;
    border-radius: 3px;
    line-height: 24px;
    left: -100%;
    margin-top: -16px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    padding: 4px 8px;
    position: absolute;
    -webkit-transition: opacity .3s, left .4s;
    transition: opacity .3s, left .4s;
    top: 50%;
    z-index: -1;
}

.social__list a span:before {
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    left: -4px;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.social__list_instagram:hover {
    background-color: #D41E90;
}

.social__list_instagram span,
.social__list_instagram span:before {
    background-color: #D41E90;
}

.social__list_facebook:hover {
    background-color: #3B5998;
}

.social__list_facebook span,
.social__list_facebook span:before {
    background-color: #3B5998;
}

.social__list_youtube:hover {
    background-color: #E34429;
}

.social__list_youtube span,
.social__list_youtube span:before {
    background-color: #E34429;
}

.social__list_pinterest:hover {
    background-color: #BD081C;
}

.social__list_pinterest span,
.social__list_pinterest span:before {
    background-color: #BD081C;
}

#footer {
    position: relative;
}

.single-product .product-price {
    margin-bottom: 20px;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 1;
}

header .header-menu ul .menu-item-71 > a,
header .top-line-menu .menu-item-71 > a {
    color: #c2190d;
    font-size: 18px;
}

header .top-line-menu .menu-item-71 > a {
    font-size: 14px;
}

.b-description_readmore {
    padding-bottom: 0;
}

.vertical-center {
    display: flex;
    align-items: center;
    width: 100%;
}

.single-product iframe {
    display: block;
    width: 100%;
}

.logo-footer {
    text-align: center;
}

.footer__social-list {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0;
}

.footer__social-list li {
    list-style: none;
}

.footer__social-list li a {
    color: #fff;
}

.pos-r {
    position: relative;
}

.slide-bgc {
    z-index: 2;
}

.slide-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-video-bg video {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: auto;
    width: 100%;
}

.slide-video-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .7);
}

.similar-product__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0 15px;
}

.similar-product__list-item {
    width: calc(100% / 5 - 12px);
    margin-right: 15px;
    margin-bottom: 20px;
}

.similar-product__list-item:nth-child(5n) {
    margin-right: 0;
}

.similar-product__list-img {
    margin-bottom: 15px;
    overflow: hidden;
}

.similar-product__list-img img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.similar-product__list-link {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    font-family: "proxima-nova", sans-serif;
    color: #333;
    text-decoration: none;
}

.similar-product__list-link:hover {
    color: #333;
    text-decoration: none;
}

.similar-product__list-link:hover .similar-product__list-img img {
    transform: scale(1.1);
}

.hidden-menu {
    z-index: 5;
}

.btn-menu {
    z-index: 7;
}

.content_place {
    margin-bottom: 0;
    padding: 25px 30px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    text-align: left;
}

.content_place p:not(:last-child) {
    margin-bottom: 10px;
}

.modal-products {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 430px;
    background-color: #fff;
    z-index: 4;
    box-shadow: -4px 0 20px -10px rgba(0, 0, 0, 0.75);
    opacity: 0;
}

.modal-products_hide .modal-products__header {
    cursor: pointer;
}

.modal-products__header {
    position: relative;
    padding: 15px 10px;
    background-color: #2d75bb;
}

.modal-products__title {
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
}

.modal-products__buttons {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20px;
    transform: translateX(-100%);
}

.modal-products__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: .2s;
}

.modal-products__btn:focus {
    outline: none;
}

.modal-products__btn:hover svg {
    transform: scale(1.1);
}

.modal-products__btn svg {
    width: 8px;
    height: 8px;
    fill: #fff;
    transition: .2s;
}

.modal-products__btn_hide {
    background-color: #FFBD2E;
}

.modal-products__content {
    padding: 10px;
}

.modal-products__list {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

.modal-products__list-item {
    width: 100%;
    list-style: none;
}

.modal-products__list-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    width: 100%;
    color: #1f1f1f;
}

.modal-products__list-link:hover {
    text-decoration: none;
}

.modal-products__list-link:hover .modal-products__list-img {
    opacity: .7;
}

.modal-products__list-item:not(:last-child) {
    margin-bottom: 10px;
}

.modal-products__list-img {
    min-width: 95px;
    max-width: 105px;
    margin-right: 15px;
    transition: .2s;
}

.modal-products__list-img img {
    display: block;
    width: 100%;
}

.modal-products__list-text {
    font-size: 14px;
    line-height: 1.2;
}

header .search-form .search-button,
header .search-form i {
    z-index: 2;
}

.ask-question-form-block {
    border: 2px solid #c2190d;
}

.ask-question-form__wrapper {
    width: 70%;
    margin: 0 auto;
}

.search-icon {
    animation: scale .5s infinite alternate;
}

/* Responsive */

@media screen and (max-width: 992px) {
    .category-list .category-products .category-product-item-title {
        padding: 15px;
    }

    .product-thumb {
        margin-bottom: 50px;
    }

    #footer {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 769px) {
    .category-list .category-products a {
        width: calc(100% / 2 - 15px);
    }

    .category-list .category-products a:nth-child(2n) {
        margin-right: 0;
    }

    .social__list a {
        width: 35px;
        height: 35px;
    }

    .social__list a i {
        font-size: 18px;
    }

    .vertical-center {
        display: block;
    }

    header .main-slider .slide-bgc {
        padding: 20px 0 100px;
    }

    .slide-video-bg iframe {
        width: auto;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        border: 0;
    }

    .similar-product__list-item,
    .similar-product__list-item:nth-child(5n) {
        width: calc(100% / 3 - 12px);
        margin-right: 18px;
    }

    .similar-product__list-item:nth-child(3n) {
        margin-right: 0;
    }

    .similar-product__list-link {
        font-size: 14px;
        line-height: 18px;
    }

    .products__header {
        padding: 10px;
    }

    .modal-products {
        width: 280px;
    }

    .modal-products__list-text {
        font-size: 13px;
    }

    .modal-products__list-img {
        margin-right: 10px;
    }

    .ask-question-form__wrapper {
        width: 80%;
    }

    .slide-video-bg video {
        width: auto;
        height: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .category-list .category-products a {
        width: 100%;
        margin-right: 0;
    }

    .category-list .category-products a:not(:nth-child(4n)) {
        margin-right: 0;
    }

    .footer__social-list {
        flex-wrap: wrap;
    }

    .footer__social-list li {
        width: 50%;
        text-align: center;
    }

    footer .logo-footer {
        margin-left: 0;
    }

    .modal-products {
        width: 100%;
    }

    .modal-products__header {
        padding: 10px 40px 10px 5px;
    }

    .modal-products__buttons {
        transform: translateX(0);
        left: auto;
        right: 0;
        width: 40px;
    }

    .ask-question-form__wrapper {
        width: 75%;
    }
}

@media only screen and (min-width: 1200px) {
    header .logo {
        padding: 25px 15px;
    }

    header .search-form {
        padding: 0;
    }

    header .header-contacts {
        padding-left: 50px;
        padding-top: 0;
    }

    header .search-form .search-button,
    header .search-form i {
        top: 18px;
    }

    header .main-slider .slide-bgc {
        padding: 10% 0 10%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    header .logo {
        width: 100%;
        max-width: 200px;
    }
}


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

    100% {
        transform: scale(1.3);
    }
}