.blur {
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba6) !important
}

.blur-header {
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}


.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: var(--whitergba5)!important;*/
    display: none;
    /*-webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);*/
    /*-webkit-backdrop-filter: saturate(150%) blur(5x);
  backdrop-filter: saturate(150%) blur(5px);*/
    z-index: 2995;
    transition: all 0.4s cubic-bezier(.7, 1, .7, 1);
}

.show-backdrop {
    visibility: visible;
    display: block;
}

.hidden-backdrop {
    visibility: hidden;
    display: none;
}

.radius7 {
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    border-radius: 3px !important;
    overflow: hidden !important;
}

/*SOCIAL*/
.social-icons li a {
    background: var(--lblue2);
    color: var(--white);
}

/*SOCIAL*/
.social-icons-gray li a {
    background: var(--f4f4f4);
    color: var(--gray4);
}


.color-white {
    color: var(--white) !important
}

.color-dblue {
    color: var(--dblue2);
}

.color-lblue {
    color: var(--lblue2);
}

.color-orange {
    color: var(--orange2);
}

.bg-white {
    background: var(--white);
}

.bg-dblue {
    background: var(--dblue2);
}

.bg-lblue {
    background: var(--lblue2);
}

.bg-lblue-gradient {
    background: var(--lblue1);
    background: -moz-linear-gradient(left, var(--lblue1) 0%, var(--lblue3) 100%);
    background: -webkit-linear-gradient(left, var(--lblue1) 0%, var(--lblue3) 100%);
    background: linear-gradient(to right, var(--lblue1) 0%, var(--lblue3) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--lblue1)', endColorstr='var(--lblue3)', GradientType=1);

}

.bg-orange {
    background: var(--orange2);
}

.bg-blackrgba1 {
    background: var(--blackrgba1);
}

.radius50 {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.btn {
    font-family: var(--theme-font);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    padding: 12px 40px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid var(--orange2);
    background-color: var(--orange2);
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

}

.btn:hover,
.btn:focus {
    background-color: var(--gray5);
    border-color: var(--gray5);
    color: var(--white);
}


.btn.btn-center {
    margin: 0 auto;
    width: auto;
    min-width: 160px
}

.btn.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn.btn-lgp {
    padding: 12px 60px;
    font-size: 16px;
}

.btn.btn-md {
    padding: 8px 20px
}

.btn.btn-sm {
    padding: 5px 25px;
}

.btn.round {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.btn.btn-mw {
    min-width: 190px
}

.btn-arrow {
    position: relative;
}

.btn-arrow span {
    display: inline-block;
    position: relative;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    will-change: transform;
}

.btn-arrow:hover span,
.btn-arrow:focus span {
    -webkit-transform: translate3d(-1rem, 0, 0);
    transform: translate3d(-1rem, 0, 0);
}

.btn-arrow i {
    position: absolute;
    width: 1.1em;
    right: 0px;
    right: 0rem;
    opacity: 0;
    top: 49%;
    font-size: 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    will-change: right, opacity;
}

.btn-arrow:hover i,
.btn-arrow:focus i {
    opacity: 1;
    right: -2rem;
}


.btn-arrow svg {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 0px;
    right: 0rem;
    opacity: 0;
    top: 49%;
    font-size: 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    will-change: right, opacity;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--orange2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:focus svg,
.btn:hover svg {
    fill: var(--white) !important;
    opacity: 1;
    right: -2rem;
}


.btn-orange {
    color: var(--white);
    border: 2px solid var(--orange2);
    background-color: var(--orange2);

}

.btn-orange:hover,
.btn-orange:focus {
    background-color: var(--orange3);
    border-color: var(--orange3);
    color: var(--white)
}

.btn-lblue {
    color: var(--white);
    border: 2px solid var(--lblue2);
    background-color: var(--lblue2);

}

.btn-lblue:hover,
.btn-lblue:focus {
    background-color: var(--lblue3);
    border-color: var(--lblue3);
    color: var(--white)
}

.btn-dblue {
    color: var(--white);
    border: 2px solid var(--dblue2);
    background-color: var(--dblue2);

}

.btn-dblue:hover,
.btn-dblue:focus {
    background-color: var(--dblue3);
    border-color: var(--dblue3);
    color: var(--white)
}


.btn-whatsapp {
    color: var(--white);
    border: 2px solid var(--Whats1);
    background-color: var(--Whats1);

}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: var(--Whats2);
    border-color: var(--Whats2);
    color: var(--white)
}


.link-btn {
    display: inline-block;
    font-size: 15px;
    line-height: normal;
    padding: 11px 32px 11px 31px;
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    z-index: 9;
    vertical-align: middle;
    text-transform: uppercase;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: var(--gray5);
}

.link-btn.btn-inline {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0;
    border: 1px solid transparent;
    background-color: transparent;
    overflow: visible;
    color: var(--gray5);
}

.link-btn.btn-inline:before,
.link-btn.btn-inline:after {
    position: absolute;
    content: "";
    bottom: -8px;
    left: auto;
    right: 0;
    width: 0;
    height: 3px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    background: var(--gray5);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.link-btn.btn-inline:before {
    width: 100%;
}

.link-btn.btn-inline:hover:after {
    width: 100%;
    right: auto;
    left: 0;
    background: var(--dblue2);
}

.link-btn.btn-inline:hover {
    color: var(--dblue2);
}


.btn-theme {
    background: #333;
    padding: 15px 25px;
    line-height: 40px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    color: #fff
}

.btn-theme:focus,
.btn-theme:hover {
    background: #606060;
    color: #fff
}


.linking {
    position: relative;
    color: var(--lblue2);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--theme-font) !important;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


.linking:before {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


.linking:hover:before {
    width: 100%;
    background: var(--lblue2);
}


.linking i {
    font-size: 24px;
    position: relative;
    top: 3px;
    margin-left: -25px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    color: var(--gray3);
}


.linking svg {
    position: relative;
    top: 1px;
    width: 15px;
    height: 15px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--dblue2) !important;
    opacity: 0;
    margin-left: -25px;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.linking:hover {
    color: var(--dblue2);
}

.linking:hover svg,
.linking:hover i {
    margin-left: 0px;
    opacity: 1;
}


.cd-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--blackrgba7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    z-index: 9999
}

.cd-popup.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 4em auto;
    background: var(--white);
    border-radius: 0;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba2);
    box-shadow: 0px 5px 25px 0px var(--blackrgba2);
    overflow: hidden;
}

.cd-popup-container p {
    padding: 3em 1em;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--gray3);
}

.cd-popup-container .cd-buttons:after {
    content: "";
    display: table;
    clear: both;
}

.cd-popup-container .cd-buttons li {
    float: left;
    width: 50%;
    list-style: none !important;

}

.cd-popup-container .cd-buttons a {
    display: block;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    color: var(--white);
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.cd-popup-container .cd-buttons li:first-child a {
    background: var(--lblue2);

}

.cd-popup-container .cd-buttons li:first-child a:hover,
.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
    background-color: var(--lblue1) !important;
    color: var(--white) !important;
}

