@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* --color-light-blue: #4790C4; */
    --color-light-blue: #025bff;
    --color-dark-blue: #1A2A36;
    --color-light-green: #30D0B3;
    --color-light-green-hover: #20b89c;
    --color-light-red: #F66E6D;
    --color-light-grey: #D8E2E9;
    --color-orange: #FF6600;
    --color-orange-hover: #cf5300;
    --color-error: #DB0032;
    --color-error-hover: #b3002a;
    --color-success: #2AA81A;
    --box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.1);
    --box-shadow-hover: 0px 4px 20px 0px rgba(71,144,196,0.5);
    --font-primary: 'Poppins', sans-serif;
}

/**
*
*   TEMP
*
**/

.header__bg-element {
    display: none !important;
}

.header__actions .header__login > svg path {
    fill: var(--color-light-blue);
}

.header__actions .header__cart > svg path {
    fill: var(--color-light-blue);
}

.header__cart-info span {
    color: var(--color-light-blue);
}

.header__actions > a svg path {
    fill: var(--color-light-blue);
}

.header__cart-info span {
   color: var(--color-light-blue) !important; 
}

.header__search svg path {
    fill: var(--color-light-blue);
}

.header__select {
    border: 1px solid var(--color-light-blue) !important;
    color: var(--color-light-blue) !important;
}


html {
    overflow-x: hidden;
    background: linear-gradient(0deg, rgba(255,255,255,0) 50%, rgba(234,242,248,1) 100%);
}

/* RESET CSS START */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

a {
    text-decoration: none;
}


article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
    overflow-x: hidden;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* RESET CSS END */

* {
    font-family: var(--font-primary);
    color: var(--color-dark-blue);
}

select:focus {
    outline: none;
}

.phpdebugbar * {
    color: #FFF;
}

p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}

p a {
    color: var(--color-light-blue);
}

h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
}

h2 {
    font-size: 40px;
    font-weight: 800;
}

h3 {
    font-size: 35px;
    font-weight: 800;
    line-height: 45px;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 50px;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 36px;
}

ul li {
    margin-left: 20px;
    position: relative;
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}

ul li:before {
    content: '';
    width: 7px;
    height: 7px;
    display: block;
    background-color: var(--color-light-blue);
    border-radius: 50%;
    left: -20px;
    position: absolute;
    top: 9px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.header__desktop {
    position: relative;
    transition: .3s ease;
    padding-top: 10px;
}

.header__bg-element {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
}

.header__lower,
.header__upper {
    position: relative;
    z-index: 2;
}

.header__logo svg {
    width: 175px;
    height: auto;
}

.header__lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__nav a {
    font-size: 15px;
    font-weight: 600;
    line-height: 30px;
    transition: .2s linear;
}

.header__nav a:hover {
    cursor: pointer;
    color: var(--color-light-blue);
    transition: .2s linear;
}

.header__search {
    margin-right: 25px;
}

.header__search:hover {
    cursor: pointer;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header__cart {
    display: flex;
    align-items: center;
    gap: 13px;
    position: relative;
}

.header__cart-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header__cart-info span {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

.header__cart-info span:nth-child(2) {
    font-weight: 400;
    font-size: 13px;
}

.header__select {
    border: 1px solid #74A8CC;
    border-radius: 5px;
    background-color: transparent;
    color: #A1C4DC;
    font-size: 12px;
    font-weight: 400;
    line-height: 28px;
    height: 30px;
    padding: 0 22px 0 10px;
}

.header__select:focus {
    outline: none;
}

.header__upper {
    display: flex;
    justify-content: flex-end;
    gap: 13px;
    align-items: center;
    margin-top: 14px;
    margin-bottom: 10px;
}

.footer {
    position: relative;
}

.footer_lower {
    background-color: #EAF2F8;
    padding: 50px 0 32px;
}

.footer__nav-title {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 28px;
}

.footer__nav-links {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
}

.footer__nav-link {
    font-size: 14px;
    color: #5F7D93;
    line-height: 28px;
    transition: .2s linear;
}

.footer__nav-link:hover {
    cursor: pointer;
    color: #006BB3;
    transition: .2s linear;
}

.footer__nav-blocks {
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
}

.footer__icons-left,
.footer__icons-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer__icons-right {
    align-items: flex-end;
}

.footer__icons {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__icons-payment {
    display: flex;
    gap: 17px;
    align-items: center;
}

.footer__icons-external {
    display: flex;
    gap: 9px;
    align-items: center;
}

.footer__external-icon {
    height: 50px;
    background-color: #FFF;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.footer__icons-social {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 45px
}

.social__follow-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer__socials-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__socials-list svg path {
    transition: .3s ease;
}

.footer__socials-list svg:hover {
    cursor: pointer;
}

.footer__socials-list svg:hover path:first-child {
    fill: var(--color-light-blue);
}

.footer__icons-shipping {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer__copyright {
    background-color: #DDE9F2;
    padding: 15px;
}

.footer__copyright .container {
    display: flex;
    justify-content: space-between;
}

.footer__shop-copyright,
.footer__developed-by {
    color: #868F96;
    font-size: 12px;
    font-weight: 400;
}

.footer__developed-by a {
    color: var(--color-dark-blue);
}

.filter__industries {
    position: relative;
}

.bordered__container {
    background: linear-gradient(0deg, rgba(234,242,248,0.7) 0%, rgba(255,255,255,1) 35%);
    border-top-left-radius: 125px;
    border-top-right-radius: 125px;
}

.industries {
    padding-top: 75px;
    padding-bottom: 60px;
}

.industries h2 {
    text-align: center;
}

.industries__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: 26px;
    margin: 80px 0 60px;
}

.industry {
    background-image: url(http://localhost/themes/watex/assets/img/industry_1_1.png);
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 400px;
    position: relative;
    transition: top .3s ease;
    top: 0px;
}

.industry__title {
    position: absolute;
    bottom: 70px;
    padding: 0 46px;
    color: #FFF;
    font-size: 26px;
    font-weight: 800;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.industry:after {
    content: '';
    display: block;
    background: linear-gradient(0deg, rgba(26,42,54,0.7) 0%, rgba(255,255,255,0) 35%);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: .3s ease;
    opacity: 1;
}

.industry:hover {
    cursor: pointer;
    transition: top .3s ease;
    top: -20px;
}

.industry:hover:after {
    transition: .3s ease;
    opacity: 1;
    background: linear-gradient(0deg, rgba(21,75,113,0.7) 0%, rgba(255,255,255,0) 35%);
}

.btn {
    padding: 20px 30px;
    transition: .3s ease;
    font-size: 15px;
    font-weight: 600;
    color: #FFF;
    border-radius: 10px;
    display: inline-flex;
}

.btn__blue {
    background-color: var(--color-light-blue);
}

.btn__blue:hover {
    transition: .3s ease;
    background-color: var(--color-light-green);
    cursor: pointer;
}

.btn__orange {
    background-color: var(--color-orange);
}

.btn__orange:hover {
    background-color: var(--color-orange-hover);
    transition: .3s ease;
    cursor: pointer;
}

.btn__grey {
    background-color: #D8E2E9;
    color: var(--color-dark-blue);
}

.btn__grey:hover {
    background-color: var(--color-light-blue);
    color: #FFF;
    transition: .3s ease;
    cursor: pointer;
}

.btn__red {
    transition: .3s ease;
    background-color: var(--color-error);
    color: #FFF;
}

.btn__red:hover {
    cursor: pointer;
    transition: .3s ease;
    background-color: var(--color-error-hover);
}

.industries__btn {
    text-align: center;
}

.popular__filter-btn-active {
    background-color: var(--color-light-blue);
    color: #FFF;
}

.popular__products {
    background-color: #FFF;
}

.popular__products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
}

.popular__products-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slick-slide {
    margin: 0 12px;
}

.slick-list {
    margin: 0 -12px;
}

.popular__products-list,
.discount__products-list {
    padding-left: 30px;
    padding-right: 30px;
}

.product__card {
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    border-radius: 10px;
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    transition: .3s ease;
    background-color: #FFF;
}

.product__card:hover {
    cursor: pointer;
    transition: box-shadow .3 ease;
}

.product__card:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow-hover);
    -webkit-box-shadow: var(--box-shadow-hover);
    -moz-box-shadow: var(--box-shadow-hover);
    opacity: 0;
    transition: .3s ease;
}

.product__card:hover:after {
    opacity: 1;
    transition: .3s ease;
}

.product__card:hover .product__card-title {
    transition: .3s ease;
    color: var(--color-light-blue);
}

.product__card-inner {
    padding: 15px 12px 40px;
    text-align: center;
}

.product__card-label {
    position: absolute;
    top: 15px;
    left: 15px;
}

.product__label {
    font-size: 11px;
    font-weight: 800;
    padding: 8px 13px;
    border-radius: 100px;
    color: #FFF;
}

.product__card-label:nth-child(2) {
    top: 50px;
}

.product__card-label:nth-child(3) {
    top: 85px;
}


.label__popular {
    background-color: var(--color-light-green);
}

.label__new {
    background-color: var(--color-light-blue)
}

.label__special {
    background-color: var(--color-light-red);
}

.product__card-img {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 215px;
}

.product__card-img img {
    max-height: 215px;
    object-fit: cover;
}

.product__card-title {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 80px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 21px;
    transition: .3s ease;
}

.product__card-price,
.product__card-not-sellable {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    position: absolute;
    width: 100%;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
}

.product__card-discount {
    margin-right: 10px;
    color: var(--color-light-red);
}

.product__card-old {
    font-size: 17px;
    color: #A2B2BE;
    font-weight: 500;
    text-decoration: line-through;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li button {
    height: 2px;
    background-color: #D8E2E9;
    border: none;
    font-size: 0;
    width: 100%;
}

.slick-dots li button:hover {
    cursor: pointer;
}

.slick-dots li button:focus {
    outline: none;
}

.slick-dots li.slick-active button {
    background-color: #4B5D6B;
}

.slick-dots li {
    width: 100%;
}

.main__slider {
    /* margin-top: 105px;
    position: relative; */

    margin-top: 5px;
    position: relative;
    margin-bottom: 5px;
}

.main__slider-slide {
    position: relative;
    height: 554px !important;
}

.main__slider-bg {
    position: absolute;
    bottom: -75px;
    z-index: -1;
    height: 350px;
    opacity: 0;
}

.main__slider-bg-animation {
    -webkit-animation: slider-bg-animation 1.3s ease-out both;
    animation: slider-bg-animation 1.3s ease-out both;
}

.main__slider-bg img {
    width: 100vw;
}

.main__slider-products {
    position: absolute;
    right: 112px;
}

.main__slider-title {
    font-size: 45px;
    font-weight: 800;
    line-height: 65px;
    width: 500px;
    margin-bottom: 28px;
}

.main__slider-description {
    width: 500px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 40px;
}

.main__slider-text {
    position: relative;
    top: 105px;
    /* top: 40px; */
}

.about__watex-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 65px;
}

.about__watex-left {
    width: 50%;
}

.about__watex-left img {
    width: 100%;
    height: auto;
}

.about__watex-right {
    width: 50%;
}

.about__watex-right h2 {
    font-size: 55px;
    margin-bottom: 45px;
}

.about__watex-right p {
    font-size: 18px;
    font-weight: 400;
    color: #5C6871;
    line-height: 35px;
}

.about__watex-btns {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.about__watex {
    margin-bottom: 115px;
}

.about__watex-left img {
    border-radius: 60px;
}

.quality {
    background-color: #EAF2F8;
    margin: 0 50px 90px;
    border-top-left-radius: 125px;
    border-bottom-right-radius: 125px;
    padding: 95px 0;
}

.quality__blocks {
    display: flex;
    align-items: center;
    gap: 175px;
}

.quality__block {
    text-align: center;
}

.quality__block-icon {
    margin-bottom: 30px;
}

.quality__block-icon svg {
    max-width: 65px;
    max-height: 65px;
}

.quality__block-title {
    margin-bottom: 35px;
    font-weight: 600;
    font-size: 18px;
}

.quality__block-desc {
    color: #5C6871;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.footer__upper {
    background-color: var(--color-light-blue);
    position: relative;
}

.footer__upper:after {
    content: '';
    display: block;
    background-color: #5d8dea;
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    border-top-left-radius: 125px;
}

.footer__content {
    padding: 70px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__contactus-title {
    color: #FFF;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 13px;
}

.footer__contactus-description {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    margin-bottom: 22px;
}

.footer__contactus-contacts {
    display: flex;
    gap: 35px;
    align-items: center;
}

.contactus__phone {
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 28px;
}

.contactus__phone svg {
    width: 20px;
    height: 20px;
}

.contactus__email {
    color: var(--color-light-green);
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
}

.footer__upper-right {
    position: relative;
    z-index: 2;
}

.subscribe__title {
    color: #FFF;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}

.subscribe__input {
    position: relative;
    text-align: right;
}

.subscribe__input input {
    width: 510px;
    background-color: #97CBF0;
    border: none;
    height: 66px;
    padding: 0 25px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    border-radius: 10px;
}

.subscribe__input input:focus {
    outline: none;
}

.subscribe__input input::placeholder {
    color: #FFF;
}

.subscribe__input a {
    height: 66px;
    background-color: var(--color-light-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: none;
    transition: .3s ease;
    padding: 0 25px;
    color: #FFF;
    font-size: 17px;
    font-weight: 600;
}

.subscribe__input a:hover {
    cursor: pointer;
    transition: .3s ease;
    background-color: var(--color-light-green-hover);
    color: #FFF;
}

.subscribe__input button svg {
    width: 13px;
    height: auto;
}

.btn__bordered {
    border: 2px solid var(--color-light-blue);
    color: var(--color-dark-blue);
    transition: .3s ease;
}

.btn__bordered:hover {
    cursor: pointer;
    background-color: var(--color-light-blue);
    color: #FFF;
    transition: .3s ease;
}

.brands {
    margin-bottom: 90px;
}

.brands__content {
    display: grid;
    grid-template-columns: 450px minmax(0, 1fr);
    grid-column-gap: 50px;
    align-items: center;
    padding: 0 25px;
}

.brands__right {
    text-align: right;
}

.brands__right img {
    width: 100%;
    height: auto;
}

.brands__title {
    font-size: 60px;
    font-weight: 800;
    line-height: 81px;
    max-width: 460px;
    margin-bottom: 45px;
}

.water__testing {
    margin-bottom: 90px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.water__testing-content {
    padding: 110px;
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    grid-column-gap: 60px;
}

.water__testing-left {
    max-width: 410px;
}

.water__testing-right {
    display: flex;
    gap: 35px;
    align-items: center;
    width: 60vw;
}

.water__testing-title {
    font-size: 35px;
    font-weight: 800;
    color: #FFF;
    line-height: 50px;
    margin-bottom: 35px;
}

.water__testing-description {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    margin-bottom: 55px;
}

.btn__bordered-white {
    border: 2px solid #FFF;
    color: #FFF;
}

.water__testing-block {
    width: 392px;
    height: 442px !important;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    text-align: center;
}

.water__testing-overlay {
    content: '';
    display: block;
    background: linear-gradient(0deg, rgba(26,42,54,0.7) 0%, rgba(255,255,255,0) 35%);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: .3s ease;
    opacity: 1;
}

.water__testing-hover {
    background: linear-gradient(0deg, rgba(21,75,113,0.7) 0%, rgba(255,255,255,0) 35%);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: .3s ease;
    opacity: 0;
}

.water__testing-hover-arrow {
    opacity: 0;
    position: absolute;
    right: 25px;
    transition: .3s ease;
}

.water__testing-block:hover {
    cursor: pointer;
}

.industry:hover .water__testing-hover-arrow {
    opacity: 1;
    transition: .3s ease;
}

.water__testing-block:hover .water__testing-overlay {
    opacity: 0;
    transition: .3s ease;
}

.water__testing-block:hover .water__testing-hover {
    opacity: 1;
    transition: .3s ease;
}

.water__testing-block-title {
    position: absolute;
    bottom: 45px;
    font-size: 25px;
    font-weight: 800;
    color: #FFF;
    line-height: 50px;
    width: 100%;
    z-index: 2;
}

.footer__contacts-title {
    font-size: 14px;
    color: #5F7D93;
    line-height: 28px;
}

.footer__contact-info a {
    color: #006BB3;
}

.footer__mg-top {
    margin-top: 25px;
}

.watex__page {
    margin-top: 50px;
    margin-bottom: 95px;
    position: relative;
}

.watex__page h1 {
    margin-bottom: 37px;
}

.watex__page .single__category-title {
    margin-bottom: 10px;
}

.category__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: 27px;
    grid-row-gap: 30px;
}

.category {
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    text-align: center;
    /* padding: 65px 30px 45px; */
    padding: 25px 15px 25px;
    border-radius: 10px;
    background-color: #FFF;
    transition: .3s ease;
    position: relative;
}

.category:after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: var(--box-shadow-hover);
    -webkit-box-shadow: var(--box-shadow-hover);
    -moz-box-shadow: var(--box-shadow-hover);
    opacity: 0;
    transition: .3s ease;
    border-radius: 10px;
}

.category:hover {
    cursor: pointer;
}

.category:hover:after {
    opacity: 1;
    transition: .3s ease;
}

.category:hover .category__title {
    transition: .3s ease;
    color: var(--color-light-blue);
}

.category .category__img {
    height: 205px;
    margin-bottom: 25px;
}

.category .category__img img {
    max-height: 205px;
    max-width: 100%;
}

.category .category__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    transition: .3s ease;
    margin-bottom: 25px;
    position: relative;
    padding-top: 7px;
}

.category .category__title:before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-light-blue);
    display: block;
}

.category__item-count {
    margin-top: 17px;
    color: var(--color-light-blue);
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.contacts__block {
    padding: 40px 30px;
    border-radius: 10px;
    background-color: #FFF;
    margin-bottom: 23px;
}

.contacts__upper {
    display: grid;
    grid-template-columns: 30.5% 40% 29.5%;
    grid-column-gap: 23px;
}

.contacts__row-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 30px;
}

.contacts__row-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}

.contacts__row-text strong {
    font-weight: 600;
}

.contacts__working-hours td {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
}

.contacts__working-hours td:first-child {
    font-weight: 600;
    min-width: 170px;
}

.contacts__icons svg:first-child {
    margin-right: 27px;
}

.contacts__form-row2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 12px;
}

#contacts__form input,
#contacts__form textarea,
#fields_form input,
#fields_form textarea {
    border: 1px solid #B4C3CE;
    border-radius: 5px;
    height: 47px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 400;
    color: #5C6871;
}

