﻿/* Poppins Fonts */
/*@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700;900&display=swap);*/
/* Variables */
:root {
    --color-red: #2A505F;
    --color-red-polisan: #e1251b;
    --color-red-polisan-dark: #c71f16;
    --color-red-dark: #c2312a;
    --color-red-dark2: #9a162c;
    --color-red-fdc: #fffddc;
    --color-white-f3: #f3f3f3;
    --color-gray-db: #e0dbdb;
    --color-gray-d4d: #d4d3d1;
    --color-gray-CD: #cdcdcd;
    --color-gray-88: #888888;
    --color-gray-908: #908f8f;
    --color-gray-64: #646464;
    --color-gray-3f: #3f3f3f;
    --color-black-22: #222222;
    --color-black-0f: #0f0f0f;
    --color-rgb-black: 0, 0, 0;
    --color-rgb-190: 190, 190, 190;
    --color-rgb-210: 210, 210, 210;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Metro Regular';
    font-size: 14px;
    letter-spacing: -0.02em;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.py-100 {
    padding: 100px 0;
}

.bg-dots {
    background: url(../images/body-bg.jpg) no-repeat center;
    background-size: contain;
    height: 300px;
}

.rounded-5 {
    border-radius: 5px !important;
}


/* ########### BUTTONS ########### */
.btn.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-red);
    border-color: var(--color-red);
    border-radius: 50px;
    min-width: 140px;
    font-weight: 500;
}

.btn.btn-danger:hover {
    color: var(--bs-white);
}


/* ########### HEADER ########### */
header {
    /*position: fixed;*/
    position: sticky;
    z-index: 90;
    left: 0;
    top: 0;
    width: 100%;
    background-color: var(--bs-white);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bs-white);
    border-bottom: 1px solid rgba(0,0,0, .2);
    /*padding: 30px 20px 22px 20px;*/
    padding: 0 20px;
    transition: all .2s ease;
}

.header .mobileMenu {
    display: none !important;
}

.header .logo {
    display: block;
    padding: 1px 20px;
}

.sticky .header .logo {
    padding-top: 8px;
    padding-bottom: 8px;
}

.header .logo img {
    max-width: 130px;
    /*min-width: 200px;*/
    height: auto;
    max-height: 100px;
}
.mobilePurchaseButtonNaviggation {
    color: #F0BC5E;
}

.header #headerMenu {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.header #headerMenu > li {
    position: relative;
    display: block;
    padding: 27px 0 17px 0;
    transition: all .2s ease;
}

.header #headerMenu > li > a {
    position: relative;
    z-index: 80;
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-black-0f);
    border: 1px solid transparent;
    transition: all .2s ease;
    padding: 21px 18px;
}

.header #headerMenu > li > a:hover {
    color: var(--color-red);
}


.header #headerMenu > li.subMenu:hover > a {
    border-color: rgba(var(--color-rgb-black), .34);
    border-bottom-color: var(--bs-white);
    padding: 21px 18px 39px 18px;
    margin-bottom: -18px;
}

.header #headerMenu > li > a + ul {
    display: none;
    position: absolute;
    z-index: 50;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0;
    min-width: 100%;
    background-color: var(--bs-white);
    border: 1px solid rgba(var(--color-rgb-black), .34);
    border-radius: 0;
}

.header #headerMenu > li:hover > a + ul {
    display: block;
}

.header #headerMenu > li > a + ul > li {
    display: block;
}

.header #headerMenu > li > a + ul > li > a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    text-decoration: none;
    color: var(--color-gray-908);
    border-bottom: 1px dashed var(--color-gray-db);
    transition: all .3s ease;
    padding: 7px 14px;
}

.header #headerMenu > li > a + ul > li > a:hover {
    font-weight: 700;
    color: var(--color-red);
    text-decoration: underline;
}

.header .header-action {
    display: flex;
    align-items: center;
}

.header .header-action a {
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    color: var(--color-black);
    padding: 8px 10px;
}

.header .header-action #headerSearch {
    line-height: 0;
}

.header .header-action a.icon-search {
    padding: 0 26px;
}

.header .header-action a.icon-search svg {
    width: auto;
    height: 18px;
}

.header .header-action .dropdown {
    border-left: 1px solid var(--color-black-0f);
    background-color: transparent;
    margin-left: 24px;
}

.header .header-action .dropdown > span {
    background-color: transparent;
    padding: 0 20px;
}

.header .header-action .dropdown .dropdown-menu a.dropdown-item {
    font-size: 14px;
    text-align: center;
}

header.sticky {
    box-shadow: 0 0 5px rgba(0,0,0, .4);
    padding: 0;
}

header.sticky .header {
    padding: 0px 20px;
}

header.sticky .header #headerMenu > li {
    padding: 0;
}

header.sticky .header #headerMenu > li > a {
    padding: 18px;
}

header.sticky .header #headerMenu > li.subMenu:hover > a {
    padding: 18px;
    margin: 0 0 -1px 0;
}

#headerSearch {
    position: static;
}

#headerSearch .searchInput {
    display: none;
    position: absolute;
    z-index: 60;
    left: 0;
    top: 100%;
    width: 100%;
    height: 70px;
    border: none;
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 1px 10px 84px 0px rgba(0, 23, 45, 0.33);
    outline: none;
    font-size: 16px;
    text-align: center;
}

#headerSearch.active > a {
    position: relative;
    z-index: 5;
    background-color: var(--bs-white);
    padding-top: 30px;
    margin-top: -30px;
    padding-bottom: 49px;
    margin-bottom: -49px;
}

.sticky #headerSearch.active > a {
    padding-bottom: 28px;
    margin-bottom: -28px;
}

/* ########### FOOTER ########### */
.header #headerMenu > li .megamenu {
    display: none;
    position: absolute;
    z-index: 75;
    left: 0;
    top: 100%;
}

.header #headerMenu > li:hover .megamenu {
    display: flex;
}

.megamenu {
    width: 60vw;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bs-white);
    border: 1px solid rgba(var(--color-rgb-black), .34);
}

.megamenu ul {
    display: block;
    margin: 0;
    padding: 0;
    flex-basis: 90%;
    padding-right: 5%;
}

.megamenu ul:last-child {
    padding-right: 0;
}

.megamenu ul.collapse:not(.show) {
    display: none;
}

.megamenu ul li {
    position: relative;
    display: block;
}