.cd-popup-container .cd-buttons li:last-child a {
    background: var(--dblue2);

}

.cd-popup-container .cd-buttons li:last-child a:hover,
.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
    background-color: var(--dblue1) !important;
    color: var(--white) !important;
}


.cd-popup-container .cd-popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 38px;
    height: 38px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


@media only screen and (min-width: 1170px) {
    .cd-popup-container {
        margin: 8em auto;
    }
}

.transparent50 {
    opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */
}

.table-hover tbody tr {
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}


.shopping-cart .dellcadlist {
    opacity: 1;
    color: var(--red) !important;
    font-size: 24px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 5px 10px;
    background: var(--cccccc);
    text-align: center;
}

.shopping-cart .dellcadlist:hover {
    color: var(--white) !important;
    background: var(--red);
}


/*Quantity Field Form*/
.shopping-cart .quantity-button {
    color: var(--gray3);
    width: 38px;
    height: 40px;
    padding: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    background: var(--f4f4f4);
    text-align: center;
    font-weight: normal;
    white-space: nowrap;
    display: inline-block;
    background-image: none;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.shopping-cart .quantity-field {
    width: 60px;
    height: 40px;
    outline: none;
    margin: 0px;
    font-size: 18px;
    text-align: center;
    padding: 5px;
    display: inline-block;
    border: 0px solid #ccc;
    color: var(--gray3);
    font-weight: bold;
    background: var(--f4f4f4);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


.valido {
    border: 3px solid #1ec01e !important;
}

.invalido {
    border: 3px solid #c00 !important;
}


/*Contacts*/
.sidebar .contacts ul {
    width: 100%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
}


.sidebar .contacts li {
    color: var(--gray3);
    padding: 7px 0px 7px;
    border-bottom: 1px solid var(--f1f1f1);
    font-size: 15px;
    margin-bottom: 1px;
    width: auto;
    display: block;
    text-align: left;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    font-weight: bold;
}

.sidebar .contacts li:last-child {
    border-bottom: none !important;
}


.sidebar .contacts li:before,
.sidebar .contacts li:after {
    content: " ";
    display: table;
}

.sidebar .contacts li:after {
    clear: both;
}

.sidebar .contacts li i {
    float: left;
    font-size: 20px;
    text-align: left;
    margin: 0px 3px 0 0;
    display: inline-block;
    width: 30px;
    line-height: 24px;
    color: var(--gray3);
}

.sidebar .contacts li p {
    margin-bottom: 0;
    color: var(--gray3);
    font-size: 14px;
}

.content-footer.contacts li {
    color: var(--gray3);
    font-size: 16px;
}

.sidebar .contacts li a {
    color: var(--gray3);
    font-size: 16px;
    line-height: 1.1
}

.sidebar .contacts li a:hover {
    color: var(--lblue2);
    padding-left: 10px;
    border-color: var(--blackrgba1);
}

.sidebar .contacts svg {
    position: relative;
    top: 1px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 1.5;
    color: var(--lblue2);
    fill: var(--lblue2);
    margin-right: 7px;
}

.social-side-bar svg {
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 1.5;
    color: var(--white);
    fill: var(--white);

}


.sidebar .heading h1,
.sidebar .heading h2,
.sidebar .heading h3 {
    color: var(--gray3);
    display: inline-block;
    font-weight: normal;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 24px;
}


.sidebar .heading h1::before,
.sidebar .heading h2::before,
.sidebar .heading h3::before {
    background: var(--lblue1) none repeat scroll 0 0;
    bottom: 5px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 55px;
}


.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 0px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 0px 20px;
    margin: 1px;
    line-height: 50px;
    color: var(--white);
    height: 50px;
    text-decoration: none;
    background-color: var(--dblue2);
    border: 0px solid var(--white);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none !important;
    font-size: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.pagination > li > span {
    font-size: 24px !important;
    padding-top: 12px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: var(--white);
    background-color: var(--lblue2);
    border-color: var(--white);
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: var(--white);
    cursor: default;
    background-color: var(--lblue1);
    border-color: var(--white);
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: var(--white);
    cursor: not-allowed;
    background-color: var(--gray3);
    border-color: var(--white);
}

.pagination svg {
    position: relative;
    top: -1px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.pager li > a,
.pager li > span {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}

.pager li > a,
.pager li > span {
    color: var(--white);
    border-color: transparent !important;
    background: var(--gray3);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.pager li > a:hover,
.pager li > span:hover {
    color: var(--white);
    background: var(--lblue2);
    border-color: transparent !important;
}


.content_post ul {
    display: inline-block;
    width: auto;
    padding: 10px;
}

.content_post ul > li {
    margin: 0px 5px;
    padding: 3px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    opacity: 1.0;
    transition: opacity .2s ease-in-out;
    list-style-type: disc;
}

.content_post ul > li:hover {
    opacity: 1.0;
}

.content_post ul:hover > li:not(:hover) {
    opacity: 0.8;
}

.label--checkbox {
    position: relative;
    margin: 0;
    cursor: pointer;
    background: var(--white);
    font-weight: bold;
    display: block;
}

.label--checkbox strong {
    padding-left: 5px;
    font-size: 1rem;
    font-weight: normal;
}

.checkbox {
    position: relative;
    top: -0.375rem;
    margin: 0 1rem 0 0;
    cursor: pointer;
}

.checkbox:before {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    width: 28px;
    height: 28px;
    border: 4px solid var(--gray3);
}

.checkbox:checked:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 1rem;
    border-color: var(--lblue2);
    border-top-style: none;
    border-right-style: none;
}

.checkbox:after {
    content: "";
    position: absolute;
    top: -0.125rem;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    background: var(--white);
    cursor: pointer;
}


.info-error {
    padding: 30px 0px;
}

.error-page .error-page-title {
    color: var(--lblue2);
    font-size: 50px;
    padding: 0px;
    line-height: 1.1;
    padding-bottom: 0px;
    font-family: var(--special-font);
    font-weight: bold;
}


.error-page .error-page-subtitle {
    color: var(--gray3);
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.error-page p {
    color: var(--gray3);
    font-size: 16px;
}


.image-bl,
.image-bl img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}


.overlay-link {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}


.pageTitle {
    padding: 220px 0 70px;
    position: relative;
    background-size: cover;
    top: 0px;
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}


@media only screen and (max-width: 1240px) {
    .pageTitle {
        padding: 100px 0 70px;
    }


}


.pageTitle:before {
    left: 0;
    z-index: -1;
    top: 0;
    height: 100%;
    content: " ";
    position: absolute;
    width: 100%;
    background-color: var(--lbluergba5)


}

.pageTitle-content {
    position: relative;
    top: -75px;
    padding: 75px 0 65px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--lbluergba7) !important
}


.titlepageSite h1,
.titlepageSite h2,
.titlepageSite h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    padding-left: 15px;
    text-transform: uppercase;
}

.titlepageSite h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 0px;
}


.titlepageSite h2 {
    font-size: 30px;
    line-height: 1.1
}