#contacts__form input:focus,
#contacts__form textarea:focus,
#fields_form:focus,
#fields_form textarea:focus {
    outline: none;
}

#contacts__form input::placeholder,
#contacts__form textarea::placeholder,
#fields_form::placeholder,
#fields_form textarea::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #5C6871;
}

#contacts__form textarea,
#fields_form textarea {
    padding: 18px;
    height: 120px;
    width: calc(100% - 36px);
}

.contacts__form-row2 {
    margin-bottom: 16px;
}

.contacts__form-btn {
    margin-top: 26px;
}

.contacts__form-btn button {
    border: none;
    padding: 16px 30px;
}

.contacts__lower {
    display: grid;
    grid-template-columns: 45% 55%;
    grid-column-gap: 25px;
}

.contacts__row-4 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
}

.contacts__row-5 iframe {
    width: 100%;
    border-radius: 10px;
    height: 497px;
}

.contacts__row-3 {
    position: relative;
}

.contacts__map {
    position: absolute;
    bottom: 15px;
    right: 20px;
}

.contacts__map a {
    color: var(--color-light-blue);
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    line-height: 25px;
}

.breadcrumb__page {
    font-size: 12px;
    color: #AEB8C0;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.breadcrumb__page:after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #D9D9D9;
    margin: 0 13px;
}

.breadcrumb__page:last-child:after {
    content: none;
}

.active__breadcrumb {
    color: var(--color-light-blue);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.category__page {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    grid-column-gap: 40px;
}

.product__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: 17px;
    grid-row-gap: 17px;
}

.product__list .product__card {
    margin: 0;
}

.product__card-img img {
    max-width: 100%;
}

.product__list .product__card .product__card-img {
    padding-bottom: 15px;
}

.single__category-title {
    font-size: 28px;
    line-height: 50px;
    margin-bottom: 50px;
}

.category__nav-list {
    display: flex;
    flex-direction: column;
}

.category__nav-item {
    font-size: 16px;
    line-height: 45px;
    font-weight: 500;
    border-bottom: 1px solid #D9D9D9;
}

.product__filters {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 30px;
}