.megamenu ul li a[aria-expanded]:after {
    content: '';
    position: absolute;
    right: 0;
    top: 12px;
    display: inline-block;
    border: solid var(--color-black-0f);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .2s ease;
    padding: 2px;
}

.megamenu ul li:hover a[aria-expanded]:after {
    border-color: var(--color-red);
}

.megamenu ul li a[aria-expanded="true"]:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 17px;
}

.megamenu ul li > a {
    display: block;
    font-size: 13px;
    padding-top: 2px;
    line-height: 30px;
    letter-spacing: 0.04em;
    color: var(--color-gray-908);
    text-decoration: none;
    transition: all .2s ease;
    border-bottom: 1px dashed var(--color-gray-db);
}

.megamenu ul li:last-child > a {
    border-bottom: none;
}

.megamenu ul li:hover > a {
    font-weight: bold;
    color: var(--color-red);
    /*text-decoration: underline;*/
}

.megamenu ul ul {
    padding-left: 30px;
}

.megamenu ul ul li a {
    color: var(--color-black-0f);
}

.megamenu ul.list-dot li > a {
    display: flex;
    align-items: center;
}

.megamenu ul.list-dot li > a:before {
    content: '';
    display: block;
    background-color: var(--color-gray-d4d);
    transition: all .2s ease;
    border-radius: 50%;
    margin-right: 7px;
    width: 6px;
    height: 6px;
}

.megamenu ul.list-dot li:hover > a:before {
    background-color: var(--color-red);
}


/* ########### FOOTER ########### */
footer {
    overflow: hidden;
}

footer hr {
    margin: 0;
    border: none;
    border-top: 1px solid rgba(var(--color-rgb-black), .10);
}

footer .quick-links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--color-gray-db);
    padding-right: 1000px;
    margin-right: -1000px;
    height: 100%;
}

footer .quick-links a {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 0 30px;
}

footer .quick-links a + a {
    border-left: 1px solid rgba(var(--color-rgb-black), .10);
}

footer .quick-links a .image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

footer .quick-links a .title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-black-22);
    padding: 12px 0;
}

footer .footer-news {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: var(--color-black-22);
    background-color: #e1ecf0;
    padding-left: 1000px;
    margin-left: -1000px;
    min-height: 150px;
}

footer .footer-news:hover {
    text-decoration: none;
    color: var(--color-black-22);
}

footer .footer-news strong {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.03em;
    max-width: 550px;
    margin-bottom: 15px;
}

footer .footer-news strong:before {
    content: '';
    position: absolute;
    right: 105%;
    top: 14px;
    width: 64px;
    height: 4px;
    background-color: var(--color-black-22);
}

footer .footer-news span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -.02em;
}

footer .card-contact {
    letter-spacing: -0.03em;
    background: url('../images/footer-contact.png') no-repeat right center;
    background-size: contain;
    border-radius: 0;
    border: none;
}

footer .card-contact .card-body {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: 190px;
    padding: 0;
}

footer .card-contact .card-title {
    font-size: 18px;
    color: var(--color-red);
    padding-bottom: 2px;
    margin: 0;
}

footer .card-contact .card-text {
    font-size: 14px;
    margin: 0;
}

footer .card-contact .btn {
    font-size: 14px;
    padding: 10px;
    margin: 18px 0 6px 0;
}

footer .footer-icon-link {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

footer .footer-contract-links {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

footer .footer-contract-links .card {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100%;
    color: var(--color-black-22);
    text-decoration: none;
    border: none;
    padding: 0 30px;
}

footer .footer-contract-links .card .card-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    max-width: 160px;
}

footer .footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .footer-nav nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 46px 0;
}

footer .footer-nav nav a {
    font-size: 14px;
    line-height: 36px;
    color: var(--color-22);
    text-decoration: none;
    transition: all .2s ease;
}

footer .footer-nav nav a + a {
    margin-left: 2.0vw;
}

footer .footer-nav .logos {
    display: flex;
    align-items: center;
}

footer .footer-nav .logos a {
    display: block;
}

footer .footer-nav .logos a img {
    width: auto;
    height: 44px;
    height: 44px;
    max-width: 130px;
}

footer .footer-nav .logos a + a {
    margin-left: 2vw;
}

footer .footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 12px;
    color: var(--color-64);
}

footer .footer-copyright address {
    margin: 0;
}

footer .footer-copyright address span {
    display: inline-block;
    vertical-align: middle;
    padding: 0 14px;
}

footer .footer-copyright a {
    text-decoration: none;
    color: var(--color-64);
}


/* ########### HOME BANNER SLIDER ########### */
#homeBannerSlider {
    width: auto;
    max-width: 770px;
}

#homeBannerSlider .swiper-slide {
    width: 100% !important;
}

#homeBannerSlider .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#homeBannerSlider .swiper-banner-button-next,
#homeBannerSlider .swiper-banner-button-prev {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: rgba(var(--color-rgb-190), .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#homeBannerSlider .swiper-banner-button-next {
    left: auto;
    right: 10px;
}

#homeBannerSlider .swiper-banner-button-next:hover,
#homeBannerSlider .swiper-banner-button-prev:hover {
    background-color: var(--color-black-0f);
}

#homeBannerSlider .swiper-banner-button-next span,
#homeBannerSlider .swiper-banner-button-prev span {
    width: 14px;
    height: 14px;
    border: solid var(--color-black-0f);
    border-width: 0 2px 2px 0;
    display: inline-block;
    border-radius: 0 0 4px 0;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-left: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#homeBannerSlider .swiper-banner-button-next span {
    margin-left: 0;
    margin-right: 4px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

#homeBannerSlider .swiper-banner-button-next:hover span,
#homeBannerSlider .swiper-banner-button-prev:hover span {
    border-color: var(--bs-white);
}

#homeBannerSlider .swiper-banner-pagination {
    position: absolute;
    z-index: 14;
    bottom: 15px;
    left: 50%;
    width: auto;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

#homeBannerSlider .swiper-banner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-red-dark2);
}

#homeBannerSlider .swiper-banner-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 5px;
}

/* ########### HOME BANNER LINKS ########### */
.banner-links {
    display: flex;
    width: 100%;
    padding: 1px;
    margin: 0 0 60px 0;
}