.titlepageSite h3 {
    font-size: 24px;
    line-height: 1.1
}


#cd-google-map {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--white);
}

#google-container {
    position: relative;
    width: 100%;
    height: 500px !important;
    background: var(--white);
}


#cd-google-map address {
    position: absolute;
    z-index: 30;
    width: auto;
    max-width: calc(100% - 60px);
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: var(--whitergba8);
    text-align: center;
    -webkit-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    font-weight: bold;


    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
}

#cd-google-map address p {
    font-weight: 600;
}


#cd-google-map .linksmaps {
    position: absolute;
    z-index: 30;
    width: auto;
    max-width: calc(100% - 60px);
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 25px 3px 25px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-color: var(--whitergba8);
    text-align: center;
    -webkit-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    box-shadow: 0px 7px 35px 0px var(--blackrgba5);
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
}

#cd-google-map .linksmaps ul {
    margin: 0 !important;
    padding: 0 !important;
}


#cd-google-map .linksmaps ul svg {
    position: relative;
    top: 2px;
    width: 28px;
    height: 28px;
    vertical-align: text-top;
    stroke-width: 1.5;
    fill: var(--white) !important;

}


.aboutus-item {
    padding: 30px 40px 30px 40px;
    border-style: solid;
    border-width: 0 0 0 0;
    background-color: transparent;
    background-image: linear-gradient(110deg, var(--lblue2) 0%, var(--dblue2) 100%);
    -webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    box-shadow: 0px 5px 25px 0px var(--blackrgba1);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

}


.aboutus-item:active,
.aboutus-item:focus,
.aboutus-item:hover {
    -webkit-box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    box-shadow: 0px 5px 35px 0px var(--blackrgba3);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);

}

.aboutus-item .content-box h3 {
    color: var(--white);
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.aboutus-item .content-box p {
    color: var(--white);
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: normal;
}


.aboutus-item .content-box ul {
    position: relative;
    display: inline-block;
    text-align: left;
}

.aboutus-item .content-box ul li {
    position: relative;
    font-size: 16px;
    line-height: 1.2;
    color: var(--white);
    font-weight: normal;
    margin-bottom: 15px;
    list-style-type: circle;
    list-style-position: inside;
}


/*
.aboutus-item .content-box ul li:before {
    font-family: "Material Design Icons";
    content: "\F142";
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    position: relative;
    color: var(--dblue2);
    top: 0px;
    left: -25px;
    margin-right: -12px;
}
*/

.aboutus-item .icon-main {
    background: transparent;
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.aboutus-item .icon-main img {
    width: 125px;
}

.aboutus-item .overlay {
    z-index: 2;
    background: transparent;
}


.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}


.aboutus-item.bg-s1 {
    background-image: linear-gradient(110deg, var(--lblue3) 0%, var(--lblue1) 100%);
    background-size: 100% 100%;
}

.aboutus-item.bg-s2 {
    background-image: linear-gradient(110deg, var(--lblue1) 0%, var(--lblue3) 100%);
    background-size: 100% 100%;
}

.aboutus-item.bg-s3 {
    background-image: linear-gradient(110deg, var(--lblue3) 0%, var(--lblue1) 100%);
    background-size: 100% 100%;
}

.aboutus-item.bg-s4 {
    background-image: linear-gradient(110deg, var(--dblue3) 0%, var(--lblue1) 100%);
    background-size: 100% 100%;
}


.aboutus-item:active.bg-s1,
.aboutus-item:focus.bg-s1,
.aboutus-item:hover.bg-s1,
.aboutus-item:active.bg-s2,
.aboutus-item:focus.bg-s2,
.aboutus-item:hover.bg-s2,
.aboutus-item:active.bg-s3,
.aboutus-item:focus.bg-s3,
.aboutus-item:hover.bg-s3,
.aboutus-item:focus.bg-s4,
.aboutus-item:hover.bg-s4 {
    background-size: 200% 200%;
    background-position: 50% 0% !important;
}


.search-item-page {
    top: -20px;
    padding: 15px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    overflow: hidden;
    position: relative;
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba6) !important;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    box-shadow: 0px 0px 25px 0px var(--blackrgba2);
}


.search-box-inner {
    position: relative;
    width: 100%;
    top: -30px;
    padding: 15px;
    padding: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba9) !important;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    box-shadow: 0px 0px 25px 0px var(--blackrgba2);
}