.filter__btn {
    background-color: var(--color-light-blue);
    height: 39px;
    padding: 0 20px;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.filter__btn svg {
    margin-left: 11px;
}

.sort__order,
.sort__by {
    background-color: #FFF;
    color: var(--color-dark-blue);
}

.products__sort {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category__search {
    background-color: var(--color-light-blue);
    border-radius: 10px;
    margin-top: 80px;
}

.category__search-upper {
    padding: 47px 30px 50px;
    text-align: center;
}

.category__search-title {
    font-size: 30px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 14px;
}

.category__search-upper p {
    font-size: 18px;
    line-height: 28px;
    color: #FFF;
    font-weight: 400;
    margin-bottom: 30px;
}

.category__search-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category__search-contacts a {
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
}

.category__search-contacts a svg {
    width: 20px;
    height: 20px;
}

.category__search-contacts a.category__search-email {
    color: var(--color-light-green);
    margin-bottom: 0;
}

.category__subscribe {
    background-color: #5d8dea;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 30px 15px 43px;
}

.category__subscribe-title {
    color: #FFF;
    font-size: 25px;
    line-height: 33px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.category__subscribe-form {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.category__subscribe-input {
    width: 100%;
    background-color: #97CBF0;
    height: 66px;
    padding: 0 75px 0 25px;
    font-size: 18px;
    color: #FFF;
    font-weight: 400;
    border: none;
    border-radius: 10px;
}

.category__subscribe-input::placeholder {
    font-size: 18px;
    color: #FFF;
    font-weight: 400;
}

.category__subscribe-form button {
    width: 66px;
    height: 66px;
    border: none;
    background-color: var(--color-light-green);
    border-radius: 10px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: .3s ease;
}

.category__subscribe-form button:hover {
    cursor: pointer;
    transition: .3s ease;
    background-color: var(--color-light-green-hover);
}

.single__product-container {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    grid-column-gap: 40px;
}

.single__product {
    background-color: #FFF;
    border-radius: 10px;
}

.s_product-inner {
    padding: 35px 30px;
}

.s_product-main {
    display: grid;
    grid-template-columns: 44% 56%;
    grid-column-gap: 30px;
}

.s_product__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 10px !important;
}

.s_product__sku {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 50px;
}

.s_product__info {
    padding-right: 20px;
}

.s_product__prices-discounted {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 22px;
}

.s_product__price-new {
    font-size: 18px;
    color: #DC0032;
    font-weight: 400;
}

.s_product__price-old {
    font-size: 14px;
    color: #8F8F8F;
    text-decoration: line-through;
}

.s_product__prices-taxless {
    font-size: 13px;
    line-height: 25px;
    margin-bottom: 30px;
}

.s_product__prices-taxless-new {
    color: #DC0032;
}

.product__single-customer-group-price {
    font-size: 13px;
    line-height: 25px;
    margin-bottom: 10px;
}

.product__single-customer-group-price span {
    color: #DC0032;
}

.s_product_prices-taxless-old {
    color: #8F8F8F;
    text-decoration: line-through;
}

.quantity__selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.quantity__minus {
    width: 47px;
    height: 47px;
    font-size: 22px;
    font-weight: 600;
    color: #90979D;
    background-color: #DCE8F0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity__plus {
    width: 47px;
    height: 47px;
    font-size: 22px;
    font-weight: 600;
    color: #FFF;
    background-color: var(--color-light-blue);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity__input {
    width: 70px;
    height: 47px;
    border-radius: 5px;
    border: 1px solid #B4C3CE;
    background-color: #FFF;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    padding: 0;
}

.quantity__input:focus {
    outline: none;
}

.quantity__btn:hover {
    cursor: pointer;
    transition: .3s ease;
}

.add-to-cart {
    margin-top: 25px;
    background-color: #FF6600;
    color: #FFF;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    height: 55px;
    padding: 0 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.add-to-cart:hover {
    cursor: pointer;
    transition: .3s ease;
    background-color: #e45b00;
}

.s_product__image img {
    width: 100%;
    height: auto;
}

.s_product__icons {
    margin-top: 30px;
}

.s__product-icon {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.s__product-icon svg {
    margin-right: 10px;
}

.s_product__question {
    background-color: #DFE8EE;
    padding: 22px 25px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    width: 100%;
    margin-top: 45px;
    box-sizing: border-box;
}

.question__img svg {
    height: 43px;
    width: 43px;
    margin-right: 20px;
}

.question__img svg path {
    fill: #5d8dea;
}

.question__title {
    font-size: 18px;
    font-weight: 600;
    color: #446984;
    line-height: 27px;
}

.question__description {
    text-decoration: underline;
    color: var(--color-light-blue);
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
}

.s_product__information {
    margin-top: 80px;
}

.s_product__tab-active {
    background-color: var(--color-light-blue);
    color: #FFF;
}

.s_product__tabs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.s_product__tab-content {
    margin-top: 35px;
    display: none;
}

.s_product__active-content {
    display: block;
}

.s_product__tab-content iframe {
    width: 600px;
    height: 344px;
    margin-top: 25px;
}

.s_product__tab-content[data-id="attachments"] {
    display: none;
}

.s_product__tab-content[data-id="attachments"].s_product__active-content {
    display: flex;
    flex-direction: column;
}

.s_product__document {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.s_product__document svg {
    margin-right: 8px;
}

.related__products {
    margin-left: 15px;
    margin-right: 15px;
}

.related__products-title {
    font-size: 28px;
    font-weight: 800;
    margin-top: 70px;
}

.watex__alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 400;
}

.alert__success {
    background-color: var(--color-light-green);
    color: #FFF;
}

.alert__warning {
    background-color: var(--color-light-red);
    color: #FFF;
}

.fade-in {
	-webkit-animation: fade-in 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes slider-bg-animation {
    0% {
        -webkit-transform: translateY(500px);
                transform: translateY(500px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slider-bg-animation {
    0% {
        -webkit-transform: translateY(500px);
                transform: translateY(500px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

@keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.fade-out {
	-webkit-animation: fade-out 0.2s ease-out both;
	        animation: fade-out 0.2s ease-out both;
}

@-webkit-keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}

@keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
}

.slide-in-right {
	-webkit-animation: slide-in-right 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
  
@-webkit-keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
}

.slide-out-right {
	-webkit-animation: slide-out-right 0.3s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-right 0.3s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes slide-out-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
}

@keyframes slide-out-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
}
  
.mini__cart {
    position: fixed;
    z-index: 99999;
    background-color: #FFF;
    right: 0;
    top: 0;
    height: 100%;
    width: 565px;
    box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.25);
    border-top-left-radius: 10px;
    display: none;
    overflow-y: auto
}

.mini__cart-bg {
    width: 100vw;
    height: 100vh;
    background-color: rgba(26, 42, 54, .8);
    left: 0;
    top: 0;
    z-index: 99998;
    position: fixed;
    display: none;
}

.mini__cart-inner {
    padding: 50px 30px 30px 40px;
    position: relative;
}

.cart__close {
    position: absolute;
    top: 8px;
    right: 13px;
}

.cart__close:hover {
    cursor: pointer;
}

.mini__cart-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 55px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.mini__cart-title svg {
    width: 30px;
    height: auto;
}

.mini__cart-discount {
    font-size: 14px;
    line-height: 25px;
}

.mini__cart-products {
    margin-top: 50px;
    max-height: 42vh;
    overflow-y: auto;
    padding-right: 10px;
}

.mini__cart-product {
    display: grid;
    grid-template-columns: 75px 1fr 85px;
    grid-column-gap: 35px;
    position: relative;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 32px;
    margin-bottom: 45px;
}

.mini__cart-products .mini__cart-product:last-child {
    margin-bottom: 0px;
}

.mini__cart-product-img {
    display: flex;
    align-items: center;
}

.mini__cart-product-img img {
    width: auto;
    height: auto;
    max-height: 75px;
    max-width: 100%;
}

.mini__cart-product-remove {
    position: absolute;
    top: 0;
    right: 5px;
}

.mini__cart-product-remove:hover {
    cursor: pointer;
}

.mini__cart-product-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 4px;
}

.mini__cart-product-sku {
    font-size: 12px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 15px;
}

.mini__cart-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini__cart-product-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini__cart-product-price-old {
    color: #8F8F8F;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: line-through;
}

.mini__cart-product-price-discount {
    font-size: 16px;
    font-weight: 800;
    line-height: 20px;
    color: #DC0032;
}

.mini__cart-product-price-regular {
    font-size: 16px;
    font-weight: 800;
    line-height: 20px;
    color: var(--color-light-blue);
}

.mini__cart-product-quantity .quantity__btn {
    width: 31px;
    height: 31px;
}

.mini__cart-product-quantity .quantity__input {
    height: 31px;
}

.mini__cart-product-quantity .quantity__selector {
    margin-top: 0;
}

.mini__cart-totals {
    margin-top: 35px;
    padding-right: 10px;
}

.mini__cart-totals p {
    padding-right: 10px;
}

.mini__cart-totals-table td {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
}

.mini__cart-totals-table td:first-child {
    width: 100%;
    text-align: right;
    padding-right: 25px;
}

.mini__cart-totals-table td:nth-child(2) {
    width: 95px;
}

.mini__cart-totals-table tr:last-child td {
    font-weight: 600;
}

.mini__cart-totals-table {
    margin-bottom: 30px;
}

.mini__cart-buttons {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    padding-right: 10px;
}

.mini__cart-products::-webkit-scrollbar {
    width: 4px;
}
   
.mini__cart-products::-webkit-scrollbar-thumb {
    background: #5F7D93; 
    border-radius: 10px;
}

.news__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 35px;
    grid-row-gap: 65px;
}

.news__bg {
    height: 315px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    position: relative;
}

.news__bg-hover {
    content: '';
    display: block;
    background: linear-gradient(0deg, rgba(26,42,54,0.7) 0%, rgba(255,255,255,0) 35%);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: .3s ease;
    opacity: 0;
}

.news__card:hover .news__bg-hover {
    transition: .3s ease;
    opacity: 1;
    background: linear-gradient(0deg, rgba(21,75,113,0.7) 0%, rgba(255,255,255,0) 35%);
}

.news__title {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
    transition: .3s ease;
}

.news__card:hover .news__title {
    color: var(--color-light-blue);
    transition: .3s ease;
}

.news__card {
    position: relative;
    transition: top .3s ease;
    top: 0;
}

.news__card:hover {
    cursor: pointer;
    transition: top .3s ease;
    top: -20px;
}

.projects__list-archive {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: 25px;
    grid-row-gap: 27px;
}

.projects__list .waterquality__block:nth-child(2n) .quality__block-img {
    order: 2;
    border-radius: 0 10px 10px 0;
}

.projects__list .waterquality__block:nth-child(2n) .quality__block-content {
    order: 1;
    border-radius: 10px 0 0 10px;
}

.project__card {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    height: 615px;
    border-radius: 10px;
    transition: .3s ease;
    top: 0;
}

.project__card:hover {
    top: -20px;
    transition: .3s ease;
}

.project__title {
    position: absolute;
    bottom: 100px;
    font-size: 20px;
    line-height: 25px;
    color: #FFF;
    font-weight: 800;
    max-width: 100%;
    padding: 0 45px;
    z-index: 1;
}

.project__bg-overlay {
    content: '';
    display: block;
    background: linear-gradient(0deg, rgba(26,42,54,0.7) 0%, rgba(255,255,255,0) 35%);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: .3s ease;
    opacity: 1;
}

.project__bg-hover {
    content: '';
    display: block;
    background: linear-gradient(0deg, rgba(21,75,113,0.7) 0%, rgba(255,255,255,0) 35%);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: .3s ease;
    opacity: 0;
}

.project__card:hover .project__bg-hover {
    opacity: 1;
    transition: .3s ease;
}

.project__card:hover .project__bg-overlay {
    opacity: 0;
    transition: .3s ease;
}

.calculator {
    background-color: #FFF;
    border-radius: 10px;
}

.calculator__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 50px;
}

.calculator__right {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: calc(100% + 30px);
    height: calc(100% + 60px);
    margin-top: -30px;
}

.calculator__title {
    margin-bottom: 20px;
    line-height: 27px;
}

.calculator__left {
    padding: 40px 35px;
}

.calculator__table td {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    padding: 0 7px 20px 7px;
}

.calculator__table td:first-child {
    padding-left: 0;
}

.calculator__table input::-webkit-outer-spin-button,
.calculator__table input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator__table input[type=number] {
  -moz-appearance: textfield;
}

.calculator__input-column input {
    height: 48px;
    font-size: 13px;
    color: #5C6871;
    border: 1px solid #B4C3CE;
    border-radius: 5px;
    width: 48px;
    text-align: center;
    padding: 0;
}

.calculator__input-column input:focus {
    outline: none;
}

.calculator__select {
    height: 48px;
    font-size: 13px;
    color: #5C6871;
    border: 1px solid #B4C3CE;
    border-radius: 5px;
    text-align: center;
    width: 240px;
    position: relative;
}

.select__wrapper {
    position: relative;
    display: inline-block;
}

.select__wrapper:after {
    content: '';
    background-image: url('/themes/watex/assets/img/dropdown-arrow.svg');
    background-size: 6px 10px;
    display: block;
    position: absolute;
    width: 6px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
}

.calculator__select:focus {
    outline: none;
}

.calculator__select::-ms-expand {
    display: none;
}

.calculator__select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

.calculator__row {
    display: inline-flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
}

.calculator__results-wrapper {
    display: inline-flex;
    flex-direction: column;
    background-color: var(--color-light-blue);
    border-radius: 5px;
    padding: 45px 35px 45px 45px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.calculator__results-table td {
    font-size: 15px;
    color: #FFF;
    font-weight: 400;
    padding: 0 12px;
    line-height: 25px;
}

.calculator__results-table td:first-child {
    padding-left: 0;
    font-weight: 600;
}

.calculator__results-title {
    font-size: 25px;
    color: #FFF;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 15px;
}

.quality__description {
    max-width: 880px;
}

.waterquality__block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background-color: #EAF2F7;
    border-radius: 10px;
    margin-bottom: 35px;
}

.quality__block-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.quality__img-right .quality__block-img {
    order: 2;
}

.quality__img-right .quality__block-content {
    order: 1;
}

.quality__block-content {
    padding: 95px 65px;
}

.waterquality__block .quality__block-img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.quality__img-right .quality__block-img {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.waterquality__blocks {
    margin-top: 35px;
}

.quality__block-content h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    margin-bottom: 25px;
}

.quality__block-btn {
    margin-top: 25px;
}

.water__quality-single {
    background-color: #FFF;
    border-radius: 10px;
}

.water__quality-single-inner {
    padding: 35px 45px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 40px;
}

.water__quality-single-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.water__quality-single-content p {
    margin-bottom: 25px;
}

.header__login:hover {
    cursor: pointer;
}

/* .header__login:hover .login__popup,
.header__login:hover .account__popup {
    display: block;
    opacity: 1;
    transition: .3s ease;
} */

.header__login {
    position: relative;
}

.login__popup,
.account__popup {
    display: none;
    position: absolute;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.25);
    padding: 30px 23px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    transition: .3s ease;
    z-index: 101;
}

.login__popup:before,
.account__popup:before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 30px;
}

.login__popup-close {
    text-align: right;
    margin-top: -20px;
    margin-right: -13px;
}

.login__title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 22px;
}

.watex__input input,
.watex__input select {
    height: 47px;
    width: 235px;
    border: 1px solid #B4C3CE;
    padding: 0 17px;
    font-size: 13px;
    color: #5C6871;
    border-radius: 5px;
    background-color: #FFF;
}

.watex__input input:focus {
    outline: none;
}

.watex__input:first-child input {
    margin-bottom: 18px;   
}

.forgot__password {
    text-align: right;
    margin-bottom: 10px;
}

.forgot__password a {
    font-size: 11px;
    color: var(--color-light-blue);
    line-height: 20px;
}

button.btn {
    border: none;
}

.login__btn {
    text-align: center;
    margin-bottom: 43px;
    margin-top: 15px;
}

.login__btn button {
    padding: 16px 30px;
}

.login__register-description {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    max-width: 160px;
    margin: 0 auto;
    text-align: center;
}

.login__register-description a {
    color: var(--color-light-blue);
}

.login__register-icons {
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.login__register-url {
    text-align: center;
}

.login__register-url a {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-light-blue);
    text-decoration: underline;
}

.watex__input-group-2 {
    display: flex;
    gap: 20px;
}

.watex__input-group-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 20px;
}

.watex__input-group-3 input {
    width: calc(100% - 34px);
}

#register__btn {
    border: none;
    margin-top: 20px;
    padding: 16px 30px;
}

.watex__privacy-block {
    margin-bottom: 15px;
    position: relative;
}

.watex__privacy-block label {
    color: #5C6871;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

.watex__privacy-block label a {
    color: var(--color-light-blue);
}

.checkbox__container {
    position: relative;
    padding-left: 32px;
}

.checkbox__container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFF;
    border-radius: 5px;
    border: 1px solid var(--color-light-blue);
    transition: .3s ease;
}
  
.checkbox__container:hover input[type="checkbox"] ~ .checkmark {
    background-color: #f1f1f1;
    transition: .3s ease;
}

.checkbox__container:hover {
    cursor: pointer;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox__container input[type="checkbox"]:checked ~ .checkmark:after {
    display: block;
}

.checkbox__container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--color-light-blue);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.watex__register input {
    margin-bottom: 25px;
}

.validation__error input,
.validation__error select {
    border-color: var(--color-error);
    color: var(--color-error);
}

.validation__error input::placeholder {
    color: var(--color-error);
}

.watex__input {
    position: relative;
}

.control-error {
    position: absolute;
    bottom: 7px;
    left: 15px;
    font-size: 11px;
    color: var(--color-error);
}

.form-group {
    position: relative;
}

.watex__privacy-block.validation__error .checkmark {
    border-color: var(--color-error);
}

.account__popup {
    min-width: 175px;
}

.account__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.account__links a {
    font-size: 14px;
    line-height: 25px;
    font-weight: 500;
    transition: .3s ease;
}

.account__links a:hover {
    transition: .3s ease;
    color: var(--color-light-blue);
    text-decoration: underline;
}

.profile__container {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    grid-column-gap: 37px;
}

.profile__nav {
    display: flex;
    flex-direction: column;
}

.profile__nav-link {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile__right {
    background-color: #FFF;
    border-radius: 10px;
    padding: 35px 50px;
}

.profile__nav-link svg path {
    transition: .3s ease;
}

.profile__nav-link.profile__nav-active svg path {
    transition: .3s ease;
    fill: var(--color-light-blue);
}

.profile__nav-link:hover svg path {
    transition: .3s ease;
    fill: var(--color-light-blue);
}

.profile__form-btn button {
    padding: 16px 30px;
}

.profile__form-btn {
    margin-top: 27px;
}

.profile__change-password-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #5C6871;
    margin-top: 28px;
    margin-bottom: 27px;
}

.profile__remove-account {
    margin-top: 75px;
}

.profile__remove-account a {
    font-size: 14px;
    font-weight: 400;
    color: #8F8F8F;
    display: flex;
    align-items: center;
    gap: 10px;
}

.orders__container {
    background-color: transparent;
}

.orders__table {
    width: 100%;
    border-collapse: collapse;
}

.orders__table th {
    background-color: #FFF;
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
}

.orders__table td {
    background-color: #FFF;
    padding: 24px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
}

.orders__table tr td.profile__order-table-gap {
    background-color: transparent;
    padding: 7px 0;
    border-radius: 0px;
}

.profile__order-invoice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-light-blue);
    font-size: 14px;
    font-weight: 400;
}