.banner-links .swiper-slide {
    /* margin: 1px;*/
    transition: filter 0.2s ease-in-out;
}

    /*.banner-links .swiper-slide:hover {
            filter: contrast(150%);
        }*/

        .banner-links .links-left {
            display: flex;
            flex-direction: column;
            /* flex-basis: 40%; */
        }

        .banner-links .links-right .swiper-wrapper {
            display: flex;
            flex-wrap: wrap;
        }

        .banner-links .links-right .swiper-wrapper .swiper-slide {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            width: calc(33.3% - 2px);
            height: auto;
            padding: 20px;
        }

        .banner-links .links-right .swiper-wrapper .swiper-slide span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 120px;
            height: 120px;
        }

        .banner-links .links-right .swiper-wrapper .swiper-slide span img {
            max-width: 90%;
            filter: none;
        }

        .banner-links .links-right .swiper-wrapper .swiper-slide span img:hover {
        }

        .banner-links .links-right .swiper-wrapper .swiper-slide strong {
            font-size: 14px;
            color: var(--color-black-22);
        }

        .bg-banner-1 {
            background-color: #eaaeae;
            border: 15px solid #faecec;
        }

        .bg-banner-2 {
            background-color: #dddddd;
            border: 15px solid #fdfdfd;
        }

        .bg-banner-3 {
            background-color: #bdcae3;
            border: 15px solid #dde7f7;
        }

        .bg-banner-4 {
            background-color: #a6d6fd;
            border: 15px solid #daecfa;
        }

        .bg-banner-5 {
            background-color: #b1f0d0;
            border: 15px solid #d7f8e7;
        }

        .bg-banner-6 {
            background-color: #e8cfcf;
            border: 15px solid #f5e6e6;
        }

        .bg-banner-7 {
            background-color: #a1becd;
            border: 15px solid #dae9f1;
        }

        .bg-banner-8 {
            background-color: #d4d4d4;
            border: 15px solid #f4f1f1;
        }

        .bg-banner-9 {
            background-color: #fed8d5;
            border: 15px solid #d7f8e7;
        }

        #homeIconSlider .swiper-pagination-bullets {
            bottom: 25px;
        }

        #mediaLinks .swiper-pagination-bullets {
            position: absolute;
            z-index: 50;
            text-align: right;
            bottom: 0;
        }

        #homeIconSlider .swiper-pagination-bullets .swiper-pagination-bullet,
        #mediaLinks .swiper-pagination-bullets .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background-color: rgba(var(--color-rgb-black), .30);
        }

        #homeIconSlider .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
        #mediaLinks .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background-color: rgba(var(--color-rgb-black), 1);
        }


/* ########### MEDIA LINK ########### */
#mediaLinks {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

#mediaLinks .swiper-wrapper {
    height: auto;
}

#mediaLinks .media-link {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 33.3%;
    height: 100%;
    padding: 8px 28px;
}

#mediaLinks .media-link + .media-link {
    border-left: 1px solid var(--color-gray-db);
}

#mediaLinks .media-link > img {
    align-self: flex-end;
    width: 100%;
    max-width: 40%;
    height: auto;
}

#mediaLinks .media-link .content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 60%;
    height: 100%;
}

#mediaLinks .media-link .content small {
    display: block;
    font-family: 'Metro Bold';
    font-size: 18px;
    line-height: normal;
    color: var(--color-black-22);
    letter-spacing: 0.02em;
    padding-bottom: 14px;
}

#mediaLinks .media-link .content strong {
    flex-basis: 100%;
    font-family: 'Metro Black';
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: var(--color-black-22);
    margin-bottom: 60px;
}

#mediaLinks .media-link .content a {
    position: relative;
    font-family: 'Metro Bold';
    font-size: 16px;
    line-height: 20px;
    color: var(--color-black-22);
    text-decoration: none;
    padding: 6px;
    transition: all .2s ease;
}

#mediaLinks .media-link .content a:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 16px;
    width: 100%;
    height: 24px;
    background-color: var(--color-gray-CD);
    transition: all .2s ease;
}

#mediaLinks .media-link .content:hover a {
    color: var(--bs-white)
}

#mediaLinks .media-link .content:hover a:before {
    background-color: var(--color-red);
    top: 3px;
}

/* ########### PRODUCT BOX ########### */
.product-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 0 0 0;
}

.product-wrapper .product-col {
    width: calc(100% / 5);
    min-width: 250px;
    padding: 15px;
}

.product-wrapper-4 .product-col {
    width: calc(100% / 4);
}

.product-box {
    font-family: 'Metro Regular';
    padding: 90px 0 30px 0;
    height: 100%;
}

.product-box .content {
    position: relative;
    background-color: rgba(var(--color-rgb-190), .2);
    box-shadow: -5px 38px 29px 0px rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 5px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}

.product-box .content:hover {
    box-shadow: -5px 38px 29px 0px rgba(0, 0, 0, .2);
}

.product-box .image {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: -120px 0 0 0;
    height: 244px;
}

.product-box .image img {
    max-width: 250px;
}

.product-box .image.image-fancybox {
    margin: -60px 0 20px 0;
}

    /*.product-box .image .gal {
            max-width: 200px;
            min-height: 140px;
            margin-bottom: 10px;
        }*/

        .product-box small {
            display: block;
            font-size: 12px;
            text-align: center;
            color: rgba(var(--color-rgb-black), .5);
            padding: 10px 10px 4px 10px;
        }

        .product-box strong {
            display: block;
            font-size: 14px;
            text-align: center;
            color: var(--color-black-22);
            height:90px;
            max-height: 90px !important;
            padding: 0 10px;
            /*flex-basis: calc(100% - 118px);*/
        }

        .product-box .link {
            width: 100%;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            line-height: 10px;
            text-decoration: none;
            color: var(--color-gray-3f);
            transition: all .3s ease;
        }

        .product-box:hover .link {
            background-color: var(--color-red);
            color: var(--bs-white);
            border-radius: 0 0 5px 5px;
        }


/* ########### HOME FURNITURE ########### */
.home-furniture {
    position: relative;
    padding: 93px 0;
}

/* ########### SMALL VIDEOS SECTION ########### */
.small-videos-section {
    display: flex;
    justify-content: space-between;
}

.small-videos-section span {
    display: block;
    width: 100%;
    height: 220px;
    border: 2px solid var(--bs-white);
}

.small-videos-section span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ########### VIDEOS SECTION ########### */
.videos-section {
    position: relative;
    padding: 83px 0;
}

.videos-section:after,
.videos-section:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
   /* background: url(../images/body-bg.png) no-repeat center bottom; */
}