.search-box-inner svg {
    position: absolute;
    top: 14px;
    left: 10px;
    width: 22px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--dblue2);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.search-box-inner button svg {
    position: relative;
    top: 0px;
    width: 22px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.search-box-inner .input-inner {
    position: relative;
    display: block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 10px 180px 10px 0px;

}

.bg-form-search {
    border: 0px solid var(--blackrgba2);
    /*-webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: var(--whitergba9) !important;
    -webkit-backdrop-filter: saturate(300%) blur(7x);
    backdrop-filter: saturate(300%) blur(7px);
}


.search-box-inner .input-inner .form-group {
    position: relative;
    display: inline-block;
    float: left;
    width: 50%;
    margin: 0px;
}


.search-box-inner .input-inner .btn-box {
    position: absolute;
    top: 9px;
    right: 9px;
}

.search-box-inner .input-inner .btn-box button {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    color: var(--white);
    font-weight: bold;
    text-align: center;
    padding: 14px 37px;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: var(--lblue2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.search-box-inner .input-inner .btn-box button i {
    position: relative;
    top: 1px;
    margin-right: 10px;
}


.search-box-inner .input-inner .btn-box button:hover {
    background: var(--lblue3);
}

.search-box-inner .input-inner .form-group input {
    position: relative;
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray3);
    background: transparent;
    padding: 10px 20px 10px 35px;
    border: none;
    text-align: left !important;
}

.search-box-inner .input-inner .form-group .local {
    padding: 10px 20px 10px 45px;
}

.search-box-inner .input-inner .form-group:before {
    position: absolute;
    content: '';
    background: var(--blackrgba2);
    width: 1px;
    height: calc(100% + 20px);
    top: -10px;
    right: 0px;
}

.search-box-inner .input-inner .form-group:nth-child(2):before {
    display: none;
}

.search-box-inner .input-inner .form-group i {
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 24px;
    z-index: 1;
    color: var(--lblue3);
}

.search-form .nice-select:after,
.search-box-inner .nice-select:after {
    border-bottom: 3px solid var(--gray3);
    border-right: 3px solid var(--gray3);
    height: 12px;
    width: 12px;
    margin-top: -8px;
    border-radius: 1px;
}


@media only screen and (max-width: 991px) {
    .search-box-inner .input-inner .form-group i {
        display: none;
    }

    .search-box-inner .input-inner .form-group input[type='search'] {
        padding-left: 0px;
    }

    .content-box {
        padding-top: 30px;
    }

    .search-box-inner {
        margin-top: 15px;
        padding: 30px 20px 20px 20px;
    }

    .search-box-inner .input-inner {
        padding-right: 165px;
    }

    .search-box-inner .nice-select {
        padding: 4px 35px 4px 15px;
    }

    .search-box-inner .nice-select:after {
        right: 20px;
    }

}


@media only screen and (max-width: 767px) {

    .search-box-inner .input-inner .form-group i {
        display: block;
    }

    .search-box-inner .input-inner .form-group input[type='search'] {
        padding-left: 50px;
    }

    .search-box-inner .input-inner .form-group {
        width: 100%;
        float: none;
    }

    .search-box-inner .input-inner .btn-box {
        position: relative;
        top: 0px;
        right: 0px;
        padding: 0px 15px;
    }

    .search-box-inner .input-inner .btn-box button {
        display: block;
        width: 100%;
    }

    .search-box-inner .input-inner {
        padding-right: 0px;
    }

    .search-box-inner .input-inner .form-group:before {
        display: none;
    }

    .search-box-inner .nice-select {
        padding: 4px 35px 4px 50px;
    }

    .search-box-inner .input-inner {
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        border-radius: 1px;
    }

    .search-box-inner .input-inner .btn-box button {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    .banner-section {
        padding: 70px 0px 50px 0px;
    }

    .banner-section .content-box h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .banner-section .content-box p {
        font-size: 20px;
        line-height: 1.1;
    }

    .search-box-inner {
        padding: 25px;
    }

    .bg-form-search {
        border: 0px solid var(--blackrgba2);
        -webkit-backdrop-filter: saturate(150%) blur(5x);
        backdrop-filter: saturate(150%) blur(5px);
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background-color: var(--whitergba9) !important
    }

}


#result,
#localres {
    position: absolute;
    top: 10px;
    z-index: 999999 !important;
}

.sideindex {
    z-index: 999999 !important;
}


.busca-fornecedor {
    background: var(--white);
    max-height: 250px;
    display: none;
    width: 100% !important;
    position: absolute;
    padding: 5px;

    z-index: 9999 !important;
    border-left: solid 0px #ddd;
    border-bottom: solid 0px #ddd;
    margin-top: -10px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.largurabusca {
    width: 100% !important;
}

.largurabuscakey {
    width: 100% !important;
}

.busca-local li,
.busca-fornecedor li {
    list-style: none !important;
}


.busca-fornecedor .show {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
    border-bottom: 0px solid #cccccc;
    padding: 5px 10px;
    margin-bottom: 1px;
    position: relative;
    font-size: 14px;
    text-align: left;
    font-weight: bold;
    color: var(--orange2);
    text-align: left !important;
}


.busca-fornecedor .show svg {
    position: relative;
    top: 0px;
    left: 0px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--orange2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    margin-right: 15px;
}

.busca-fornecedor:hover .show svg {
    fill: var(--orange2);
}

#searchid {
    text-align: left !important;
}

.busca-fornecedor .show a {
    color: var(--lblue2);
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    text-align: left !important;
}


.busca-fornecedor .show a:hover {
    color: var(--gray3);

}


.busca-local {
    background: var(--white);
    max-height: 360px;
    display: none;
    border-left: solid 0px #ddd;
    border-bottom: solid 0px #ddd;
    width: 100%;
    position: absolute;
    padding: 0px 10px;
    z-index: 1020;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: -10px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0 0 35px 0 var(--blackrgba1);
    -moz-box-shadow: 0 0 35px 0 var(--blackrgba1);
    box-shadow: 0 0 35px 0 var(--blackrgba1);
}

.largurabusca-local {
    width: 100%;
}


.busca-local .show {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
    border-bottom: 0px solid #cccccc;
    padding: 5px 5px;
    margin-bottom: 1px;
    position: relative;
    font-size: 15px;
    font-weight: normal;
    color: var(--lblue2);
    line-height: 1.1;
    text-align: left !important;
}


.busca-local .show a {
    color: var(--lblue2);
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    text-align: left !important;
}


.busca-local .show a:hover {
    color: var(--gray3);

}


/*

.busca-local .show:hover {
	background: #eeeeee;
	color: #222222;
	cursor: pointer;
	display: block;
	font-size: 14px;
}*/
.busca-fornecedor .showbold {
    font-weight: bold;
}

.busca-local .showbold {
    font-weight: bold;
}

.busca-fornecedor .catpai:after {
    color: #949494;
    content: "\f0c9";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 16.5px;
    left: 6px;
    margin: 0px;
    position: absolute;
    text-decoration: none;
    top: 10px;
}

.busca-fornecedor .categorias:after {
    color: #949494;
    content: "\f178";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 16.5px;
    left: 6px;
    margin: 0px;
    position: absolute;
    text-decoration: none;
    top: 10px;
}

.busca-fornecedor .empresas:after {
    color: #949494;
    content: "\f0b1";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 16.5px;
    left: 6px;
    margin: 0px;
    position: absolute;
    text-decoration: none;
    top: 10px;
}

.busca-fornecedor .exclamation:after {
    color: #949494;
    content: "\f06a";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 16.5px;
    left: 6px;
    margin: 0px;
    position: absolute;
    text-decoration: none;
    top: 10px;
}

.busca-local .estado:after {
    color: #949494;
    content: "\f041";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 16.5px;
    left: 6px;
    margin: 0px;
    position: absolute;
    text-decoration: none;
    top: 10px;
}

.busca-local .cidade:after {
    color: #949494;
    content: "\f124";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    font-size: 16.5px;
    left: 6px;
    margin: 0px;
    position: absolute;
    text-decoration: none;
    top: 10px;
}

@media (max-width: 767px) {
    .busca-fornecedor {
        width: 100% !important;
    }

    .busca-local {
        width: 100% !important;
    }
}


.main-container {
    margin-top: -75px;
}

@media (max-width: 767px) {
    .main-container {
        margin-top: 0px;
    }
}


.hidden {
    display: none !important;
    visibility: hidden !important;
}


.site-heading h1,
.site-heading h2,
.site-heading h3 {
    display: inline-block;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 0;
    position: relative;
    line-height: 1.2;
}

.site-heading span {
    display: block;
    width: 100%;
    margin: 0px 0px 5px 0px;
    font-weight: bold;
    font-size: 16px;
    color: var(--lblue2);
    line-height: 1.1;
    text-transform: uppercase;
}

.site-heading p {
    margin: 0;
    margin-top: 15px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.site-heading h1::before,
.site-heading h2::before,
.site-heading h3::before {
    background: var(--lblue2) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 5px;
    left: 50%;
    margin-left: -35px;
    position: absolute;
    width: 50px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.site-heading h1::after,
.site-heading h2::after,
.site-heading h3::after {
    background: var(--dblue2) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 5px;
    left: 50%;
    margin-left: 20px;
    position: absolute;
    width: 20px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.site-heading.text-left h1::before,
.site-heading.text-left h2::before,
.site-heading.text-left h3::before {
    left: 0;
    margin-left: 0;
}

.site-heading.text-left h1::after,
.site-heading.text-left h2::after,
.site-heading.text-left h3::after {
    left: 55px;
    margin-left: 0;
}


.shop-item {
    position: relative;
    -webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    box-shadow: 0px 0px 25px 0px var(--blackrgba1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.shop-item:hover,
.shop-item:focus {
    -webkit-box-shadow: 0px 10px 35px -5px var(--blackrgba2);
    -moz-box-shadow: 0px 10px 35px -5px var(--blackrgba2);
    box-shadow: 0px 10px 35px -5px var(--blackrgba2);
}


.shop-item .inner-box {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.shop-item:hover .inner-box {
    /*-webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    box-shadow: 0px 0px 25px 0px var(--blackrgba2);*/
}


.shop-item .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;

    /*-webkit-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px  var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px  var(--blackrgba1);*/
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.shop-item .inner-box:focus .image-box,
.shop-item .inner-box:hover .image-box {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);

    /*-webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);*/
}


.shop-item .inner-box .image-box img {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    width: 100%;
}

.shop-item .inner-box:focus .image-box img,
.shop-item .inner-box:hover .image-box img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.shop-item .inner-box .detail {
    position: absolute;
    top: 0px;
    opacity: 0;
    left: 15px;
    width: 150px;
    height: 36px;
    display: flex;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    z-index: 10;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: var(--lblue3);
    color: var(--white);
}

.shop-item .inner-box .detail span {
    position: relative;
    top: 0px;
    padding-left: 7px;
}


.shop-item .inner-box:focus .detail,
.shop-item .inner-box:hover .detail {
    opacity: 1;
    top: 20px;
}

.detail:focus,
.detail:hover {
    background: var(--dblue2) !important;
}

.shop-item .inner-box .detail svg {
    position: relative;
    top: 0px;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-detail-read {
    color: var(--white);
    text-align: center;
    font-size: 12px;
}

.btn-detail-read:hover,
.btn-detail-read:focus {
    color: var(--white);
}


.shop-item .inner-box .read-more {
    position: absolute;
    bottom: -30px;
    opacity: 0;
    right: 15px;
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    z-index: 10;

}

.shop-item .inner-box:focus .read-more,
.shop-item .inner-box:hover .read-more {
    opacity: 1;
    bottom: 90px;
}

.shop-item .inner-box .read-more svg {
    position: relative;
    top: 9px;
    width: 28px;
    height: 28px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-whatsapp-read {
    width: 48px;
    height: 48px;
    color: var(--white);
    text-align: center;
    font-size: 27px;
    border: 0px solid var(--Whats1);
    background-color: var(--Whats1);
    -webkit-box-shadow: 0px 15px 18px -10px var(--Whatsrgba2);
    -moz-box-shadow: 0px 15px 18px -10px var(--Whatsrgba2);
    box-shadow: 0px 15px 18px -10px var(--Whatsrgba2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.btn-whatsapp-read:hover,
.btn-whatsapp-read:focus {
    -webkit-transform: translateY(-7px);
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    transform: translateY(-7px);
    background-color: var(--Whats2);
    border-color: var(--Whats2);
    color: var(--white);
    -webkit-box-shadow: 0px 20px 18px -6px var(--Whatsrgba);
    -moz-box-shadow: 0px 20px 18px -6px var(--Whatsrgba);
    box-shadow: 0px 20px 18px -6px var(--Whatsrgba);
}


.shop-item .inner-box .image {
    position: relative;
    margin-bottom: 0;
}

.shop-item .inner-box .image img {
    display: block;
    width: 100%;
}

.shop-item .inner-box .onsale {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    height: 34px;
    padding: 7px 15px;
    color: #fff;
    margin-left: 10px;
    margin-bottom: 10px;
    background-color: #ED4E40;

}

.shop-item .lower-content {
    position: relative;
    padding: 15px 20px 25px;
    z-index: 0;
    -webkit-backdrop-filter: saturate(150%) blur(5x);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: var(--whitergba7) !important;
    margin: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.shop-item:hover .lower-content {
    margin-top: -75px;
    padding-bottom: 78px;
}

.shop-item .lower-content .rating {
    border-top-right-radius: 7px;
    opacity: 0;
    padding: 15px 19px 0px;
    background-color: #fff;
    left: 0;
    bottom: calc(100% - 10px);
    position: absolute;
    z-index: 1;
    color: #FEC948;
    font-size: 13px;
    line-height: 1em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.shop-item .lower-content .rating .light {
    color: rgba(62, 74, 89, 0.2);
}

.shop-item:hover .rating {
    opacity: 1;
    bottom: 100%;
}

.shop-item .lower-content .name {
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
    margin: 8px 0 3px;
}

.shop-item .lower-content .name a {
    color: var(--orange1);
}

.shop-item:hover .lower-content .name a {
    color: var(--orange3);
}


.shop-item .price {
    font-size: 15px;
    color: var(--black);
}

.shop-item .price del {
    font-size: 14px;
    color: #7E7E80;
    margin-left: 15px;
    margin-bottom: -1px;
}

.shop-item .lower-content .add-to-cart {
    position: absolute;
    display: block;
    width: calc(100% - 40px);
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    font-size: 15px;
    font-weight: 600;
    border-radius: 7px;
    bottom: 10px;
    opacity: 0;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

.shop-item .lower-content .add-to-cart span {
    margin-right: 10px;
}

.shop-item .lower-content .add-to-cart:hover {
    color: var(--white);
}

.shop-item:hover .add-to-cart {
    opacity: 1;
    bottom: 20px;
    -webkit-transition: all 0.3s ease, opacity 0.3s linear 0.15s, bottom 0.3s ease 0.15s;
    transition: all 0.3s ease, opacity 0.3s linear 0.15s, bottom 0.3s ease 0.15s;
}


.shop-item .inner-box .lower-content ul {
    border-top: 0px solid var(--blackrgba2);
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0px 0px 0px 0px;
}

.shop-item .inner-box .lower-content li {
    float: left;
    font-size: 15px;
    list-style: outside none none;
    padding-top:7px;
    padding-bottom: 5px;
    margin-bottom: 0px;
    width: 100%;
    font-weight: normal;
    border-top: 1px solid var(--blackrgba1);
}

.shop-item .inner-box .lower-content li:first-child,
.shop-item .inner-box .lower-content li:last-child {
    border-bottom: 0px solid var(--blackrgba2);
}


.form-product .form-control {
    border: 0px;
    font-size: 16px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-clip: padding-box;
    border: 3px solid var(--cccccc);

}

.form-product .button {
    font-family: var(--theme-font);
    font-size: 14px;
    line-height: 1.1;
    font-weight: bold;
    padding: 12px 15px 11px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid var(--lblue2);
    background-color: var(--lblue2);
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 0px;
    -webkit-border-top-right-radius: 7px;
    -webkit-border-bottom-right-radius: 7px;
    -moz-border-radius: 0px;
    -moz-border-radius-topright: 7px;
    -moz-border-radius-bottomright: 7px;
    border-radius: 0px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}


.form-product .button:hover,
.form-product .button:focus {
    background-color: var(--dblue2);
    border-color: var(--dblue2);
    color: var(--white);
}


.form-product .form-control::-webkit-input-placeholder {
    opacity: 0.6;
    color: var(--gray3);
}

.form-product .form-control::-moz-placeholder {
    opacity: 0.6;
    color: var(--gray3);
}

.form-product .form-control:-ms-input-placeholder {
    opacity: 0.6;
    color: var(--gray3);
}


.place-block-cat {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-box-shadow: 0px 3px 30px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 30px 0px var(--blackrgba1);
    box-shadow: 0px 3px 30px 0px var(--blackrgba1);
}


.place-block-cat .inner-box {
    position: relative;
    display: block;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
}

.place-block-cat:focus,
.place-block-cat:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba2);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba2);
    box-shadow: 0px 10px 30px -5px var(--blackrgba2);
}


.place-block-cat .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding:0px;
    -webkit-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-align: center;
}

.place-block-cat .inner-box:focus .image-box,
.place-block-cat .inner-box:hover .image-box {
    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba2);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba2);
    box-shadow: 0px 10px 30px -5px var(--blackrgba2);
}

.place-block-cat:focus .inner-box,
.place-block-cat:hover .inner-box {
    background: var(--lblue2);
}


.place-block-cat .inner-box .image-box img {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    width: 100%;
}

.place-block-cat .inner-box:hover .image-box img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


.place-block-cat .image-box svg {
    position: relative;
    width: 100px;
    height: 100px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--lblue2) !important;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


.place-block-cat:focus svg,
.place-block-cat:hover svg {
    fill: var(--orange2) !important;
}


.place-block-cat .inner-box .lower-content {
    position: relative;
    margin: 0px 0px;
    text-align: center;
}

.place-block-cat .inner-box .lower-content .inner {
    position: relative;
    background: var(--dblue2);
    padding: 20px 15px 20px 15px;
    margin-top: -55px;
    z-index: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    text-align: center;
}


.place-block-cat .inner-box:hover .inner,
.place-block-cat .inner-box:focus .inner {
    background: var(--lblue3);
    -webkit-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    box-shadow: 0px 10px 50px 0px var(--blackrgba3);
}


.place-block-cat .inner-box .lower-content .inner h3 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 0px;
    color: var(--white);
}

.place-block-cat .inner-box .lower-content .inner h3 a {
    display: inline-block;
    color: var(--white);
}

.place-block-cat .inner-box .lower-content .inner h3 a:hover {
    color: var(--white);
}

.place-block-cat .inner-box .lower-content .inner span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    color: var(--lblue2);
    background: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 25px;
    border: 0px solid var(--white);
    text-align: center;
    padding: 0.5px 15px;
}


.cta-categorie {
    text-align: center;
    background: var(--lblue2);

    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;

    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 30px;
    width: 100%;
}

.cta-categorie h3 {
    color: var(--white);
    font-size: 22px;
    line-height: 1.1;

}


.cta-categorie a {

}


.col-cta-categorie {
    width: 100%;
    height: 55px;
}


.place-block-one .inner-box {
    position: relative;
    display: block;
}

.place-block-one .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;

    -webkit-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.place-block-one .inner-box:focus .image-box,
.place-block-one .inner-box:hover .image-box {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}


.place-block-one .inner-box .image-box:before {
    position: absolute;
    content: '';
    background: var(--blackrgba1);
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}

.place-block-one .inner-box:hover .image-box:before {
    opacity: 1;
}

.place-block-one .inner-box .image-box img {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    width: 100%;
}

.place-block-one .inner-box:hover .image-box img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.place-block-one .inner-box .lower-content {
    position: relative;
    margin: 0px 0px;
}

.place-block-one .inner-box .lower-content .inner {
    position: relative;
    background: var(--lblue2);
    padding: 20px 15px 20px 15px;
    margin-top: -60px;
    z-index: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    box-shadow: 0px 5px 20px 0px var(--blackrgba1);
}


.place-block-one .inner-box:hover .inner,
.place-block-one .inner-box:focus .inner {
    background: var(--lblue3);
    -webkit-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 50px 0px var(--blackrgba3);
    box-shadow: 0px 10px 50px 0px var(--blackrgba3);
}


.place-block-one .inner-box .lower-content .inner h3 {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1.1;
    font-weight: bold;
    margin-bottom: 0px;
    color: var(--white);
}

.place-block-one .inner-box .lower-content .inner h3 a {
    display: inline-block;
    color: var(--white);
}

.place-block-one .inner-box .lower-content .inner h3 a:hover {
    color: var(--white);
}


.news-block .inner {
    position: relative;
    display: block;
}

.news-block .image-box {
    position: relative;
    display: block;
    background: var(--dblue3);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    box-shadow: 0px 3px 20px 0px var(--blackrgba1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    overflow: hidden;
}

.news-block:focus .image-box,
.news-block:hover .image-box {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);

    -webkit-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    -moz-box-shadow: 0px 10px 30px -5px var(--blackrgba3);
    box-shadow: 0px 10px 30px -5px var(--blackrgba3);
}


.news-block .image-box img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.news-block .inner:hover .image-box img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.news-block .image-box a {
    position: relative;
    display: block;
}

.news-block .image-box a:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -24px;
    margin-left: -1px;
    height: 50px;
    border-right: 6px solid var(--white);
    z-index: 1;
    transform: scaleY(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.news-block .image-box a:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: -24px;
    width: 50px;
    border-bottom: 6px solid var(--white);
    z-index: 1;
    transform: scaleX(0);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.news-block .inner:hover .image-box a:before,
.news-block .inner:hover .image-box a:after {
    transform: scale(1);
    transition: all 0.3s ease 300ms;
    -moz-transition: all 0.3s ease 300ms;
    -webkit-transition: all 0.3s ease 300ms;
    -ms-transition: all 0.3s ease 300ms;
    -o-transition: all 0.3s ease 300ms;
}

.news-block .lower-box {
    position: relative;
    background: var(--white);
    padding: 20px 15px 20px 15px;
    margin: -25px 0px 0px 0px;
    z-index: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    -webkit-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 5px 20px 0px var(--blackrgba1);
    box-shadow: 0px 5px 20px 0px var(--blackrgba1);
}

.news-block .image-box .category {
    position: absolute;
    bottom: 45px;
    right: 15px;


    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 24px;
    padding: 5px 15px;
    color: var(--white);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: var(--dbluergba7);
    z-index: 20
}

.news-block .image-box .category svg {
    position: relative;
    top: 0px;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.news-block h3 {
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--dblue2);
    font-size: 20px;
    line-height: 1.2
}

.news-block .text p {
    position: relative;
    padding-top: 12px;
    line-height: 1.1;
    margin-bottom: 0px;
}


.news-block h3 a:hover {
    color: var(--lblue2)
}


.btnside {
    border: 0;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    padding: 3px 15px !important;
    position: relative;
    background: var(--lblue1);
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    height: 100%;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;

}

.btnside i {
    font-size: 24px;
}

.btnside:hover,
.btnside:focus {
    color: #fff;
    background: var(--lblue2);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btnside:hover,
.btnside:focus {
    outline: none;
}


.sidebar-link {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: var(--white);
    background: var(--lblue2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: none;
    padding: 7px 10px 6px 10px;
    position: relative;
    margin-bottom: 5px;
    display: block;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}

.sidebar-link a {
    color: var(--white);
}


.sidebar-link span {
    font-weight: normal;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 16px;
    padding-left: 0px;
    position: relative;
    z-index: 2;
    display: block;
}


.sidebar-link:focus,
.sidebar-link:hover {
    color: var(--white);
    background: var(--dblue2);
}

.sidebar-link:focus span,
.sidebar-link:hover span {
    padding-left: 5px;
}


.sidebar-link:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0px;
    top: 0px;
    left: 0px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background: var(--blackrgba1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    z-index: 1;
}

.sidebar-link:hover:before,
.sidebar-link:focus:before {
    width: 100%;
    background: var(--blackrgba2);
}


.sidebar-link svg {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 2;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.sidebar-link-two {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: var(--white);
    background: var(--lblue2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: none;
    padding: 7px 10px 6px 10px;
    position: relative;
    margin-bottom: 5px;
    display: block;
    width: 100%;
    z-index: 0;
    overflow: hidden;
}

.sidebar-link-two a {
    color: var(--white);
}


.sidebar-link-two span {
    font-weight: normal;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 16px;
    padding-left: 0px;
    position: relative;
    z-index: 2;
    display: block;
}


.sidebar-link-two:focus,
.sidebar-link-two:hover {
    color: var(--white);
    background: var(--dblue2);
}

.sidebar-link-two:focus span,
.sidebar-link-two:hover span {
    padding-left: 5px;
}


.sidebar-link-twoa-active {
    color: var(--white);
    background: var(--dblue2);
}


.sidebar-link-two:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 0px;
    top: 0px;
    left: 0px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background: var(--blackrgba1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    z-index: 1;
}

.sidebar-link-two:hover:before,
.sidebar-link-two:focus:before {
    width: 100%;
    background: var(--blackrgba2);
}


.sidebar-link-two svg {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 2;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.btn-whatsapp-prod {
    font-family: var(--theme-font);
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    padding: 12px 40px;
    text-align: center;
    text-transform: uppercase;

    box-sizing: border-box;
    transition: all 0.4s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: var(--white);
    border: 2px solid var(--Whats1);
    background-color: var(--Whats1);
    -webkit-box-shadow: 0px 15px 18px -10px var(--Whatsrgba2);
    -moz-box-shadow: 0px 15px 18px -10px var(--Whatsrgba2);
    box-shadow: 0px 15px 18px -10px var(--Whatsrgba2);
    animation: pulsew 1s infinite;
}

.btn-whatsapp-prod:hover,
.btn-whatsapp-prod:focus {
    -webkit-transform: translateY(-7px);
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    transform: translateY(-7px);
    background-color: var(--Whats2);
    border-color: var(--Whats2);
    color: var(--white);
    -webkit-box-shadow: 0px 20px 18px -6px var(--Whatsrgba);
    -moz-box-shadow: 0px 20px 18px -6px var(--Whatsrgba);
    box-shadow: 0px 20px 18px -6px var(--Whatsrgba);
}


.btn-whatsapp-prod svg {
    position: relative;
    top: -2px;
    left: -5px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


@-webkit-keyframes pulsew {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulsew {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


.product-add-box {
    position: relative;
    display: block;
}

.product-add-box .form-control {
    border: 0px;
    padding-right: 190px;
    font-size: 16px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

}

.product-add-box .button {
    font-family: var(--theme-font);
    font-size: 16px;
    line-height: 1.1;
    font-weight: 700;
    padding: 12px 40px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    border: 2px solid var(--lblue2);
    background-color: var(--lblue2);
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 0px;
    -webkit-border-top-right-radius: 7px;
    -webkit-border-bottom-right-radius: 7px;
    -moz-border-radius: 0px;
    -moz-border-radius-topright: 7px;
    -moz-border-radius-bottomright: 7px;
    border-radius: 0px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}


.product-add-box .button:hover,
.product-add-box .button:focus {
    background-color: var(--dblue2);
    border-color: var(--dblue2);
    color: var(--white);
}


.product-add-box .form-control::-webkit-input-placeholder {
    opacity: 0.6;
    color: var(--gray3);
}

.product-add-box .form-control::-moz-placeholder {
    opacity: 0.6;
    color: var(--gray3);
}

.product-add-box .form-control:-ms-input-placeholder {
    opacity: 0.6;
    color: var(--gray3);
}


.product-add-box .form-control::-webkit-input-placeholder {
    opacity: 0.6;
    color: var(--gray3);
}

.product-add-box .form-control::-moz-placeholder {
    opacity: 0.6;
    color: var(--gray3);
}

.product-add-box .form-control:-ms-input-placeholder {
    opacity: 0.6;
    color: var(--gray3);
}


.product-description-list {
    width: 100%;
    display: block;
    margin: auto;
    padding: 0px;
    list-style: none;
}

.product-description-list .item {
    margin-top: 5px;
    margin-bottom: 5px;
}

.product-description-list li {
    list-style-position: inside;
    margin-bottom: 5px;
    padding: 10px 10px 10px 10px;
    border-bottom: 1px solid var(--f4f4f4);
    font-size: 16px;
}

.product-description-list li span {
    text-align: right;
    float: right;
    font-weight: bold
}


#product-detail .view-gallery {
    position: absolute;
    height: 50px;
    width: 50px;
    right: 15px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    bottom: 0px;
    text-align: center;
    font-size: 24px;
    z-index: 50;
    line-height: 50px;
    border: 2px solid var(--blackrgba1);
    background: var(--whitergba6);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

#product-detail .view-gallery:hover {
    border: 2px solid var(--blackrgba2);
    background: var(--f4f4f4);
}


#product-detail .img-box-client {
    padding-bottom: 0px;
    margin-bottom: 0px;
    padding-left: 5px;
    padding-right: 5px;
}

#product-detail .swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/*
.swiperProducts {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 550px !important;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

}

@media only screen and (max-width: 900px) {
    .swiperProducts {
        height: 500px !important;

    }
}
@media only screen and (max-width: 767px) {
    .swiperProducts {
        height: 450px !important;

    }
}
*/

#product-detail .swiper-slide {
    background-position: center;
    background-size: cover;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    overflow: hidden;
    padding: 0px;
}

#product-detail .swiper-slide .itembig img {
    opacity: 0;
    visibility: hidden;
    display: none;
}


#product-detail .swiper-slide img {
    display: block;
    width: 100%;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}


#product-detail .swiper-button-next,
#product-detail .swiper-button-prev {
    color: var(--lblue2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 15px !important;
    height: 48px;
    width: 48px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: var(--white)
}

#product-detail .swiper-button-next:after,
#product-detail .swiper-button-prev:after {
    font-size: 28px;
}

#product-detail .swiper-button-next:hover,
#product-detail .swiper-button-prev:hover {
    color: var(--dblue2);
}


#product-detail .view-gallery {
    position: absolute;
    height: 50px;
    width: 50px;
    right: 15px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    bottom: 0px;
    text-align: center;
    font-size: 24px;
    z-index: 5;
    line-height: 50px;
    border: 2px solid var(--blackrgba2);
    background: var(--white);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

#product-detail .view-gallery:hover {
    border: 2px solid var(--blackrgba3);
    background: var(--f4f4f4);
}


#product-detail .thumbProducts {
    height: 125px !important;
    box-sizing: border-box;
    padding: 10px 0;
}

#product-detail .thumbProducts .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    cursor: pointer;
}

#product-detail .thumbProducts .swiper-slide-thumb-active {
    opacity: 1;
}


#product-detail .swiper-pagination {
    padding: 15px 0px 10px 0px;

}

#product-detail .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 100%;
    background: var(--black);
    opacity: .3;
    margin: 0 3px;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);

}

#product-detail .swiper-pagination-bullet-active {
    background: var(--lblue2);
    opacity: 1;
}