.orders__table td:first-child {
    font-weight: 400;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.orders__table td:last-child {
    font-weight: 400;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.orders__table th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.orders__table th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.profile__order-label {
    font-size: 11px;
    font-weight: 400;
    padding: 10px;
    border-radius: 8px;
    color: #14222D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.label-paid {
    background-color: #86D397;
}

.label-waiting-payment {
    background-color: #ECD69C;
}

.label-unpaid {
    background-color: #EC9C9C;
}

.profile__address-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 50px;
    grid-row-gap: 25px;
}

.address__remove {
    position: absolute;
    right: -25px;
    top: -15px;
}

.address__remove:hover svg path {
    transition: .3s ease;
}

.address__remove:hover svg path {
    transition: .3s ease;
    fill: var(--color-light-blue);
}

.address__remove:hover {
    cursor: pointer;
}

.profile__address-row {
    font-size: 13px;
    font-weight: 400;
    color: #5C6871;
    line-height: 20px;
}

.profile__address-row strong {
    font-weight: 600;
    color: #5C6871;
}

.profile__address {
    position: relative;
    border-radius: 8px;
    border: 1px solid #E2E2E2;
    background: #FFF;
    padding: 30px 30px 50px;
}

.profile__address-form input,
.profile__address-form select {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 310px;
}

.profile__address-form .watex__input-group-2 {
    margin-bottom: 20px;
}

.add_address-title {
    font-size: 14px;
    font-weight: 600;
    color: #5C6871;
    margin-bottom: 25px;
    margin-top: 20px;
}

.profile__add-address {
    margin-top: 30px;
}

.profile__add-address svg:hover {
    cursor: pointer;
}

.new__address-btn button {
    padding: 16px 30px;
}

.profile__address-form .watex__input input {
    margin-bottom: 0;
}

.profile__address-form .control-error {
    bottom: -15px;
}

.address__remove-btns button {
    padding: 16px 30px;
}

.profile__address-remove-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 42, 54, .8);
    z-index: 100;
    opacity: 0;
    transition: .2s ease;
}

.address__remove-inner {
    padding: 30px;
    background-color: #FFF;
    border-radius: 10px;
    width: 450px;
    box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.25);
}

.address__remove-btns {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
}

.address__remove-text span {
    font-weight: 600;
}

.address__remove-text {
    text-align: center;
}

.cart__items-table {
    width: 100%;
    border-collapse: collapse;
}

.cart__items-table td {
    background-color: #FFF;
    padding: 12px 0;
    vertical-align: middle;
}

.cart__items-table td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-left: 25px
}

.cart__items-table td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-right: 25px;
}

.cart__items-table .cart__item-separator {
    height: 17px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.cart__item-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 35px;
}

.cart__item-sku {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

.cart__item-sku strong {
    font-weight: 600;
}

.cart-product-price-old {
    color: #8F8F8F;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-decoration: line-through;
}

.cart-product-price-discount {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--color-error);
}

.cart-product-price-regular {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--color-light-blue);
}

.cart__item-remove {
    text-align: right;
}

.cart__item-remove svg {
    width: 25px;
    height: 25px;
}

.cart__item-quantity .quantity__selector {
    margin-top: 8px;
}

.cart__item-img {
    width: 165px;
}

.watex__cart h1 {
    margin-bottom: 25px;
}

.cart__item-count {
    margin-bottom: 35px;
}