.videos-section:after {
    bottom: auto;
    top: 0;
    background-position: center top;
}

.videos-section h4 {
    font-family: 'Metro Regular';
    font-size: 28px;
    font-weight: 800;
    color: var(--color-black-22);
    margin: 0 0 23px 0;
}

.videos-section .videos-wrapper {
    display: flex;
    margin: 0 -14px;
}

.videos-section .figure {
    width: calc(100% / 4);
    padding: 0 14px;
    margin: 0;
}

.videos-section .figure div {
    position: relative;
    cursor: pointer;
}

.videos-section .figure div i {
    position: absolute;
    z-index: 50;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    font-size: 2em;
    color: var(--bs-white);
}

.footersearchInput {
    width: 50%;
    border-radius: 50px;
    padding: 10px;
    border: 0;
    position: relative;
    right: -5px;
}

.footerSeachInputDiv {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.videos-section .figure img {
    position: relative;
    z-index: 30;
    margin: 0;
    border-radius: 0;
    width: 352px;
    height: 264px;
    object-fit: cover;
}

.videos-section .figure .figure-caption {
    font-family: 'Metro Regular';
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black-22);
    padding: 5px 0;
}

/* ########### Video MODAL ########### */
#videoModal .modal-body {
    position: relative;
}

#videoModal .modal-body .btn-close {
    position: absolute;
    z-index: 10;
    left: 100%;
    top: 0;
    opacity: 1;
    background-color: var(--bs-white);
    padding: 14px;
    border-radius: 0 5px 5px 0;
    font-size: 12px;
}

/* ########### NOTICE MODAL ########### */
#noticeModal .modal-content {
    border: none;
    border-radius: 0;
    box-shadow: 0px 0px 85.5px 4.5px rgba(0, 0, 0, 0.7);
}

#noticeModal .modal-body {
    position: relative;
    padding: 4px;
}

#noticeModal .modal-body .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: absolute;
    left: calc(100% - 1px);
    top: 0;
    background-color: var(--bs-white);
    color: var(--color-black-22);
    border-radius: 0;
    opacity: 1;
    cursor: pointer;
}

#noticeModal .modal-body .close:hover {
    color: var(--color-red);
}


/* ########### FILTER MENU ########### */
.filterMenu {
    padding-bottom: 50px;
}

.filterMenu h4 {
    font-family: 'Metro Bold';
    font-size: 15px;
    color: var(--color-black-22);
    margin: 0 0 15px 0;
}

.filterMenu h4 + .collapse {
    display: block;
}

.filter-check .form-check {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed var(--color-gray-d4d);
}

.filter-check .form-check .form-check-input {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-gray-d4d);
    transition: all .2s ease;
}

.filter-check .form-check .form-check-input:checked[type=radio] {
    background-image: none;
    background-color: var(--color-gray-d4d);
}

.filter-check .form-check .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgb(212 211 209 / 25%);
}

.filter-check .form-check .form-check-label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 10px;
}

.filter-check .form-check .form-check-label .badge {
    border: 1px solid var(--color-gray-88);
    color: var(--color-gray-88);
    border-radius: 50px;
    min-width: 34px;
}

/* ########### FILTER LIST ########### */
#filterlinks,
#filterlinks ul {
    display: block;
    margin: 0;
    padding: 0;
}

#filterlinks ul.collapse:not(.show) {
    display: none;
}

#filterlinks li {
    display: block;
}

#filterlinks li a {
    position: relative;
    display: block;
    text-decoration: none;
    color: rgba(var(--color-rgb-black), .70);
    border-bottom: 1px dashed var(--color-gray-db);
    padding: 15px 10px;
}

#filterlinks li a[aria-expanded]::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
    display: inline-block;
    border: solid var(--color-gray-64);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .2s ease;
    padding: 2px;
}

#filterlinks li a[aria-expanded="true"]::before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#filterlinks > li > a[aria-expanded="true"] {
    background-color: rgba(var(--color-rgb-210), .3);
    font-weight: 700;
    color: var(--color-red);
}

#filterlinks > li > a + ul > li a {
    position: relative;
    padding-left: 18px;
    margin-left: 10px;
    color: var(--color-gray-908);
}

#filterlinks > li > a + ul li a:after {
    content: '';
    display: block;
    position: absolute;
    left: 4px;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background-color: rgba(var(--color-rgb-black), .3);
}

#filterlinks > li > a + ul > li > a[aria-expanded="true"],
#filterlinks > li > a + ul > li > a.active {
    /* text-decoration: underline;*/
    color: var(--color-red);
    margin-left: 10px;
}

#filterlinks > li > a + ul > li > a[aria-expanded="true"]:after,
#filterlinks > li > a + ul > li > a.active:after {
    background-color: var(--color-red);
}

#filterlinks > li > a + ul > li > a + ul > li {
    padding-left: 30px;
}

#filterlinks > li > a + ul > li > a + ul > li > a {
    color: var(--color-black-0f);
}

#filterlinks > li > a + ul > li > a + ul > li > a.selected-menu,
#filterlinks > li > a + ul > li > a + ul > li > a.active {
    color: var(--color-red);
}

#filterlinks > li > a + ul > li > a + ul > li > a.selected-menu:after,
#filterlinks > li > a + ul > li > a + ul > li > a.active:after {
    background-color: var(--color-red);
}


/* ########### FILTER LIST - MOBILE ########### */
#mobileFilterLinks {
    display: flex;
    padding: 0;
    margin: 0;
}

#mobileFilterLinks a {
    color: var(--color-black-22);
    text-decoration: none;
    white-space: nowrap;
    padding: 12px 14px;
}

#mobileFilterLinks a[aria-expanded="true"],
#mobileFilterLinks a.active {
    font-weight: 700;
    color: var(--color-red);
    text-decoration: underline;
}

#mobileFilterButton .dropdown {
    flex-basis: 100%;
}

#mobileFilterButton .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    background-color: var(--color-white-f3);
    color: var(--color-red);
    padding: 7px;
}

#mobileFilterButton .dropdown > a::after {
    display: none;
}

#mobileFilterButton .dropdown > a::before {
    content: '';
    position: absolute;
    right: 16px;
    top: 14px;
    padding: 2px;
    border: solid var(--color-gray-64);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#mobileFilterButton .dropdown .dropdown-menu {
    width: 100%;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

#mobileFilterButton .dropdown .dropdown-menu li a {
    display: block;
    font-size: 14px;
    color: var(--color-black-22);
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 14px;
}