/*
#product-detail .swiper-container-horizontal > .swiper-pagination-bullets,
#product-detail .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -30px;
    left: 0;
    width: 100%;
}
*/

.link-image-large {
    position: absolute;
    top: 30px;
    right: 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 14px;
    font-weight: bold;
    color: var(--white) !important;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 5px 15px;
    cursor: pointer;
    background: var(--dblue2);
}

.link-image-large a {
    font-size: 14px;
    color: var(--white) !important;
}


.link-image-large:focus,
.link-image-large:hover {
    background: var(--lblue3);
}

.link-image-large svg {
    position: relative;
    top: 0px;
    width: 18px;
    height: 18px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.quantity-button svg {
    position: relative;
    top: 0px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--orange2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.dellcadlist svg {
    position: relative;
    top: 3px;
    width: 22px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--orange2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.dellcadlist:hover svg {
    fill: var(--white) !important;
}


.box-img-hover {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    -moz-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    box-shadow: 0px 3px 15px 0px var(--blackrgba1);
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.box-img-hover:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
    box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}


.img-hover img {
    border: 0px solid var(--lblue2) !important;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    filter: grayscale(20%);
    -webkit-filter: grayscale(20%);
    cursor: pointer;
}

.img-hover img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white) !important;
    opacity: 0;
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.img-hover:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -webkit-transform: scale(1.5) rotate(0deg);
    -moz-transform: scale(1.5) rotate(0deg);
    -o-transform: scale(1.5) rotate(0deg);
    -ms-transform: scale(1.5) rotate(0deg);
    transform: scale(1.5) rotate(0deg);
}

.img-hover span {
    display: block;
    overflow: hidden;
    position: relative;
}

.img-hover span:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    border: 0px solid transparent;
    background: var(--lbluergba5);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    -ms-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.img-hover span i {
    left: calc(50% - 28px);
    top: calc(80% - 29px);
    font-size: 56px;
    position: absolute;
    z-index: 2 !important;
    color: var(--white);
    opacity: 0;
    height: 58px;
    width: 56px;
    line-height: 56px;
    padding: 0px;
    margin: 0px;
    -webkit-transition: all 1.0s ease 0.3s;
    -moz-transition: all 1.0s ease 0.3s;
    -o-transition: all 1.0s ease 0.3s;
    -ms-transition: all 1.0s ease 0.3s;
    transition: all 1.0s ease 0.3s;
}


.img-hover span svg {
    position: absolute;
    left: calc(50% - 24px);
    top: calc(-25% - 24px);
    width: 48px;
    height: 48px;
    stroke-width: 0;
    fill: var(--white) !important;
    -webkit-transition: all 0.3s ease 0.3s;
    -moz-transition: all 0.3s ease 0.3s;
    -o-transition: all 0.3s ease 0.3s;
    -ms-transition: all 0.3s ease 0.3s;
    transition: all 0.3s ease 0.3s;
    z-index: 2 !important;
    opacity: 0;
}


.img-hover:hover span svg {
    top: calc(50% - 24px);
    opacity: 1;
}

.img-hover:hover span:after {
    opacity: 1.0;
    filter: alpha(opacity=100);
}

.img-hover img,
.img-hover img,
.img-hover span:after {
    transition: all 1.0s ease-in-out;
}


.sideList {
    padding: 5px 10px;
    margin-bottom: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: var(--f4f4f4);
    margin-top: -5px;
}

.sideList li {
    position: relative;
    min-height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--orange2);
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 3px;
    border-bottom: 1px solid var(--blackrgba1);
}