.cart__footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cart__continue-shopping {
    color: var(--color-light-blue);
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

.cart__totals-table td {
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.cart__totals-table tr td:last-child {
    padding-left: 25px;
}

.cart__totals-table tr:last-child td {
    font-weight: 600;
}

.cart__totals .btn {
    margin-top: 60px;
    display: inline-flex;
    float: right;
}

.checkout {
    background-color: #FFF;
    padding: 70px 50px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 100px;
}

.checkout__overview-header {
    border-radius: 8px 8px 0 0;
    background: #E7EFF5;
    font-size: 18px;
    font-weight: 600;
    padding: 30px 50px;
    border-bottom: 1px solid #FFF;
}

.checkout__overview-items {
    background: #E7EFF5;
    border-bottom: 1px solid #FFF;
}

.checkout__items {
    width: 100%;
}

.checkout__items td {
    padding-top: 12px;
    padding-bottom: 12px;
}

.checkout__items tr:first-child td {
    margin-top: 25px;
}

.checkout__items tr:last-child td {
    margin-bottom: 25px;
}

.checkout__item-info {
    vertical-align: middle;
}

.checkout__item-image {
    padding-left: 50px;
    vertical-align: middle;
    width: 85px;
}

.checkout__item-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
}

.checkout__item-info-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.checkout__item-info-sku {
    font-size: 12px;
    font-weight: 400;
}

.checkout__item-info-sku strong {
    font-weight: 600;
}

.checkout__item-price {
    vertical-align: middle;
    min-width: 140px;
}

.checkout__items .cart-product-price-discount {
    font-size: 14px;
    line-height: 22px;
}

.checkout__item-price {
    text-align: right;
    padding-right: 50px;
}

.checkout__overview-vat {
    background-color: #E7EFF5;
    padding: 35px 50px;
    border-bottom: 1px solid #FFF;
}

.checkout__totals-table {
    width: 100%;
}

.checkout__totals-table tr td:last-child {
    text-align: right;
}

.checkout__overview-vat table td {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

.checkout__totals-table tr:first-child td:last-child {
    font-weight: 600;
}

.checkout__overview-total {
    background-color: #E7EFF5;
    padding: 35px 50px;
    border-radius: 0 0 8px 8px;
}

.checkout__totals-table-summ td:first-child {
    font-size: 18px;
    font-weight: 600;
}

.checkout__totals-table-summ td:last-child {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-light-blue);
}

.watex__radio {
    position: relative;
    padding-left: 45px;
    margin-bottom: 5px;
    cursor: pointer;
    min-height: 30px;
    display: flex;
    align-items: center;
    color: #5C6871;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}
.watex__radio input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control_indicator {
    position: absolute;
    top: 0px;
    left: 0;
    height: 29px;
    width: 29px;
    background: #ffffff;
    border: 1px solid #B4C3CE;
    border-radius: undefinedpx;
}

.watex__radio:hover input ~ .control_indicator,
.watex__radio input:focus ~ .control_indicator {
    background: #f6f6f6;
}

.watex__radio input:checked ~ .control_indicator {
    background: #FFF;
}

.watex__radio:hover input:not([disabled]):checked ~ .control_indicator,
.watex__radio input:checked:focus ~ .control_indicator {
    background: #f6f6f6;
}

.watex__radio input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.watex__radio input:checked ~ .control_indicator:after {
    display: block;
}

.control-radio .control_indicator {
    border-radius: 50%;
}

.control-radio .control_indicator:after {
    left: 9px;
    top: 8px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #5d8dea;
    transition: background 250ms;
}

.control-radio input:disabled ~ .control_indicator:after {
    background: #7b7b7b;
}

.checkout .watex__input-group-1 {
    display: flex;
    align-items: center;
    gap: 25px;
}

.customer__type-radios {
    margin-top: 25px;
    margin-bottom: 30px;
}

.checkout__step-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
}

.checkout__auth-texts {
    margin-top: 5px;
}

.checkout__auth-texts > div {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.checkout__auth-texts > div:first-child {
    margin-bottom: 5px;
}


.checkout__auth-texts #checkout__show-login,
.checkout__auth-texts a {
    color: var(--color-light-blue);
}

.checkout__auth-texts #checkout__show-login:hover {
    cursor: pointer;
}

.checkout__step-button {
    margin: 35px 0;
}

.checkout__step-button button {
    padding: 16px 30px;
}

.checkout__step-1,
.checkout__step-2 {
    border-bottom: 1px solid #B9CEDD;
}

.checkout__step-2 {
    position: relative;
}

.step__2-title,
.step__3-title {
    padding: 50px 0;
}

.checkout__continue-shopping {
    margin-top: 100px;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    margin-left: -50px;
}

.checkout__continue-shopping a {
    color: var(--color-light-blue);
}

.checkout__step-1 .control-error {
    bottom: 3px;
}

.checkout__customer-information-summary,
.checkout__delivery-information-summary {
    position: relative;
    margin-top: 25px;
    margin-bottom: 35px;
}

.checkout__delivery-information-summary {
    margin-top: 0;
}

.checkout__edit-first-step,
.checkout__edit-second-step {
    position: absolute;
    top: 0;
    right: 0;
}

.checkout__edit-first-step:hover,
.checkout__edit-second-step:hover {
    cursor: pointer;
}

.checkout__edit-first-step svg,
.checkout__edit-second-step svg {
    width: 28px;
    height: 28px;
}

.checkout__customer-summary-row span {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #5C6871;
}

.checkout__customer-summary-row strong {
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: #5C6871;
}

.checkout textarea {
    border: 1px solid #B4C3CE;
    border-radius: 5px;
    height: 47px;
    padding: 18px;
    font-size: 13px;
    font-weight: 400;
    color: #5C6871;
    box-sizing: border-box;
    width: 100%;
    min-height: 90px;
}

.checkout textarea:focus {
    outline: none;
}

.checkout textarea::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #5C6871;
}

.checkout .watex__input-group-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 20px;
}

.checkout .watex__input input {
    box-sizing: border-box;
    width: 100%;
}

.checkout .watex__input-group-1 {
    display: initial;
}

.checkout .customer__type-radios {
    display: flex;
}

.checkout__no-address {
    margin-top: 30px;
}

.checkout__parcel {
    margin-top: 30px;
}

.checkout .watex__input select {
    box-sizing: border-box;
    width: 100%;
}

.checkout .watex__input:first-child select {
    margin-bottom: 18px;
}

.checkout__online-payments {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 15px;
    grid-row-gap: 23px;
    margin-top: 40px;
}

.checkout__online-payments label {
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    border-radius: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: initial;
    margin: 0;
    border: 2px solid #FFF;
    gap: 5px;
    position: relative;
}

.checkout__online-payments label:has(input:checked) {
    border: 2px solid var(--color-success);
}

.checkout__online-payments label:has(input:checked):after {
    content: '';
    background-image: url('/themes/watex/assets/img/checkout-tick.svg');
    display: block;
    background-size: 15px 13px;
    width: 15px;
    height: 13px;
    position: absolute;
    top: -14px;
    right: -10px;
}

.checkout__checkboxes {
    margin-top: 40px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout__checkboxes label {
    color: #5C6871;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.checkout__checkboxes label a {
    color: var(--color-light-blue);
}

.checkout__checkboxes label strong {
    color: var(--color-light-blue);
    font-weight: 600;
}

.payment__method {
    margin-bottom: 12px;
}

.payment__method:last-child {
    margin-bottom: 0;
}

#checkout__btn {
    background-color: var(--color-orange);
}

#checkout__btn span {
    margin-left: 5px;
    color: #FFF;
}

#checkout__btn:hover {
    cursor: pointer;
    transition: .2s ease;
    background-color: var(--color-orange-hover);
}

.slide-in-blurred-left {
	-webkit-animation: slide-in-blurred-left 2s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	        animation: slide-in-blurred-left 2s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

@-webkit-keyframes slide-in-blurred-left {
    0% {
      -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
              transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
      -webkit-transform-origin: 100% 50%;
              transform-origin: 100% 50%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) scaleY(1) scaleX(1);
              transform: translateX(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
}

@keyframes slide-in-blurred-left {
    0% {
      -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
              transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
      -webkit-transform-origin: 100% 50%;
              transform-origin: 100% 50%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) scaleY(1) scaleX(1);
              transform: translateX(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
}
  
.fade-in-slow {
	-webkit-animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.bg-element-slide {
	-webkit-animation: slide-in-blurred-top 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	        animation: slide-in-blurred-top 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

@-webkit-keyframes slide-in-blurred-top {
    0% {
      -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
              transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
}

@keyframes slide-in-blurred-top {
    0% {
      -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
              transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
}

.hide__element {
    display: none;
}

.fade-out-slow {
	-webkit-animation: fade-out 0.5s ease-out both;
	        animation: fade-out 0.5s ease-out both;
}
  
.fixed__header {
    position: fixed !important;
    top: 0;
    left: 0;
    animation: smoothScroll 1s forwards;
    width: 100%;
    background-color: #FFF;
    z-index: 9999;
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-101px);
	}
	100% {
		transform: translateY(0px);
	}
}

.fixed__header ~ .full-content-wrapper,
.fixed__header ~ .watex__page {
    padding-top: 101px;
}

.fixed__header .header__actions .header__login > svg path {
    fill: var(--color-light-blue);
}

.fixed__header .header__actions .header__cart > svg path {
    fill: var(--color-light-blue);
}

.fixed__header .header__cart-info span {
    color: var(--color-light-blue);
}

.fixed__header .header__actions > a svg path {
    fill: var(--color-light-blue);
}

.fixed__header .header__logo {
    position: relative;
    top: -5px;
}

.fixed__header .header__lower > .header__nav {
    position: relative;
    top: -5px;
}

.fixed__header .header__actions {
    position: relative;
    top: -5px;
}

.single__post-type-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 35px;
}

.single__project-header {
    height: 510px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    padding: 0 45px 60px;
    position: relative;
    border-radius: 10px;
    margin-bottom: 50px;
}

.project__header-content {
    position: relative;
    z-index: 2;
}

.project__header-content h1 {
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}

.project__header-content p {
    color: #FFF;
    font-size: 15px;
    max-width: 675px;
}

.single__project-content {
    padding-left: 50px;
}

.single__project-content p {
    margin-bottom: 25px;
}

.single__project-header .project__bg-overlay {
    background: linear-gradient(0deg, rgba(26,42,54,0.7) 0%, rgba(255,255,255,0) 50%);
}

.single__project-related {
    margin-top: 50px;
    margin-bottom: 90px;
}

.single__project-related-list {
    /* display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: 25px; */
}

.single__project-related-list .slick-slide {
    margin: 0 12px;
}

.single__project-related-list .slick-list {
    margin: 0 -12px;
}

.single__related-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 45px;
    padding-left: 50px;
}

.single__back-btn {
    margin-bottom: 15px;
}

.post-type-back {
    color: var(--color-light-blue);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.watex__single-project {
    margin-top: 45px;
    position: relative;
}

.single__blog-related {
    margin-top: 60px;
    margin-bottom: 90px;
}

.single__blog-related .single__related-title {
    padding-left: 0;
}

.single__blog-related-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 35px;
}

.single__blog-title {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 40px;
    font-weight: 800;
}

.blog__content-upper {
    max-width: 920px;
}

.single__blog-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.single__blog-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .3s ease;
    transform: scale(1);
}

.single__blog-gallery a:hover img {
    transition: .3s ease;
    transform: scale(1.15);
    cursor: pointer;
}

.single__blog-gallery a {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.single__blog-video-title {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 25px;
    font-weight: 600;
}

.single__blog-video iframe {
    width: 850px;
    height: 492px;
    border-radius: 10px;
}

.single__blog-gallery-open {
    position: absolute;
    right: 15px;
    bottom: 6px;
    z-index: 2;
}

.single__blog-gallery a:nth-child(4):after {
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgba(26, 42, 54, .5);
    position: absolute;
}

.page__404-container {
    background-color: #FFF;
    border-radius: 10px;
    padding: 80px 0;
    text-align: center;
}

.page__404-title {
    font-size: 45px;
    font-weight: 600;
}

.page__404-home {
    margin-top: 45px;
}

.page__404-container h1 {
    color: var(--color-light-blue);
    font-size: 120px;
}

.product__card-regular-price {
    color: var(--color-light-blue);
}

.page-item {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background-color: #DCE8F0;
    color: #889BA9;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.page-item:hover {
    transition: .3s ease;
    background-color: var(--color-light-blue);
    color: #FFF;
}

.page-item.active {
    background-color: var(--color-light-blue);
    color: #FFF;
}

.product__list-pagination {
    margin-top: 50px;
}

.product__list-pagination .pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.watex__radio:hover input ~ .watex__radio-button {
    background-color: #EAEAEA;
    transition: .3s ease;
    cursor: pointer;
}
  
.watex__radio input:checked ~ .watex__radio-button {
    background-color: #FFF;
}
  
.watex__radio .watex__radio-button:after {
    content: "";
    position: absolute;
    display: none;
}
  
.watex__radio input:checked ~ .watex__radio-button:after {
    display: block;
    background-color: var(--color-light-blue);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 8px;
}

.watex__radio-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background-color: #FFF;
    border: 1px solid #B4C3CE;
    transition: .3s ease;
}

.watex__radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.watex__radio {
    position: relative;
}

.watex__radio label {
    color: #5C6871;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.radio__group {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 25px;
}

.watex__disabled-field {
    filter: grayscale(1);
    pointer-events: none;
}


.slick-dots li:before {
    content: none;
}

.slick-dots li {
    margin-left: 0;
}

.checkout__auth-popup {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba(26,42,54,0.8);
    z-index: 9999;
}

.auth__popup-inner {
    background-color: #FFF;
    border-radius: 10px;
    display: flex;
    gap: 80px;
    padding: 50px;
    position: relative;
}

.auth__popup-login-form {
    background-color: #ECF3F9;
    padding: 35px 45px 1px;
    border-radius: 5px;
}

.auth__popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.auth__popup-close:hover {
    cursor: pointer;
}

.auth__popup-continue-as-guest {
    background-color: #EFF0F1;
    margin-top: 20px;
    border-radius: 5px;
    padding: 35px 45px;
}

.continue_as_guest-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 10px;
}

.auth__popup-login-form input {
    box-sizing: border-box;
    width: 100%;
}

.auth__popup-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 18px;
}