#mobileFilterSelect {
    width: calc(100% - 14px);
    text-align: center;
    border: none;
    border-radius: 0;
    font-weight: 700;
    color: var(--color-red);
    background-color: var(--color-white-f3);
    margin: 14px;
    padding: 7px;
    text-align-last: center
}

#mobileFilterSelect option {
    text-align: left;
}


/* ########### SECTION TITLE ########### */
section h5.title {
    font-family: 'Metro Bold';
    font-size: 16px;
    font-weight: 900;
}


/* ########### PRODUCT DETAIL TABS ########### */
#tabProductDetail {
    border-bottom: 5px solid var(--color-gray-d4d);
}

#tabProductDetail .nav-item {
    min-width: 20vw;
}

#tabProductDetail .nav-item + .nav-item {
    margin-left: 30px;
}

#tabProductDetail .nav-item a {
    display: inline-block;
    font-family: 'Metro Bold';
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    color: var(--color-black-22);
    border-bottom: 5px solid transparent;
    margin-bottom: -5px;
    padding: 6px 0;
}

#tabProductDetail .nav-item a.active {
    border-bottom-color: var(--color-red);
}

#tabProductDetailContent {
    padding: 43px 0;
    margin-bottom: 50px;
}

#tabProductDetailContent .tab-pane .table {
    border-radius: 10px;
    overflow: hidden;
}

#tabProductDetailContent .tab-pane .table tr td {
    padding: 26px;
}

#tabProductDetailContent .tab-pane .table tr td .icon-title {
    display: flex;
    align-items: center;
}

#tabProductDetailContent .tab-pane .table tr td .icon-title img {
    margin-right: 20px;
}

#tabProductDetailContent .tab-pane .table tr td .icon-title strong {
    display: block;
    white-space: nowrap;
    font-size: 18px;
    letter-spacing: -0.04em;
}

#tabProductDetailContent .tab-pane .table tr td p {
    margin: 26px 0;
    font-size: 16px;
    letter-spacing: 0.03em;
    min-width: 300px;
}


/* ########### PRODUCT DETAIL ########### */
.product-detail-image {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 400px;
}

.product-detail-image .swiper-slide img {
    max-width: 60%;
    max-height: 100%;
}

#product-detail-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#product-detail-slide .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

#product-detail-slide > .swiper-pagination-bullets {
    right: auto;
    left: 0;
    top: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#product-detail-slide > .swiper-pagination-bullets .swiper-pagination-bullet {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.1);
    background-color: transparent !important;
    opacity: 1;
    margin: 2px;
}

#product-detail-slide > .swiper-pagination-bullets .swiper-pagination-bullet img {
    max-width: 100%;
}

#product-detail-slide > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: rgba(0,0,0,.2)
}

#product-detail-slide .swiper-button-prev {
    left: 16px;
    top: 10px;
    transform: rotate(90deg)
}

#product-detail-slide .swiper-button-next {
    left: 16px;
    top: auto;
    bottom: -10px;
    transform: rotate(90deg)
}

#product-detail-slide .swiper-button-next:after,
#product-detail-slide .swiper-button-prev:after {
    font-size: 18px;
    color: var(--color-red)
}



.product-detail-image .properties {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    /*padding: 30px 0 50px 0;*/
}

.product-detail-image .properties a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--color-red-dark);
    color: var(--bs-white);
    font-family: 'Metro Bold';
    font-size: 13px;
    text-decoration: none;
}

.product-detail-image .properties a + a {
    margin-left: 1vw;
}

.product-detail-content .title-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-direction: column;
}

.product-detail-content p {
    font-family: 'Metro Regular';
    font-size: 14px;
}


/* ########### BREADCRUMB TITLE ########### */
.breadcrumb-title .title {
    font-family: 'Metro Bold';
    font-size: 24px;
}

.breadcrumb-title nav {
    font-size: 13px;
}

.breadcrumb-title nav strong {
    font-family: 'Metro Bold';
}

.breadcrumb-title nav a {
    font-family: 'Metro Regular';
    color: var(--color-gray-64);
    text-decoration: none;
}

.breadcrumb-title nav a + a:before {
    content: '/';
    display: inline-block;
    margin: 0 6px 0 4px;
}


/* ########### SOCIAL MEDIA SHARE ########### */
.social-media-share {
    display: flex;
    justify-content: flex-end;
}

.social-media-share span {
    display: block;
    padding: 8px 8px 8px 0;
}

.social-media-share a {
    display: block;
    color: var(--color-gray-88);
    text-decoration: none;
    padding: 8px;
}


/* ########### BOYAMETRE ########### */
.boyametre {
    /*margin-bottom: 25vh;*/
    /*display: flex;
    background-color: var(--color-red-dark2);
    margin-bottom: 15%;*/
    /*padding: 30px;*/
}

.boyametre h4 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--bs-white);
    text-align: center;
    margin: 40px 0;
}

.boyametre .block {
    padding-bottom: 14px;
}

.boyametre .block .image {
    display: flex;
    height: 580px;
    height: 30vw;
    margin-bottom: -60px;
}