.sideList li:last-child {
    border-bottom: 0px solid var(--blackrgba1);
}

*
.sideList li a {
    color: var(--orange2);
    font-size: 16px;
    line-height: 1.1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sideList li:hover a {
    color: var(--lblue2);
}


#clients .main-nav-slider {

}


#clients .clients-button-next,
#clients .clients-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}


#clients .clients-button-next,
#clients .clients-button-prev {
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: none;
    background-color: var(--blackrgba5);
    width: 50px;
    height: 50px;
    border: none;
    z-index: 10;
    cursor: pointer;
    background-image: none;
    margin-top: -25px;
    left: auto;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0.8;
}

#clients .clients-button-next {
    right: 15px;
}

#clients .clients-button-prev {
    left: 15px;
}


#clients .clients-button-next img,
#clients .clients-button-prev img {
    height: 15px;
    width: auto;
    display: block;
}

#clients .clients-button-next:hover,
#clients .clients-button-prev:hover {
    box-shadow: none;
    opacity: 1;
    background-color: var(--lblue2);
    -webkit-box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    -moz-box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    box-shadow: 0px 10px 25px 0px var(--blackrgba5);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}


.titleBrandPage {
    width: 100%;
    margin-bottom: 20px;
    display: block;
}

.titleBrandPage h4 {
    padding-top: 7px;
    display: inline;
    float: left;
}