.popup__social-auth {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: 60px;
}

.social__auth-text {
    max-width: 160px;
    font-size: 13px;
    line-height: 20px;
}

.social__auth-text a {
    color: var(--color-light-blue);
}

.social__auth-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__nav-submenu {
    display: none;
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    position: absolute;
    padding: 37px 0px 42px 37px;
    top: 42px;
    background-color: #FFF;
    left: 0;
    border-radius: 10px;
    box-sizing: border-box;
    width: 360px;
    z-index: 101;
}

.header__nav-has-children {
    position: relative;
}

.header__nav-submenu:before {
    position: absolute;
    top: -16px;
    left: 0;
    height: 25px;
    width: 100%;
    content: '';
    display: block;
}

.header__nav-submenu2 {
    display: none;
    position: absolute;
    top: 0px;
    right: -350px;
    width: 360px;
    background-color: #FFF;
    z-index: 100;
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    border-radius: 10px;
    padding: 37px 37px 42px 47px;
    box-sizing: border-box;
}

.header__nav-has-children:hover .header__nav-submenu {
    display: block;
}

.submenu__item a {
    line-height: 37px;
    position: relative;
    display: block;
    padding-right: 30px;
}

.submenu-has-children > a:after {
    content: '';
    background-image: url('/themes/watex/assets/img/submenu_arrow.svg');
    width: 10px;
    height: 18px;
    background-size: 10px 18px;
    position: absolute;
    right: 25px;
    top: 10px;
    display: block;
}

.submenu-has-children {
    position: relative;
}

.submenu-has-children:hover .header__nav-submenu2 {
    display: block;
}

.category__nav-submenu {
    display: none;
    flex-direction: column;
}

.active__category-menu-item > a {
    color: var(--color-light-blue);
}

.active__category-menu-item .category__nav-submenu {
    display: flex;
}

.category__nav-submenu > .category__submenu-item > a {
    font-size: 14px;
    line-height: 30px;
    padding-left: 23px;
    display: block;
}

.active__category-menu-item .category__nav-submenu > .category__submenu-item:last-child {
    margin-bottom: 20px;
}

.active__category-link {
    color: var(--color-light-blue);
}

.category__nav-submenu-2 {
    display: none;
    flex-direction: column;
}

.category__nav-submenu-2 a {
    font-size: 14px;
    line-height: 30px;
    display: block;
    position: relative;
    padding-left: 60px;
}

.category__nav-submenu-2 a:before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-light-blue);
    position: absolute;
    left: 46px;
    top: 11px;
}

.active__subcategory-menu-item {
    display: flex;
    flex-direction: column;
}

.s_product__tab-content table {
    width: 100% !important;
    border-collapse: collapse;
}

.s_product__tab-content table tr:first-child td {
    width: auto !important;
    border-bottom: 1px solid #D8E2E9;
}

.s_product__tab-content table tr:first-child {
    border-bottom: 1px solid #D8E2E9;
}

.s_product__tab-content table tr td,
.s_product__tab-content table tr td p {
    padding: 7px 0;
    font-size: 14px;
    font-weight: 400;
}

.s_product__tab-content table tr {
    border-bottom: 1px solid #D8E2E9;
}

.checkout__customer-summary-row a {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: var(--color-light-blue);
    margin-top: 10px;
}

.checkout__customer-address-item input {
    display: none;
}

.checkout__customer-address-item {
    border: 1px solid #E2E2E2;
    padding: 30px;
    border-radius: 8px;
    outline: 1px solid #FFF;
}

.checkout__customer-address-item:hover {
    cursor: pointer;
}

.checkout__customer-address-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 35px;
    margin-top: 25px;
}

.checkout__add-address,
.checkout__cancel-address {
    margin-bottom: 20px;
}

.checkout__customer-address-item:has(input:checked) {
    border: 1px solid #2AA81A;
    outline: 1px solid #2AA81A;
}

.checkout__add-address-btn:hover,
.checkout__cancel-address:hover {
    cursor: pointer;
}

.checkout__new-address {
    margin-bottom: 35px;
}

.checkout__customer-add-new-address-title {
    color: #5C6871;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 25px;
}

.watex__order-success {
    background-color: #FFF;
    border-radius: 10px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order__success-img svg {
    width: 65px;
    height: auto;
}

.order__success-title {
    color: #30D0B3;
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    margin: 10px 0 25px;
}

.order__success-text {
    margin-bottom: 20px;
    line-height: 140%;
    text-align: center;
}

.order__success-text a {
    color: var(--color-light-blue);
}

.order__success-registred {
    margin-bottom: 20px;
    line-height: 140%;
    text-align: center;
}

.order__success-registred a {
    color: var(--color-light-blue);
    text-decoration: underline;
}

.watex__product-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-top: 20px;
}

.watex__product-gallery a {
    height: 130px;
    border-radius: 10px;
    position: relative;
}

.watex__product-gallery a img {
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
}

.product__gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 42, 54, .5);
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    padding: 12px;
    box-sizing: border-box;
}

.filter__wrapper .select2-container {
    width: 100% !important;
}

.filter__wrapper .select2-container--default .select2-selection--single {
    border: none;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: var(--color-dark-blue);
    font-size: 14px;
    padding-left: 10px;
    padding-right: 35px;
}

.filter__wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/themes/watex/assets/img/sort_arrow.svg);
    background-repeat: no-repeat;
    background-size: 19px 19px;
    width: 19px;
    height: 19px;
}

.filter__wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}

.select2-results__option--selectable:before {
    content: none;
}

.select2-results__option--selectable {
    margin-left: 0px;
    color: var(--color-dark-blue);
    font-size: 14px;
}

.select2-dropdown {
    border: none !important;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-light-blue);
}

.watex__cms-page {
    padding: 30px;
    background-color: #FFF;
    border-radius: 10px;
}

.watex__cms-page ul {
    margin-left: 20px;
}

.watex__cms-page iframe {
    margin-bottom: 30px;
}

.watex__img-row-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    align-items: center;
    margin:25px 0;
}

.watex__img-row-3 img {
    width: 100% !important;
    display: block !important;
    height: auto !important;
    object-fit: cover !important;
}

.watex__partner {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    grid-column-gap: 60px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eaeaea;
}

.watex__partner img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
}

.watex__search-popup {
    position: absolute;
    top: -14px;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% + 28px);
    background-color: rgba(26, 42, 54, .8);
    z-index: 100;
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
}

#search {
    position: relative;
}

.search__input {
    width: 700px;
    border: 1px solid #B4C3CE;
    height: 48px;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.search__input:focus {
    outline: none;
}

.search__submit {
    position: absolute;
    right: 0;
    height: 48px;
    border-radius: 0 10px 10px 0;
    background-color:var(--color-light-blue);
    color: #FFF;
    border: 1px solid #B4C3CE;
    padding: 0 20px;
    font-weight: 500;
    font-size: 15px;
    transition: .3s ease;
}

.search__submit:focus {
    outline: none;
}

.search__submit:hover {
    cursor: pointer;
}

#search__autocomplete {
    background-color: #FFF;
    display: none;
    flex-direction: column;
    width: calc(100% - 20px);
    position: absolute;
    left: 10px;
    z-index: 101;
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    border-radius: 0 0 10px 10px;
    padding: 15px 0;
    box-sizing: border-box;
}

#search__autocomplete a {
    padding: 10px 15px;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 150px;
    grid-column-gap: 20px;
    border-bottom: 1px solid #eaeaea;
    transition: .3s ease;
}

#search__autocomplete a:hover {
    transition: .3s ease;
    background-color: var(--color-light-blue);
    color: #FFF;
    cursor: pointer;
}

#search__autocomplete a:last-child {
    border-bottom: none;
}

.autocomplete__title {
    font-size: 15px;
    transition: .3s ease;
}

#search__autocomplete a:hover .autocomplete__title {
    color: #FFF;
    transition: .3s ease;
}