.boyametre .block .image img {
    width: 100%;
    height: auto;
}

      /*  .boyametre .block:nth-child(1) .image {
            align-items: flex-start;
        }

        .boyametre .block:nth-child(2) .image {
            align-items: center;
        }

        .boyametre .block:nth-child(3) .image {
            align-items: flex-end;
        }*/

        .boyametre .form-group {
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .boyametre .form-group strong {
            display: block;
            font-size: 22px;
            line-height: 30px;
            letter-spacing: 0.03em;
            color: var(--bs-white);
        }

        .boyametre .form-group span {
            display: block;
            font-size: 18px;
            line-height: 30px;
            letter-spacing: 0.03em;
            color: var(--bs-white);
        }

        .boyametre .form-group input {
            border: none;
            border-bottom: 1px solid var(--bs-white);
            background-color: rgba(255,255,255, .1);
            font-size: 18px;
            line-height: 30px;
            text-align: center;
            color: var(--bs-white);
            margin: 0 5px 8px 5px;
        }

        .boyametre .form-group input:focus {
            outline: none;
        }

        .calculator {
            display: flex;
            justify-content: center;
            margin-bottom: 35px;
        }

        .calculator .block {
            display: flex;
            font-size: 14px;
            color: var(--bs-white);
            border-radius: 50px;
            background-color: var(--color-gray-db);
        }

        .calculator .block + .block {
            margin-left: 2vw;
        }

        .calculator .block span {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--color-red-dark2);
            border-radius: 50px;
            min-width: 150px;
            margin-right: 20px;
        }

        .calculator .block select {
            background-color: transparent;
            border: none;
            margin-right: 20px;
            font-size: 16px;

        }
        .calculator .block input {
            background-color: transparent;
            border: none;
            margin-right: 20px;
            font-size: 16px;
            width: 100px;
        }

        .calculator .block.btn-calculate {
            width: 150px;
            font-weight: 600;
            align-items: center;
            justify-content: center;
            background-color: var(--color-red-dark2);
            padding: 10px;
        }

        .calculator .block.btn-calculate:focus {
            box-shadow: 0 0 0 0.25rem rgb(248 0 25 / 25%);
        }

        .calculator .block.btn-clear {
            width: 150px;
            font-weight: 600;
            align-items: center;
            justify-content: center;
            background-color: var(--color-gray-88);
            padding: 10px;
        }

        .calculator .block.btn-clear:focus {
            box-shadow: 0 0 0 0.25rem rgb(0 0 0 / 25%);
        }

        .calculator-info {
            font-size: 16px;
            padding-bottom: 10px;
            text-align: center;
        }


/* ########### SECTION TITLE ########### */
.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.section-title h1 {
    font-family: 'Metro Bold';
    font-weight: bold;
    font-size: 38px;
    margin: 0;
}

.section-title nav {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.section-title nav a {
    display: flex;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
    color: var(--color-black-22);
}

.section-title nav a:hover {
    color: var(--color-red);
}

.section-title nav a::after {
    content: '';
    display: inline-block;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin: 0 12px 0 8px;
}


/* Paint Area */
.paint-area {
    transition: all .3s;
    background-color: transparent;
    width: calc( calc(180px * 8) + calc(12px * 8) - 12px );
    max-width: 80%;
    margin: 0 auto;
}

.paint-area > img {
    width: 100%;
    height: auto;
}

.color-pallet {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px -6px;
}

.color-pallet .block {
    margin: 6px;
}

.color-pallet .block span {
    display: block;
    width: 180px;
    height: 100px;
    border-radius: 20px;
}

.color-pallet .block small {
    display: block;
    font-size: 11px;
    padding: 5px;
}

/*
    ##################################################################
    ##################################################################
    ##################################################################


    ##################################################################
    ##################################################################
    ##################################################################

*/
/* ########### Typology ########### */
.dropdown-menu-center {
    top: 52px !important;
    text-align: center;
    right: auto;
    left: 50% !important;
    -webkit-transform: translate(-50%, 0) !important;
    -o-transform: translate(-50%, 0) !important;
    transform: translate(-50%, 0) !important;
}

.dropdownPol .dropdown-toggle {
    padding: 6px 25px;
    margin-bottom: 30px;
    background: #ebebeb;
    font-size: 24px;
    font-weight: 700;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    border-radius: 32px;
    box-shadow: none;
}

.dropdownPol .dropdown-toggle::after {
    border: 0;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "\f107";
    color: #4b4b4b;
    vertical-align: middle;
}

.dropdownPol .dropdown-menu {
    width: 100%;
}

.dropdownPol .dropdown-menu li a {
    white-space: normal
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

p,
ul,
li {
    font-size: 14px;
    line-height: 150%;
}

.shadowImg {
    padding: 10px 15px;
}

.shadowImg img {
    width: 100%;
    -webkit-box-shadow: -10px 15px 0 5px #e5e5e5;
    box-shadow: -10px 15px 0 5px #e5e5e5;
}

section {
    padding: 0 20px;
}

.pageTitle {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.pageContent {
    margin-left: 20px;
}

.loadMore {
    margin-top: 70px;
    padding: 38px 0;
    background: #e5e5e5;
    transition: all .2s ease;
}

.loadMore span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #727272;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    transition: all .2s ease;
}

.loadMore:hover span {
    background: var(--color-red);
}

.loadMore span + span {
    margin-left: 5px;
}

.breadcrumb-page {
    margin-bottom: 0;
}

.breadcrumb-page .breadcrumb-item a,
.breadcrumb .breadcrumb-item {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #000;
    text-decoration: none;
}

.breadcrumb-page .breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-page .breadcrumb-item + .breadcrumb-item::before {
    content: "";
    width: 8px;
    height: 16px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: cover;
    background-position: center;
    transform: rotate(270deg);
    margin-top: -1px;
    margin-right: 5px;
    line-height: 16px;
}

/* ########### ASIDE ########### */
aside {
    padding: 20px 50px 20px 0;
    border-right: 1px solid #dcdcdc
}

aside .asideTitle {
    font-weight: 900;
    font-size: 17px;
    line-height: 13.79px;
    margin-bottom: 20px
}

aside .asideList {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

aside .asideList li a {
    display: block;
    font-size: 14px;
    letter-spacing: -0.02px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: all .2s ease;
    padding: 10px 0;
}

aside .asideList a:hover,
aside .asideList a.active {
    color: var(--color-red);
}

aside .asideList li + li {
    border-top: 1px dashed #dcdcdc
}

aside .asideList ul {
    padding: 0;
    list-style-type: none;
}

aside .asideList ul li a {
    padding-left: 25px;
}

aside .asideList ul li a:before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    width: 6px;
    height: 6px;
    background: #a8a7a3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

aside .asideList ul li {
    border-top: 1px dashed #dcdcdc
}

aside .asideList ul ul li a {
    padding-left: 59px
}

/* ########### ACCORDİON ########### */
.accordionPol {
    margin-bottom: 30px
}

.accordionPol .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordionPol .accordion-item:first-of-type .accordion-button {
    border-radius: 0
}

.accordionPol .accordion-button {
    border: 0;
    padding: 10px 8px;
    color: #000;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    box-shadow: none;
}

.accordionPol .accordion-button::after {
    background-image: url(../images/icon-plus.png)
}

.accordionPol .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon-minus.png)
}

.accordionPol .accordion-collapse {
    border: 0
}

.accordionPol .accordion-item {
    padding-top: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6)
}

.accordionPol .accordion-item + .accordion-item {
}

.accordionPol .accordion-body {
    /*padding: 20px 8px;*/
    overflow : auto;
}

/* ########### REFERENCES ########### */