.change-view-btn {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: var(--lblue2);
    border: solid 2px var(--lblue2);

    text-align: center;
    display: inline;
    float: right;
    color: var(--white);
    padding: 5px 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-size: 15px;
}

.change-view-btn i {
    position: relative;
    font-size: 24px;
    top: -2px;
}

.change-view-btn span {
    position: relative;
    font-size: 12px;
    top: -6px;
    font-weight: bold;
    text-transform: uppercase;
}


.change-view-btn svg {
    position: relative;
    top: 0px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width: 2;
    fill: var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.change-view-btn:focus svg,
.change-view-btn:hover svg {
    fill: var(--white);
}

.change-view-btn:hover,
.active-view-btn:focus {
    background: var(--orange2);
    border: solid 2px var(--orange2);
    color: var(--white);
}





.shop-item .inner-box .read-price {
    position: absolute;
    bottom: 30px;
    left: 15px;
    font-size: 16px;
    width: 125px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    z-index: 10;
    background: var(--lblue2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: var(--white);

}

.shop-item .inner-box:focus .read-price,
.shop-item .inner-box:hover .read-price {
    bottom: 90px;
    background: var(--lblue3);
}

.read-price-item {
    font-size: 20px;
    width: 100%;
    padding: 15px;
    line-height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    z-index: 10;
    background: var(--lblue2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: var(--white);
}