.autocomplete__price {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.autocomplete__price span {
    color: #8F8F8F;
    font-size: 15px;
}

.autocomplete__price span.autocomplete__special-price {
    color: var(--color-error);
    font-weight: 500;
    font-size: 15px;
}

.autocomplete__price span.autocomplete__regular-price {
    text-decoration: line-through;
    color: #8F8F8F;
    font-size: 15px;
    transition: .3s ease;
}

#search__autocomplete a:hover .autocomplete__price span {
    color: #FFF;
    transition: .3s ease;
}

#search__autocomplete a:hover .autocomplete__price span.autocomplete__special-price {
    color: var(--color-error);
}

#search__autocomplete a:hover .autocomplete__price span.autocomplete__regular-price {
    color: #FFF;
    transition: .3s ease;
}

.autocomplete__no-results {
    padding: 0 15px;
    font-size: 15px;
    color: var(--color-dark-blue);
}

.autocomplete__show-all {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    margin-top: 15px;
    background-color: var(--color-light-blue);
    color: #FFF;
    width: 260px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    transition: .3s ease;
}

.autocomplete__show-all:hover {
    transition: .3s ease;
    cursor: pointer;
}

.fixed__header .watex__search-popup {
    height: calc(100% + 14px);
}

.fixed__header .watex__search-popup form {
    top: 7px;
}

.search__close {
    position: absolute;
    right: -60px;
    top: -15px;
}

.everypay-method-title {
    font-weight: 600;
}

.search__close:hover {
    cursor: pointer;
}

.single__project-related-list .project__card {
    height: 615px !important;
} 

#header__burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
}

#header__burger-menu span {
    width: 20px;
    height: 3px;
    background-color: var(--color-light-blue);
    display: block;
    border-radius: 10px;
}

.single__blog-related-list .slick-slide {
    margin: 0 17px;
}

.single__blog-related-list .slick-list {
    margin: 0 -17px;
}

.s_product__sku-no-margin {
    margin-bottom: 0;
}

.product__card-not-sellable {
    text-align: center;
    color:var(--color-light-blue);
    font-size: 14px;
    font-weight: 400;
}

.product__request-price-popup {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(26, 42, 54, .8);
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.request__price-inner {
    background-color: #FFF;
    border-radius: 10px;
    position: relative;
    width: 1000px;
    display: grid;
    grid-template-columns: 430px 1fr;
    grid-column-gap: 60px;
    box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.2);
}

.request__price-close {
    position: absolute;
    right: 15px;
    top: 15px;
}

.request__price-close:hover {
    cursor: pointer;
}

.request__price-left {
    background-image: url(/themes/watex/assets/img/watex-pieprasit-cenu.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px 0 0 10px;
}

.request__price-right {
    padding: 30px 50px 60px 0;
}

.request__price-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 25px;
}

.request__price-description {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.request__price-product {
    display: grid;
    grid-template-columns: 75px minmax(0, 1fr);
    grid-column-gap: 25px;
    align-items: center;
    margin-bottom: 25px;
}

.request__price-product-left > img {
    width: 100%;
    height: auto;
    max-height: 75px;
    object-fit: cover;
    border-radius: 10px;
}

.request__price-product-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.request__price-product-title {
    font-size: 16px;
    font-weight: 600;
}

.request__price-product-details {
    display: flex;
    gap: 25px;
    align-items: center;
}

.request__price-product-manufacturer,
.request__price-product-sku {
    font-size: 12px;
    line-height: 25px;
}

.request__price-product-manufacturer span,
.request__price-product-sku span {
    font-weight: 600;
    margin-right: 5px;
}

.request__price-product-manufacturer {
    color: var(--color-light-blue);
}

.request__price-quantity {
    margin-bottom: 45px;
}

.request__price-form-row {
    margin-bottom: 20px;
}

.request__price-form-row input[type="text"] {
    border: 1px solid #B4C3CE;
    border-radius: 5px;
    height: 47px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 400;
    color: #5C6871;
    width: 100%;
    box-sizing: border-box;
}

.request__price-form-row textarea {
    border: 1px solid #B4C3CE;
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 400;
    color: #5C6871;
    width: 100%;
    box-sizing: border-box;
    min-height: 75px;
}

.request__price-form-row input:focus {
    outline: none;
}

.request__price-form-row .checkbox__container {
    font-size: 13px;
    line-height: 23px;
    color: #5C6871;
}

.request__price-form-row .checkbox__container a {
    color: var(--color-light-blue)
}

.request__price-quantity .quantity__title {
    font-size: 14px;
}

.request__price-quantity .quantity__selector {
    margin-top: 7px;
}

.verify__success-login .login__fields input[type="text"],
.verify__success-login .login__fields input[type="password"] {
    width: 100%;
    box-sizing: border-box;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--color-light-blue) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
  
.cart__quantity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: rgba(255, 255, 255, .8);
    display: none;
    align-items: center;
    padding-left: 54px;
    pointer-events: none;
}

.s_product_quantity {
    position: relative;
}

.cart__quantity-overlay .lds-ring  {
    transform: scale(.6);
}

.water__quality-full {
    padding: 0px 45px 35px;
}

.forgot__password-description {
    margin-bottom: 15px;
}

.water__quality-single-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini__cart-shipping-calculation {
    text-align: right;
}

#header__burger-close {
    display: none;
}

#header__burger-close svg {
    width: 17px;
    height: 17px;
}

.mobile__menu {
    display: none;
    position: fixed;
    top: 48px;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    background-color: var(--color-light-blue);
}

.mobile-menu-opened .header__desktop {
    background-color: var(--color-light-blue);
    padding-top: 15px;
    margin-top: 0;
    transition: .3s ease;
}

.mobile-menu-opened .header__desktop .header__logo path {
    fill: #FFF;
}

.mobile__menu-header-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

#open_mobile_search {
    border: 1px solid #74A8CC;
    border-radius: 5px;
    background-color: transparent;
    color: #A1C4DC;
    font-size: 12px;
    font-weight: 400;
    line-height: 28px;
    height: 30px;
    padding: 0 22px 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile__menu-nav {
    margin-top: 15px;
}

.mobile__nav-current-page-category {
    padding: 20px;
    background-color: var(--color-light-green);
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
}

.mobile__nav-current-page-category {
    padding: 20px;
    background-color: var(--color-light-green);
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
}

.mobile__nav-item a {
    padding: 20px 30px;
    background-color: #61abdf;
    color: #FFF;
    font-weight: 400;
    font-size: 16px;
    border-bottom:1px solid #87BFE7;
    display: flex;
}

.open__quick-sites {
    padding: 20px;
    background-color: #4790C4;
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
    display: flex;
}

.quick__sites-submenu {
    display: flex;
    flex-direction: column;
}

.quick__sites-submenu a {
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    color: #FFF;
    display: flex;
    padding: 0 20px;
}

.mobile__nav {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    margin-top: 15px;
}

.mobile__nav::-webkit-scrollbar {
    width: 8px;
}
  
.mobile__nav::-webkit-scrollbar-track {
    background: #74A8CC; 
}
   
.mobile__nav::-webkit-scrollbar-thumb {
    background: var(--color-light-green); 
    border-radius: 2px;
}
  
.mobile__nav::-webkit-scrollbar-thumb:hover {
    background: var(--color-light-green-hover);
}

.footer__nav-links .footer__contact-block:nth-child(3) {
    margin-top: 25px;
}

.single__project-content p img {
    max-width: 100%;
    height: auto;
}

.fixed__header #header__burger-menu span {
    background-color: var(--color-light-blue);
}

#app:has(.fixed__header) .mobile__menu {
    top: 48px;
}

.mobile__menu-opened .fixed__header .header__actions .header__login > svg path {
    fill: #FFF;
}

.mobile__menu-opened .fixed__header .header__actions .header__cart > svg path {
    fill: #FFF;
}

.mobile__menu-opened .fixed__header .header__actions > a svg path {
    fill: #FFF;
}

.watex__auth-page {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 50px;
}

.watex__auth-page .login__btn {
    text-align: initial;
}

.auth__right h2,
.auth__left h2 {
    margin-bottom: 25px;
}

.watex__auth-page .forgot__password {
    width: 270px;
}

.catalog-add-to-cart,
.catalog-get-price {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background-color: var(--color-light-blue);
    padding: 0 20px;
    height: 40px;
    font-size: 14px;
    gap: 10px;
    /* z-index: 10; */
}

.catalog-get-price:hover {
    cursor: pointer;
}

.catalog-add-to-cart svg {
    width: 20px;
    height: auto;
}

.product__card-customer-group-price {
    position: absolute;
    bottom: 83px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 11px;
    color: var(--color-light-red);
    font-weight: 500;
}

.s_product__price-regular {
    font-size: 18px;
    color: var(--color-light-blue);
    font-weight: 400;
}

.omniva__terminal-map {
    height: 400px;
    border-top: 1px solid #B4C3CE;
}

.watex__map-popup {
    width: 150px;
    min-height: 50px;
    background-color: rgba(255, 255, 255, .85);
    border-radius: 10px;
    font-size: 13px;
    color: var(--color-light-blue);
    display: flex;
    text-align: center;
    padding: 10px;
    font-weight: 500;
}

.map__point-select {
    background-color: var(--color-light-blue);
    color: #FFF;
    font-weight: 400;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 5px;
    margin-top: 15px;
    transition: .3s ease;
}

.map__point-select:hover {
    cursor: pointer;
}

.map__popup-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.omniva__tab-selectors {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.omniva__selector {
    background-color: #e7eff5;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.omniva__selector-map {
    border-top-left-radius: 10px;
}

.omniva__selector-classic {
    border-top-right-radius: 10px;
}

.omniva__selector-active {
    background-color: var(--color-light-blue);
    color: #FFF;
}

.omniva__selector:hover {
    cursor: pointer;
}

.omniva__tab-address {
    display: none;
}

.omniva__tab-address {
    display: block;
    background-color: #E7EFF5;
    padding: 15px;
    border-top: 1px solid #B4C3CE;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.s_product__tab-content table.watex__dimentions {
    width: auto !important;
    border: 1px solid #D8E2E9;
}

.s_product__tab-content table.watex__dimentions th {
    border: 1px solid #D8E2E9;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-dark-blue);
    text-align: center;
}

.s_product__tab-content table.watex__dimentions td {
    border: 1px solid #D8E2E9;
    padding: 10px 15px;
    font-weight: 400;
    font-size: 15px;
    color: var(--color-dark-blue);
    text-align: center;
}

.omniva__tab-address .omniva__address-select:last-child select {
    margin-bottom: 0;
}

.popular__products-list .slick-track .product__card {
    height: inherit;
    position: relative;
}

.popular__products-list .slick-track {
    display: flex;
}

.watex__brands-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-column-gap: 35px;
    grid-row-gap: 35px;
}