.referencesBox {
    margin-bottom: 50px;
}

.referencesBox .image {
    display: block;
    position: relative;
    width: 100%;
    height: 170px;
}

.referencesBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.referencesBox strong {
    color: #1c1c1c;
    display: block;
    padding: 10px 0;
    transition: all .2s ease;
}

.referencesBox:hover strong {
    color: var(--color-red);
}

/* ########### E-BROCHURE ########### */
.brochureList .brochureBox {
    display: block;
    padding: 0 35px;
    text-align: center;
    margin-bottom: 50px;
}

.brochureList .brochureBox a {
    display: block;
    color: #1c1c1c;
    text-decoration: none;
    transition: all .2s ease;
}

.brochureList .brochureBox a:hover {
    color: var(--color-red);
}

.brochureList .brochureBox .brochurePhoto {
    display: block;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}

.brochureList .brochureBox .brochurePhoto img {
    width: 100%;
}

.brochureList .brochureBox strong {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400
}


/* ########### SALES POINT ########### */
#salesPoints {
    display: block;
}

#salesPoints .accordionPol .accordion-item .accordion-button[aria-expanded="true"] {
    color: #a53131;
}

#salesPoints .accordionPol .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon-minus-red.png)
}



#salesPoints .accordionPol .accordion-body {
    border-top: 1px solid #a53131;
    font-size: 14px;
    font-weight: 400
}

#salesPoints .accordionPol .accordion-body .name {
    font-size: 14px;
    color: #a53131
}

#salesPoints .accordionPol .accordion-body .type {
    color: #a53131
}

#salesPoints .accordionPol .accordion-body .mapsLink {
    color: #a53131;
    text-decoration: none;
}


/*salesPointFilter .dropdownPol .dropdown-toggle {
    padding: 10px 45px;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    height: 64px;
}

.salesPointFilter .searchInput input {
    padding: 10px 70px 10px 40px;
    text-align: center;
    height: 64px;
    background: #ebebeb;
    font-size: 18px;
    font-weight: 500;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    border-radius: 32px;
    box-shadow: none;
    border: 0;
    outline: none;
}

.salesPointFilter .searchInput {
    position: relative;
}

    .salesPointFilter .searchInput .btn {
        content: "";
        position: absolute;
        right: 25px;
        top: 50%;
        outline: none !important;
        display: inline-block;
        transform: translateY(-50%);
        z-index: 2;
        box-shadow: none !important;
    }

        .salesPointFilter .searchInput .btn svg {
            width: 32px;
        }

.salesPointFilter > * + * {
    margin-left: 50px
}*/
/* ########### MEDIA ########### */
.mediaList .mediaBox {
    color: #282828;
    padding: 20px 0;
    text-decoration: none;
    border-bottom: 1px solid #666666;
    transition: all .2s ease;
}

.mediaList .mediaBox:hover {
    color: var(--color-red);
}

.mediaList .mediaBox strong {
    display: inline-block;
    margin-right: 8px;
    font-size: 14px;
    font-weight: 500;
}

.mediaList .mediaBox i {
    color: #686868;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
}


/* ########### KARTELA ########### */
.kartelaBox {
    position: relative;
    margin-bottom: 30px;
    transition: all .2s ease;
}

.kartelaBox:hover {
    /*transform: scale(1.01);*/
    z-index: 3
}

.kartelaBox:hover .color {
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.34);
}

.kartelaBox:hover .color img {
    width: 100%;
    height: 150px
}

.kartelaBox strong {
    display: block;
    padding: 10px 15px 0;
    font-weight: 400;
    font-size: 12px;
}

.kartelaBox:hover strong {
    /*transform: scale(0.9);*/
}

.kartelaBox .kartelaColor {
    position: relative;
}

.kartelaBox .kartelaColor .color {
    width: 100%;
    height: 150px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

.kartelaBox .kartelaColor a {
    position: absolute;
    display: none;
    right: 20px;
    bottom: 20px;
}

.kartelaBox:hover .kartelaColor a {
    display: block;
    transform: scale(0.9)
}

#ekartela .accordionPol .accordion-body {
    border-top: 1px solid #000;
    font-size: 18px;
    font-weight: 400;
    overflow-x: hidden;
}

/* ########### APPS ########### */
.appbox2 {
    margin-top: -100px;
}

/* ########### CONTACT ########### */
#maps .mapsBox {
    position: relative;
}

#maps .mapsBox .adressBox {
    position: absolute;
    right: 130px;
    top: 50%;
    transform: translateY(-50%)
}

#maps .mapsBox .adressBox .adress {
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.34);
    width: 315px;
    padding: 25px 15px;
    background: var(--bs-white);
}

#maps .mapsBox .adressBox .adress .icon img {
    height: 30px;
}

#maps .mapsBox .adressBox .adress .name {
    display: block;
    margin: 30px 0;
    font-size: 16px;
    font-weight: 500;
    color: #9a162c;
}

#maps .mapsBox .adressBox .adress .content {
    flex-basis: 100%;
}

#maps .mapsBox .adressBox .adress span {
    display: block;
    font-size: 14px;
}

#maps .mapsBox .adressBox .adress span strong {
    display: block;
}

#maps .mapsBox .adressBox .adress span + span {
    margin-top: 15px;
}

#maps .mapsBox .adressBox .adress .mapsButton {
    display: block;
    padding: 10px;
    margin-top: 20px;
    font-size: 14px;
    text-decoration: none;
    color: var(--bs-white);
    background: #333232;
    text-align: center;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    border-radius: 32px;
    transition: all .2s ease;
}

#maps .mapsBox .adressBox .adress .mapsButton:hover {
    text-decoration: none;
    background: var(--color-red);
}

#maps .mapsBox .adressBox .adress + .adress {
    margin-left: 35px;
}


#contactForm .form {
    margin: 30px 0
}

#contactForm .form-control {
    border-color: #b2b2b2;
    font-size: 14px;
    font-weight: 500;
    color: #b2b2b2;
    padding: 0;
    height: 54px;
    text-align: center;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    -ms-border-radius: 27px;
    -o-border-radius: 27px;
    border-radius: 27px;
}

#contactForm .form-control::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #b2b2b2;
}

#contactForm .contactSelect {
    position: relative;
    font-weight: 500;
    color: #b2b2b2;
    font-size: 14px;
    padding: 0;
    height: 54px;
    text-align: center;
    border: 1px solid #b2b2b2;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    -ms-border-radius: 27px;
    -o-border-radius: 27px;
    border-radius: 27px;
    overflow: hidden;
}

#contactForm .select2-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 100%;
}

#contactForm .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    width: 100%;
    text-align-last: center;
    z-index: 3;
    height: 100%;
    text-align: center !important;
    font-size: 14px;
    font-weight: 500;
    color: #b2b2b2;
    border: 0;
    padding: 0;
    background-image: none;
    background-color: transparent;
    outline: none;
}

#contactForm .select2-container--default .selection {
    display: block;
    flex-basis: 100%;
    padding: 0 10px;
}

#contactForm .select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 100%;
    padding: 0;
}

#contactForm .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: relative;
}

#contactForm .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 6px 8px 0 8px
}

/*#contactForm .contactSelect:after {
        position: absolute;
        z-index: 2;
        right: 25px;
        top: 50%;
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-color: #b2b2b2;
        border-top: 7px solid;
        border-right: 8px solid transparent;
        border-bottom: 0;
        border-left: 8px solid transparent;
        transform: translateY(-50%)
    }*/
    #contactForm .messageInput input {
        width: 100%;
        border: 0;
        background: transparent !important;
        padding: 10px 0;
        font-weight: 500;
        outline: none;
        color: #b2b2b2;
        font-size: 14px;
        border-bottom: 1px solid #b2b2b2
    }

    #contactForm .messageInput input:focus {
        border-color: var(--color-red);
    }


    #contactForm .messageInput textarea {
        width: 100%;
        border: 0;
        background-attachment: local;
        background-image: linear-gradient(to right, white 10px, transparent 10px), linear-gradient(to left, white 10px, transparent 10px), repeating-linear-gradient(white, white 30px, #ccc 30px, #ccc 31px, white 31px);
        line-height: 31px;
        padding: 10px 10px;
        font-weight: 500;
        outline: none;
        color: #b2b2b2;
        font-size: 14px;
        border: none;
    }

    #contactForm .messageInput textarea:focus {
        border-color: var(--color-red);
    }

    #contactForm .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
        padding: 0;
        background: #9b162d;
        color: var(--bs-white);
        width: 254px;
        height: 45px;
        font-size: 18px;
        font-weight: 500;
        max-width: 100%;
        -webkit-border-radius: 38.5px;
        -moz-border-radius: 38.5px;
        -ms-border-radius: 38.5px;
        -o-border-radius: 38.5px;
        border-radius: 38.5px;
    }

    #headshipList .accordionPol .accordion-item .accordion-button[aria-expanded="true"] {
        color: #a53131;
    }

    #headshipList .accordionPol .accordion-body {
        border-top: 1px solid #000;
    }

    #headshipList .headshipBox > * {
        display: block;
    }

    #headshipList .headshipBox strong {
        margin-bottom: 15px;
        color: #a42e2d;
        font-size: 14px;
        font-weight: 500;
    }

    #headshipList .headshipBox span {
        color: #282828;
        font-size: 13px;
        max-width: 300px;
    }

    #headshipList .headshipBox span + span {
        margin-top: 5px;
    }

    #headshipList .headshipBox a {
        color: #a42e2d;
        text-decoration: none;
    }


    .btn-comments {
        padding: 7px 25px;
        background: #e32118;
        color: var(--bs-white);
        font-size: 16px;
        line-height: 24px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
    }

    .socialLink {
        font-size: 24px;
        color: #000;
        display: block;
        text-align: center;
    }


    .hc-offcanvas-nav ul,
    .hc-offcanvas-nav ul.collapse:not(.show) {
        display: block;
        position: initial;
    }

    .salesPointFilter {
        position: relative;
    }

    .salesPointFilter .select2 {
        width: auto !important;
        margin: 0 1vw;
    }

    .salesPointFilter .select2:focus,
    .salesPointFilter .select2-container--focus {
        outline: none;
    }

    .salesPointFilter .select2-container .selection .select2-selection {
        display: flex;
        align-items: center;
        padding: 10px 45px;
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        height: 40px;
        background: #ebebeb;
        border-radius: 20px;
        border: none;
    }

    .salesPointFilter .select2-container.select2-container--open .selection .select2-selection {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .salesPointFilter .select2-container .selection .select2-selection .select2-selection__arrow {
        top: 50%;
        right: 30px;
        transform: translate(0, -50%);
    }

    .select2-container--open .select2-dropdown--below {
        background-color: #ebebeb;
        border: none;
    }


    .polisan-form .form-control,
    .polisan-form .form-select {
        padding: 15px;
        border-radius: 0;
    }

    .polisan-form .btn-secondary {
        width: 100%;
        border-radius: 0;
        padding: 15px;
    }


    #siteContracts {
        display: none;
        position: fixed;
        z-index: 900;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: rgba(var(--color-rgb-black), .7);
        padding: 15px;
    }

    #siteContracts p {
        margin: 0;
        font-size: 13px;
        text-align: center;
    }

    #siteContracts,
    #siteContracts p,
    #siteContracts a {
        color: var(--bs-white);
    }

    #siteContracts .btn-close {
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 22px;
        background-color: var(--bs-light);
        border-radius: 0;
        opacity: 1;
    }


/*loader*/
.loader {
    position: relative;
    left: 50%;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid blue;
    border-right: 8px solid green;
    border-bottom: 8px solid red;
    border-left: 8px solid pink;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.affiliates a {
    display: block;
    text-align: center;
}

.affiliates img {
    max-width: 240px;
}

#hoverProduct {
    display: none;
    position: absolute;
    z-index: 5;
    width: 120px;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,.2);
    border-radius: 5px;
    padding: 8px 4px;
}

#hoverProduct img {
    width: 100%;
    height: auto;
}

#hoverProduct strong {
    display: block;
    font-size: 11px;
    text-align: center;
}



/*CKeditor classes*/
.img12 {
    width: 50% !important;
}

.img13 {
    width: 33% !important;
}

.img14 {
    width: 25% !important;
}
.table {
    font-size : 13px !important;
}

th {
    background-color: #dcdcdc !important;
}

.fa-25 {
    font-size: 2.5em;
}




@media only screen and (max-width: 950px) {
#mediaLinks .media-link {
    width: 100% !important;
 }
 #mediaLinks {
     display:block !important;
     flex-wrap: nowrap !important;
 }
 #mediaLinks .swiper-wrapper {
     display:block !important;
 }
}