.watex__brand-item {
    box-shadow: var(--box-shadow);
    -webkit-box-shadow: var(--box-shadow);
    -moz-box-shadow: var(--box-shadow);
    padding: 30px;
    border-radius: 10px;
    background-color: #FFF;
    transition: .3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.watex__brand-item img {
    max-height: 100px;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 20px;
}

.watex__brand-name {
    font-weight: 700;
    font-size: 18px;
}

.watex__brand-item:after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-shadow: var(--box-shadow-hover);
    -webkit-box-shadow: var(--box-shadow-hover);
    -moz-box-shadow: var(--box-shadow-hover);
    opacity: 0;
    transition: .3s ease;
}

.watex__brand-item:hover:after {
    opacity: 1;
    transition: .3s ease;
}

.popular__products-slider-dots {
    padding-bottom: 60px;
}

.vat__label {
    font-size: 13px;
    color: var(--color-dark-blue);
}

.test_shipping {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #5C6871;
    margin: 3px 0;
}

.lds-ring {
    color: #4790C4;
}

.lds-ring,
.lds-ring div {
    box-sizing: border-box;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #4790C4;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #4790C4 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

.mini__cart-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .85);
    border-top-left-radius: 10px;
}

.address__shipping-price {
    font-size: 13px;
    line-height: 20px;
    color: #5C6871;
    margin-top: 20px;
    font-weight: 400;
}

.address__shipping-price strong {
    font-weight: 600;
}

.checkout__loader {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .85);
    border-radius: 10px;
    z-index: 5;
}

.checkout__cart-overview {
    position: relative;
}

.omniva_map_selected-terminal {
    margin-top: 15px;
    display: none;
    background-color: #e7eff5;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
}

.shipping__method-disabled {
    color: #CCC;
}

.brands__right {
    position: relative;
    height: 100%;
}

.brands__right > img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    transition: transform .3s ease;
    transform: scale(1);
}

.brands__right a img {
    transition: transform .3s ease;
    transform: scale(1);
}

.brands__right a:hover img {
    transform: scale(1.1);
    transition: transform .3s ease;
}

.brands__right > a {
    position: absolute;
    left: 0;
    top: 0;
}

.brands__right a:first-child {
    right: 199px;
    left: initial;
    top: 80px;
}

.brands__right a:nth-child(2) {
    right: 240px;
    left: initial;
    top: 0px;
}

.brands__right a:nth-child(3) {
    left: initial;
    right: 50px;
    top: 35px;
}

.brands__right a:nth-child(4) {
    left: initial;
    right: 30px;
    top: 135px;
}

.brands__right a:nth-child(5) {
    left: initial;
    right: 45px;
    top: 215px;
}

.brands__right a:nth-child(6) {
    left: initial;
    right: 0;
    top: 235px;
}

.brands__right a:nth-child(6) {
    left: 215px;
    right: initial;
    top: 235px;
}

.brands__right a:nth-child(7) {
    left: initial;
    right: 30px;
    top: 330px;
}

.brands__right a:nth-child(8) {
    left: initial;
    right: 200px;
    top: 275px;
}

.brands__right a:nth-child(9) {
    left: initial;
    right: 270px;
    top: 155px;
}

.brands__right a:nth-child(10) {
    left: 240px;
    top: 135px;
}

.brands__right a:nth-child(11) {
    left: 245px;
    top: 25px;
}

.brands__right a:nth-child(12) {
    left: 50px;
    top: 50px;
}

.brands__right a:nth-child(13) {
    left: 50px;
    top: 160px;
}

.brands__right a:nth-child(14) {
    top: 250px;
    left: 15px;
}

.brands__right a img {
    max-width: 150px;
    height: auto;
    min-height: 22px;
    width: auto;
}

.brands__right  {
    min-height: 400px;
}

.brands__content {
    grid-template-columns: minmax(0, 1fr) 800px;
}

.displaying__products {
    font-size: 14px;
}

.watex__category-description {
    margin-top: 50px;
    font-size: 15px;
}

.main__slider-slide {
    display: grid !important;
    /* grid-template-columns: 500px minmax(0, 1fr); */
    grid-template-columns: minmax(0, 1fr) 890px;
    margin: 0 auto !important;
    float: initial !important;
    grid-column-gap: 50px;
}

.main__slider-catalog a {
    position: relative;
    height: 465px;
    display: block;
    width: 240px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.25));
    transition: .3s ease;
}

.main__slider-catalog a:hover {
    transition: .3s ease;
    margin-top: -10px;
}

.main__slider-catalog a:after {
    content: '';
    background: linear-gradient(0deg, rgba(2, 91, 255, .4) 14.58%, rgba(71, 144, 196, 0.10) 100%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: block;
    opacity: 1;
    transition: .3s ease;
}

/* .main__slider-catalog a:hover:after {
    transition: .3s ease;
    opacity: 1;
} */

.main__slider-block-title {
    position: absolute;
    bottom: 30px;
    z-index: 5;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    padding: 0 25px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.main__slider-industries {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main__slider-industries-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 100%;
}

.main__slider-industries-list a {
    position: relative;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.25));
    height: 225px;
    transition: .3s ease;
}

.main__slider-industries-list a:hover {
    margin-top: -10px;
    transition: .3s ease;
}

.main__slider-industries-list .main__slider-block-title {
    font-size: 16px;
    padding: 0 20px;
}

.main__slider-industries-list a:after {
    content: '';
    background: linear-gradient(0deg, rgba(2, 91, 255, .5) 14.58%, rgba(71, 144, 196, 0.10) 100%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: block;
    opacity: 1;
    transition: .3s ease;
}

/* .main__slider-industries-list a:hover:after {
    transition: .3s ease;
    opacity: 1;
} */

.industry__product-list .product__card-title {
    padding-bottom: 85px;
}

.category__nav-list .active__category-menu-item a {
    position: relative;
    left: 20px;
}

.category__nav-list .category__nav-item > a {
    position: relative;
    left: 20px;
}

.category__nav-list .category__nav-item > a::before {
    content: '';
    background-image: url('/storage/plus-2-icon.svg');
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.category__nav-list .active__category-menu-item > a::before {
    content: '';
    background-image: url('/storage/minus-2-icon.svg');
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.category__nav-list .active__category-menu-item .category__submenu-item > a::before {
    content: '';
    background-image: url('/storage/plus-2-icon.svg');
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.category__nav-list .active__category-menu-item .category__submenu-item.active__category-menu-item > a::before {
    content: '';
    background-image: url('/storage/minus-2-icon.svg');
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.auth__popup-overflow {
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.watex__product-dimentions {
    overflow-x: auto;
}

.hide-non-catalog-items > .mobile__nav-item {
    display: none;
}

.hide-non-catalog-items > .mobile__nav-item {
    display: none;
}

.hide-non-catalog-items > .catalog-item {
    display: block;
}

.mobile__nav-item a.mobile__nav-current-page-category {
    background-color: var(--color-light-green);
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
}

.mobile-submenu-has-children a {
    position: relative;
}

.mobile__submenu-item a {
    transition: .3s ease;
}

.mobile-submenu-has-children a:after {
    content: '';
    background-image: url('/storage/Left_Arrow_4_.svg');
    background-size: 7px 10px;
    width: 7px;
    height: 10px;
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
    transition: 3s ease;
}

/* .mobile__menu-categories .mobile__submenu-item:hover > a {
    background-color: #87BFE7;
    transition: .3s ease;
    cursor: pointer;
}

.mobile__menu-categories .mobile-submenu-has-children:hover a:after {
    opacity: 1;
    transition: .3s ease;
} */

.mobile__nav-submenu2 {
    display: none;
    background-color: #61abdf;
    color: #FFF;
    font-weight: 400;
    font-size: 16px;
    border-bottom: 1px solid #87BFE7;
    transition: .3s ease;
}

.mobile__nav-submenu3 {
    display: none;
    background-color: #61abdf;
    color: #FFF;
    font-weight: 400;
    font-size: 16px;
    border-bottom: 1px solid #87BFE7;
    transition: .3s ease;
}

.mobile__nav-current-page-category:after {
    content: none !important;
}

.mobile__nav-current-page-category:before {
    content: '';
    background-image: url('/storage/Left_Arrow_4_2.svg');
    background-size: 7px 10px;
    width: 7px;
    height: 10px;
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
    transition: 3s ease;
}

.catalog-item > .mobile__nav-current-page-category:before {
    content: none !important;
}

.form__validation-error {
    margin-bottom: 12px;
    color: red;
    font-size: 14px;
    text-align: center;
}

.fixed__header{
    border-bottom: 2px solid var(--color-light-blue);
}

.post__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding-top: 30px;
}

.post__gallery a {
    height: 350px;
}

.post__gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.watex__single-field {
    padding: 50px 0;
    position: relative;
}

.fields__grid {
    padding: 30px 100px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.fields__grid a {
    height: 525px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.25));
    transition: .3s ease;
}

.fields__grid a:hover {
    margin-top: -10px;
}

.fields__grid a:after {
    content: '';
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(2, 91, 255, .35) 14.58%, rgba(71, 144, 196, 0.10) 100%);
}

.fields__grid a div {
    display: block;
    text-align: center;
    width: 100%;
    padding-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
    position: relative;
    z-index: 2;
}

.watex-input input {
    width: 100%;
    box-sizing: border-box;
}

.watex-error {
    color: red;
    font-size: 13px;
    padding-top: 3px;
}

#fields_form .watex-input {
    padding-bottom: 20px;
}

.fields__form-wrapper {
    display: grid;
    grid-template-columns: 600px minmax(0, 1fr);
    padding: 40px 0;
}

.fields__form-title {
    padding-bottom: 25px;
}

.fields__form-contacts {
    padding-top: 25px;
    color: #5C6871;
    font-size: 14px;
    line-height: 140%;
}

#fields_form .watex-input label {
    color: #5C6871;
    font-weight: 600;
    font-size: 15px;
    padding-bottom: 8px;
    display: block;
}

.fields__form-success {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    background-color: #eaf2f8;
    border-radius: 10px;
    padding: 40px;
}

.form__success-icon svg {
    width: 200px;
    height: auto;
}

#fields_form .watex__form-btn {
    text-align: right;
}

#fields_form .watex-input .error {
    color: red;
    font-size: 14px;
    padding-top: 5px;
}

.fields__products {
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.fields__products a.product__card {
    margin-bottom: 0;
    margin-top: 0;
}

.icon__out-of-stock {
    width: 25px;
    height: auto;
}

.s__product-icon:has(.icon__out-of-stock) {
    color: var(--color-light-red);
}

.fields__categories {
    padding: 50px 0;
}

.fields__categories .slick-track {
    padding: 20px 0;
}

.fields__categories .slick-track .category {
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.1);
}

.fields__categories .category .category__img {
    display: flex;
    justify-content: center;
}

.contacts__block .form__success-title {
    text-align: center;
}

.contacts__block p {
    text-align: center;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__phone span {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-light-blue);
}

.language__selector a {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-light-blue);
}

.header__cart-info-count {
    position: absolute;
    top: -6px;
    right: -1px;
}

.header__cart svg {
    height: 25px;
    width: auto;
}

.header__phone svg {
    width: 22px;
    height: auto;
}

.header__login svg {
    height: 25px;
    width: auto;
}

.header__email {
    display: flex;
    align-items: center;
}