/*
Embed fonts families:
-------------------
font-family: "Jost", serif;

possible weights:
-------------------
Open Sans: 300;400;500;700;
<weight>: Use a value from 100 to 900

.jost-<uniquifier> {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

animation:
-------------------
transition: all 0.5s;

Content:
1. Main styles override
2. Contact form 7 
3. Navbar bootstrap
4. ACF elements
5. Theme styles  
6. Responsive fixes
*/

/* ============================================= */
/* 1. Main styles override                       */
/* ============================================= */

body {
	font-family: "Jost", serif;
	font-weight: 300;
	font-size: 17px;
	font-optical-sizing: auto;
	font-style: normal;
}

body.admin-bar .navbar.fixed-top {
	margin-top: 32px;
}
html {
	scroll-behavior:smooth;
	font-display: swap
}
strong {
	font-weight: 700;
}
/* Links */
a {
	transition: all 0.5s;
	text-decoration: none;
	color:#1d1d1f
}
a:focus, a:hover {
	text-decoration: none;
	outline: 0;
	color:#3eb7ad;
}
a:focus {
	outline: 0;
	outline-offset: -2px;
}
button, button:focus, button:active {
	outline: 0;
	box-shadow: 0
}


/* /Links */

/* Image responsive fix */
img {
	width: initial;
	max-width: 100%;
	height: auto;
}
/* /Image responsive fix */



/* Headers */
h1, h2, h3, h4, h5 {
	font-family: "Jost", serif;
}
h1 {
	font-size: 38px;
	font-weight: 500;
}
h2 {
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 25px;
}
.cta h2 {
	font-size: 36px;
	font-weight: 600;
}
.product h2 {
	font-size: 20px;
	font-weight: 500;
}
.content h2 {
	font-size: 36px;
	font-weight: 600;
}
h3 {
	font-size: 20px;
	font-weight: 500;
}
h3.bigger {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 26px;
}
h4 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}

/* /Headers */

/* Bootstrap extra spaces */
.pt-6,
.py-6 {
	padding-top: 5rem !important;
}

.pe-6,
.px-6 {
	padding-right: 5rem !important;
}

.pb-6,
.py-6 {
	padding-bottom: 5rem !important;
}

.ps-6,
.px-6 {
	padding-left: 5rem !important;
}
.mt-6,
.my-6 {
	margin-top: 5rem !important;
}

.mr-6,
.mx-6 {
	margin-right: 5rem !important;
}

.mb-6,
.my-6 {
	margin-bottom: 5rem !important;
}

.ms-6,
.mx-6 {
	margin-left: 5rem !important;
}
.py-6-fixed {
	padding-top: 4rem !important;
	padding-bottom: 7rem !important;
}
@media only screen and (max-width : 768px) {
	.py-6-fixed {
		padding-top: 4rem !important;
		padding-bottom: 7rem !important;
	}
	.pt-6,
	.py-6 {
		padding-top: 4rem !important;
	}

	.pr-6,
	.px-6 {
		padding-right: 4rem !important;
	}

	.pb-6,
	.py-6 {
		padding-bottom: 4rem !important;
	}

	.pl-6,
	.px-6 {
		padding-left: 4rem !important;
	}
	.mt-6,
	.my-6 {
		margin-top: 4rem !important;
	}

	.me-6,
	.mx-6 {
		margin-right: 4rem !important;
	}

	.mb-6,
	.my-6 {
		margin-bottom: 4rem !important;
	}

	.ms-6,
	.mx-6 {
		margin-left: 4rem !important;
	}
}
/* /Bootstrap extra spaces */
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: transparent;
  box-shadow: none;
  outline: 0 none;
}
/* Buttons */
.btn-default {
	background-color: #1d1d1f;
	border:1px solid #1d1d1f;
	border-radius: 5px;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	padding:15px 25px;
	transition: all 0.5s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#000;
	color: #fff;
	transition: all 0.5s;
}

.btn-default.btn-search {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-top: 16px;
	padding-bottom: 17px;
}
.btn-text,
a.btn-text {
	font-size: 16px;
	font-weight: 500;
	color:#000;
	padding-left: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center right;
	padding-right:30px;
	transition: all 0.5s;
}
.btn-text:hover,
a.btn-text:hover {
	color: #3eb7ad;
	padding-right:35px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233eb7ad' class='bi bi-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8'/%3E%3C/svg%3E");
}
.modal-footer a.btn-text {
	background-image: none;
	padding-right: 10px;
	font-size: 15px;
}
.btn-green {
	background-color: #3eb7ad;
	border:1px solid #3eb7ad;
	border-radius: 5px;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	padding:15px 25px;
	transition: all 0.5s;
}
.btn-green:hover,
.btn-green:focus,
.btn-green:active {
	background-color:#3eb7ad;
	color: #fff;
	transition: all 0.5s;
}
.cn-button.bootstrap {
	background-color: #1d1d1f !important;
	text-transform: uppercase !important;
}
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}
/* /Buttons */

section {
	position: relative;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

/* Vertical align */
.vertical-a {
	display: flex;
	justify-content: center;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
	.vertical-align {
		display: block;
	}
}
.vertical-b {
	align-self: center;
	width: 100%;
}
/* /Vertical align */

/* Placeholder  */
::-webkit-input-placeholder {
	color:#888;
}
:-moz-placeholder {
	color:#888;
}
::-moz-placeholder {
	color:#888;
}
:-ms-input-placeholder {
	color:#888;
}
/* /Placeholder  */

/* Selection  */
::selection {
	background: #3eb7ad; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #3eb7ad; /* Gecko Browsers */
	color:#fff;
}
/* /Selection */

/* Box links (often used)  */
.box-link {
	position:absolute;
	height:100%;
	width:100%;
	left:0px;
	top:0px;
}
/* /Box links (often used)  */

.bg-test {
	background-color: rgba(255,0,0,0.5);
}
.bg-grey {
	background-color: #f8f8f8;
}

.dark, .dark p, .dark a, .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
	color: #fff;
}

/* ============================================= */
/* 2. Contact form 7                             */
/* ============================================= */
.wpcf7 input[type="text"],
.wpcf7 input[type="date"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7-select,
.wpcf7 textarea {
	background-color: #fff;
	color: #303338;
	border-radius: 10px;
	border:1px solid #e5e5e6;
	padding: 13px 30px;
	font-size: 15px;
	font-weight: 500;
	width: 100% !important;
	color:#1d1d1f;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
	background-color: #fff;
	color: #303338;
	box-shadow: none;
	outline: 0 none;
	border:1px solid #3eb7ad;
}
.wpcf7-form select {
	padding: 0px;
	line-height: 40px;
}
.wpcf7-list-item {
	display: block;
}

.wpcf7-list-item-label {
	color:#1d1d1f; 
	font-size: 14px;
	margin-left: 20px;
}

.wpcf7-list-item-label a {
	color:#1d1d1f; 
	font-weight: 500;
}

.wpcf7-form-control.wpcf7-acceptance label {
    display: flex;
    line-height: 1.2;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    margin-right: 5px;
    align-self: start;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}
.wpcf7-submit {
	background-color: #3eb7ad !important;
	border:1px solid #3eb7ad !important;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	font-family: "Jost", serif;
	text-transform:lowercase;
	padding:10px 25px;
	transition: all 0.5s;
}
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit {
	color: #1d1d1f !important;
}

.wpcf7-submit:disabled {
	opacity:0.7;
}
/* Placeholder  */
::-webkit-input-placeholder {
 color:#1d1d1f;
 opacity: 0.7;
}
:-moz-placeholder {
 color:#1d1d1f;
 opacity: 0.7;
}
::-moz-placeholder {
 color:#1d1d1f;
 opacity: 0.7;
}
:-ms-input-placeholder {
 color:#1d1d1f;
 opacity: 0.7;
}
:active::-webkit-input-placeholder,
:focus::-webkit-input-placeholder {
 color:#000;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#000;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#000;
 opacity: 1;
}
:active::-ms-input-placeholder,
:focus::-ms-input-placeholder {
 color:#000;
 opacity: 1;
}
/* /Placeholder  */

/* ============================================= */
/* 3. Navbar (bootstrap)                         */
/* ============================================= */
.navbar {
	font-family: "Jost", serif;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.05);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.05);
	padding-top: 0;
	padding-bottom: 0;
	background-color: #fff;
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	transition: all linear 0.5s;
	width: 110px; 
}

.navbar-dark .navbar-nav .nav-link {
	color: #fff;
	font-size: 14px;
	padding:17px 25px;
	transition: all 0.5s;
}

@media only screen and (max-width : 1350px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 12px;
		padding-right: 12px; 
	}
}
@media only screen and (max-width : 1040px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 10px;
		padding-right: 10px; 
	}
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.show {
	color: #3eb7ad;
	transition: all 0.5s;
}
.navbar-dark .navbar-nav .current-menu-item .active > .nav-link,
.navbar-dark .navbar-nav .current-menu-item .nav-link.active {
	color: #3eb7ad;
}
.navbar-toggler {
	border-radius: 0px;
	transition: all 0.5s;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: rgba(255,255,255,0.6);
	height: 2px;
	width: 24px;
	margin-top: 6px;
	margin-bottom: 6px;
	position: relative;
	left: 0;
	opacity: 1;
	transition: all 0.35s ease-out;
	transform-origin: center left;
}
.navbar-toggler span:nth-child(1) {
	transform: translate(0%, 0%) rotate(0deg);
}
 
.navbar-toggler span:nth-child(2) {
	opacity: 1;
}
 
.navbar-toggler span:nth-child(3) {
	transform: translate(0%, 0%) rotate(0deg);
}
.navbar-toggler span:nth-child(1) {
	margin-top: 0.3em;
}
 
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	transform: translate(15%, -33%) rotate(45deg);
}
 
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	transform: translate(15%, 33%) rotate(-45deg);
}

.navbar .contact a.nav-link {
	background: #00465e;
	/*background: linear-gradient(0deg, rgba(33,37,41,1) 0%, rgba(0,62,83,1) 100%);*/
}
.search-activator {
	cursor: pointer;
}

.search-activator a.nav-link {
	text-indent: -9999px;
	background-image: url(../img/icon-main-menu-search.png);
	background-repeat: no-repeat;
	background-position: center;
}

.dropdown-menu {
	margin-top: -2px;
	border-radius: 0px;
	background-color: #1e1e1e;
	border:0px;
	text-transform: lowercase;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
}
.dropdown-menu[data-bs-popper] {
	margin-top: -1px;
	border-top:1px solid #00465e;
}
.dropdown-menu li a.dropdown-item {
	font-size: 14px;
	line-height: 35px;
	color: #fff;
	transition: all 0.5s;
}


.dropdown-menu li a.dropdown-item:hover {
	color:#3eb7ad;
	transition: all 0.3s;
}
.dropdown-menu li a.dropdown-item:hover,
.dropdown-menu li a.dropdown-item:focus,
.dropdown-menu li a.dropdown-item:active {
	background-color: transparent;
	transition: all 0.3s;
	border-left-color: #3eb7ad;
}
.dropdown-item.active {
	background-color: transparent;
	color:#3eb7ad !important;
}


/* Search window */
#search-container {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.9);
	top:0px;
	left:0px;
	max-height: 100vh;
	z-index: 999999999;
}
#search-container .d-flex {
	height: 100%;
}
#search-close {
	position: absolute;
	right: 40px;
	top:25px;
	background-image: url(../img/search-close.png);
	background-repeat: no-repeat;
	background-color: transparent;
	height: 41px;
	width: 41px;
	z-index: 100000;
	cursor: pointer;
}
#search-close span {
	position: absolute;
	right: 50px;
	top:10px;
	width: 100px;
	text-align: right;
	color: #fff
}
#search-container .vertical-align {
	height: 100%;
}
#title .form-control {
	border:0;
}
.search-btn {
	background-image: url(../img/icon-search.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.search-input {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	line-height: 40px;
	height: 40px;
	padding-left: 25px;
	border:1px solid #1d1d1f !important;
	border-right: 0 !important;
}
.btn-search {
	border:1px solid #1d1d1f !important;
	border-left: 0 !important;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	height: 40px;
}
/* /Search window */

/* Open on hover for desktops only */
ul.nav li.dropdown:hover > ul.dropdown-menu {
	display: block;    
}
@media (min-width: 979px) {
	ul.nav li.dropdown:hover > ul.dropdown-menu {
		display: block;
	}
}
/* /Open on hover for desktops only */


/* ============================================= */
/* 4. ACF elements                               */
/* ============================================= */
.embed-container { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 
.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.acf-map {
	width: 100%;
	height: 475px;
	margin-bottom: 0px;
}
/* fixes potential theme css conflict */
.acf-map img {
	max-width: inherit !important;
}
.gm-style iframe + div { border:none!important; }

/* ============================================= */
/* 5. Theme styles                               */
/* ============================================= */

/* Tiny Slider Banner */
.banner-slider-container .height-keeper {
	left: 12px;
	top: 0;
	width: 100%;
	min-height: 80vh;
	overflow:hidden;
	padding-bottom: 50px;
}
.slider-container .slider-controls {
	margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;   
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;    
    justify-content: space-between;
}
.banner-slider-container .slider-controls {
	left: 30px;
    right: 30px;
    z-index: 40;
}
.banner-slider-container .slider-item {
	padding: 0;
}
.arrow {
	height: 18px;
	width: 40px;
	background-image: url(../img/arrows.png);
	cursor: pointer;
}

.arrow.arrow-right {
	background-position: 40px 0;
}
.tns-nav {
	position: absolute;
	left: 50%;
	bottom: -50px;
	transform: translateX(-50%);
}
.tns-nav button {
	background-color: #cfcfcf;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
.tns-nav button.tns-nav-active {
	background-color: #3eb7ad;
	border:0;
	margin: auto 5px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}
/* /Tiny Slider Banner */

#header-main a {
	font-size: 14px;
	color:#1d1d1f;
	font-weight: 500;
}
#header-main a:hover {
	color:#3eb7ad;
}
#header-main .shop--btn-my-account a {
	font-size: 13px;
	color:#1d1d1f;
	font-weight: 600;
	line-height: 10px;
}
#header-main .shop--btn-my-account a:hover {
	color:#3eb7ad;
}
#header-top--menu span {
	line-height: 15px;
}

#header-top-2 a {
	font-size: 17px;
}
.main-contacts {
	border-left: 1px solid #3eb7ad;
	line-height: 20px;
}
@media only screen and (max-width : 768px) {
	.main-contacts {
		border-left: 0px;
	}

} 
.ubermenu-submenu {
	font-size: 15px;
	font-weight: 500;
}
#banner-main--home {
	background: rgb(0,192,241);
	background: linear-gradient(-30deg, rgba(0,192,241,1) 0%, rgba(0,166,182,1) 47%, rgba(0,186,237,1) 100%);
	overflow: hidden;
}
#banner-main--home .gfx-01 {
	position: absolute;
	right: 0;
	top: 0;
}
#banner-main--home .gfx-02 {
	position: absolute;
	right: 0;
	bottom: 0;
}

#banner-main--home .gfx-03 {
	position: absolute;
	left: 0;
	top: 0;
}
.highlight-blue {
	background-color: rgba(255,255,255,0.4);
	padding:0px 15px;
	border-radius: 10px;
	font-size: 22px;
	font-weight: 600;
	margin-left: -15px;
}
#banner-main--home h2 {
	font-size: 47px;
	font-weight: 600;
	margin-top: 10px;
}

#banner-main--home h2 strong {
	font-weight: 600;
	color:#fff;
}
#banner-main--home p {
	font-weight: 500;
}

@media only screen and (max-width : 768px) {
	.highlight-blue {
		background-color: rgba(255,255,255,0.4);
		padding:0px 15px;
		border-radius: 10px;
		font-size: 16px;
		font-weight: 600;
		margin-left: -15px;
	}
	#banner-main--home h2 {
		font-size: 36px;
		font-weight: 600;
		margin-top: 10px;
	}
} 
.special-offers--box {
	height: 100%;
}
.special-offers--box a {
	color:#1d1d1f;
}
.special-offers--box-icon {
	background-color: #ebf3f3;
	border-radius: 50%;
	width: 110px;
	height: 110px;
	min-width: 110px;
	min-height: 110px;
	transition: all 0.5s;
}
.feature--pos-icon {
	background-color: #ebf3f3;
	border-radius: 50%;
	width: 135px;
	height: 135px;
	min-width: 135px;
	min-height: 135px;
	transition: all 0.5s;
}
.industry--box-icon {
	background-color: #ebf3f3;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	min-width: 100px;
	min-height: 100px;
	transition: all 0.5s;
}

.special-offers--box:hover .special-offers--box-icon,
.industry--box:hover .industry--box-icon {
	background-color: #dbe7e6;
	transition: all 0.5s;
}
.special-offers--box:hover a.btn-text,
.industry--box:hover a.btn-text {
	color:#3eb7ad;
	transition: all 0.5s;
	padding-right:35px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233eb7ad' class='bi bi-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8'/%3E%3C/svg%3E");
}
.special-offers--box:hover,
.contact--box:hover,
.industry--box:hover {
	background-color: #ededed;
	transition: all 0.5s;
}

#about-us {
	background: rgb(0,192,241);
	background: linear-gradient(-30deg, rgba(0,192,241,1) 0%, rgba(0,166,182,1) 47%, rgba(0,186,237,1) 100%);
	overflow: hidden;
}
.header-above {
	font-size: 25px;
	font-weight: 500;
}
#about-us h3 {
	font-size: 47px;
	font-weight: 500;
	margin-bottom: 40px;
}
#about-us strong {
	font-weight: 500;
}
#about-us .gfx-01 {
	position: absolute;
	left: 0;
	top: 0;
}#about-us .btn-text:hover {
	color:#000; 
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000000' class='bi bi-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8'/%3E%3C/svg%3E");
}
.accordion-button:focus {
	box-shadow: none;
	border-color: rgba(0,0,0,.125);
}
.accordion-button {
	background-color: #f8f8f8;
	border-radius: 5px;
	font-weight: 500;
}
.accordion-button:hover,
.accordion-button:not(.collapsed) {
	background-color: #ededed;
	color:#000;
}
.accordion-item {
	border-bottom: 0;
	margin-bottom: 1px;
}
.news-desc {
	font-size: 17px;
	font-weight: 300;
	line-height: 24px;
}
.news-date {
	font-size: 14px;
	font-weight: 300;
}
.about-us--footer {
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
}
.about-us--footer a {
	color:#1d1d1f;
}
.about-us--footer a:hover {
	color:#3eb7ad;
}
footer {
	border-bottom: 3px solid ;
}
.footer-menus h3 {
	margin-bottom: 30px;
}
.footer-menus ul,
.footer-menus ul li {
	padding: 0;
	list-style-type: none;
	margin:0;
}
.footer-menus ul li ul {
	padding-left: 10px;
}
.footer-menus ul li a {
	color:#1d1d1f;
	font-size: 15px;
	font-weight: 500;
}
.footer-copyrights a {
	color:#1d1d1f;
	font-size: 15px;
	font-weight: 300;
}
.footer-menus ul li a:hover,
.footer-copyrights a:hover {
	color:#3eb7ad;
}
.footer-copyrights {
	font-size: 14px;
	border-top:3px solid #3eb7ad;
}

#title {
	background: rgb(0,192,241);
	background: linear-gradient(-30deg, rgba(0,192,241,1) 0%, rgba(0,166,182,1) 47%, rgba(0,186,237,1) 100%);
	overflow: hidden;
}
#title .gfx-01 {
	position: absolute;
	right: 0;
	top: 0;
}
#title .gfx-02 {
	position: absolute;
	right: 0;
	bottom: 0;
}
body:not(.home) #title .gfx-02 {
	top: 0;
}
#title .gfx-03 {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateX(-30%) translateY(-30%);
}
.title--bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center;
}
.title--bg::after {
	content: "";
	position: absolute;
	width: 70%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgb(0,185,224);
	background: linear-gradient(90deg, rgba(0,185,224,1) 50%, rgba(0,185,224,0) 100%); 
}
#breadcrumbs,
.woocommerce-breadcrumb {
	font-size: 15px !important;
}
.woocommerce-breadcrumb {
	display: inline-block;
	color:#000 !important;
	margin-bottom:0 !important;
}
#breadcrumbs a,
.woocommerce-breadcrumb a {
	color:#000 !important;
	font-weight: 500;
}
.breadcrumb-bg,
.woocommerce-breadcrumb {
	background-color: rgba(255,255,255,0.4);
	padding:3px 5px !important;
	border-radius: 5px;
	margin-left: -4px;
}
.contacts {
	font-size: 20px;
	font-weight: 500;
}
.contacts .address {
	font-size: 30px;
	font-weight: 500;
}
.contact--box-icon {
	background-color: #ebf3f3;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	min-width: 50px;
	min-height: 50px;
	transition: all 0.5s;
}
.contact--box .legend {
	font-size: 15px;
	color:#575755;
	font-weight: 500;
}
.news-box {
	border:1px solid transparent;
	transition: all 0.5s;
	height:100%;
}
.news-box:hover {
	border:1px solid #d3d3d3;
}
.news-box:hover h3,
.news-box:hover .btn-text {
	color:#3eb7ad;
	transition: all 0.5s;
}
.categories li {
	list-style-type: none;
	display: inline-block;
	margin-left: 10px;
}
.categories li a {
	list-style-type: none;
	display: inline-block;
	background-color: #1d1d1f;
	border:1px solid #1d1d1f;
	border-radius: 5px;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	padding:10px 15px;
	transition: all 0.5s;
}
.categories li a:hover {
	list-style-type: none;
	display: inline-block;
	background-color: #1d1d1f;
	border:1px solid #1d1d1f;
	border-radius: 5px;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	padding:10px 15px;
	transition: all 0.5s;
}
.categories li a:hover,
.categories li.current-cat a {
	background-color: #3b3b3b;
	border:1px solid #3b3b3b;
}
.single-info--date {
	font-size: 14px;
	font-weight: 600;
}
.next-prev-single {
	font-weight: 500;
}
.cta {
	background: rgb(0,185,224);
	background: linear-gradient(90deg, rgba(0,185,224,1) 50%, rgba(0,185,224,0) 100%); 
	overflow: hidden;
}
.cta-bg {
	position: absolute;
	height: 100%;
	width: 100%;
	top:0;
	left: 0;
	background-image: url(../img/cta-bg.webp);
	background-size: cover;
	background-position: center;
}
.cta-gfx {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-30%);
}
.sidebar-header {
	font-size: 36px;
	font-weight: 600;
}
.sidebar-header-smaller {
	font-size: 26px;
	font-weight: 500;
}
#term-desc ul,
.woocommerce-product-details__short-description ul,
#tab-description ul {
	padding-left: 0;
	font-weight: 600;
}
#term-desc ul li,
.woocommerce-product-details__short-description ul li,
#tab-description ul li {
	list-style-type:none;
	background-image: url(../img/li_line.webp);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
}
.accordions-readmore-wrapper .read-more-btn .accordion-hide {
	display:inline
}
.accordions-readmore-wrapper .read-more-btn:not(.collapsed) .accordion-show {
	display:none
}
.accordions-readmore-wrapper .read-more-btn.collapsed .accordion-hide {
	display:none
}
.accordions-readmore-wrapper .accordion-read-more {
	position: relative;
}

.accordions-readmore-wrapper .accordion-read-more .accordion-item,
#gallery .accordion-item,
.accordion-premises .accordion-item {
 background-color: transparent;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-body,
#gallery .accordion-read-more .accordion-body,
.accordion-premises .accordion-body {
 padding-left: 0;
 padding-right: 0;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn {
	background-color: transparent;
	padding:0;
	position: relative;
	border:0;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::before {
	content:"";
	position: absolute;
	left: -5px;
	top:-100px;
	height: 100px;
	width: calc(100% + 10px);
	background: rgb(233,233,233);
	background: linear-gradient(0deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn:not(.collapsed)::before {
	display: none;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::after {
	display: none;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button {
	color:#000 !important;
	padding:0;
	font-size: 18px;
	font-weight: 400;
	position: relative;
	display: inline-block;
	box-shadow: none !important;
    border-color: rgba(0,0,0,.125) !important;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span {
	position: relative;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span::after{
	content:"";
	position: absolute;
	right: -45px;
	top: 0px;
	width: 23px;
	height: 12px;
	transition: all 0.5s;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover{
	color:#846419;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover::after{
	right: -60px;
}
.feature--box-counter {
	position: absolute;
	background-color: rgba(62,183,173,0.1);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	line-height: 35px;
}
/* Product */
li.product {
	position: relative;
	border-radius: 15px;
	border:1px solid #e5e5e6;
	background-color: #fff;
	padding: 16px;
	padding-bottom: 26px;
}
li.product:hover {
	border:1px solid #c9c9c9;
}
li.product h2 {
	font-size: 16px;
	text-align: left;
}
.product--categories,
.product--categories a {
	text-transform: uppercase;
	font-size: 13px;
	color:#83838b;
	max-width: 70%;
}
.product--categories a:hover {

	color:#3eb7ad;
}
.product--tags {
	position: absolute;
	top:14px;
	right: 16px;
}
.product--tags .product--tags-pos {
	padding:3px 15px;
	border-radius: 5px;
	font-size: 13px;
	text-transform: uppercase;
	color:#fff;
	clear: both;
	margin-bottom: 5px;
	width: auto;
	float: right;
}
.product--tags .product--tags-pos-bestseller {
	background-color: #3eb7ad;
}
.product--tags .product--tags-pos-sale {
	background-color: #ff6300;
}
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale,
.wc-block-grid__product-onsale {
	padding:3px !important;
	border-radius: 5px !important;
	font-size: 13px !important;
	text-transform: uppercase;
	color:#fff !important;
	border:none  !important;
	clear: both;
	margin-bottom: 5px;
	width: auto;
	float: right;
	background-color: #ff6300 !important;
	font-weight: 400 !important;
	line-height: 20px !important;
} 
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
	margin:0;
	margin-top: 13px;
	margin-right: .5rem !important;
}
.woocommerce span.onsale {
	min-height: 0;
}
.price ins {
	text-decoration: none;
}
.price del {
	color:#9a9ba3;
	font-size: 14px;
}
.price del .woocommerce-Price-amount {
	color:#9a9ba3;
	font-size: 14px;
}
.price bdi {
	color:#1d1d1f !important;
}
.woocommerce-Price-amount {
	font-size: 22px;
	font-weight: 400;
	text-decoration: none;
}
.add-to-cart {
	float: right;
	margin-top: 4px;
}
.add-to-cart a {
	background-color: #0077ed;
	border:1px solid #0077ed;
	border-radius: 5px;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	padding:15px 25px;
	transition: all 0.5s;
}

.add-to-cart a:hover,
.add-to-cart a:focus,
.add-to-cart a:active {
	background-color:#0077ed;
	color: #fff;
	transition: all 0.5s;
}
.product .add-to-cart {
	visibility: hidden;
	transition: all 0.5s;
}
.product:hover .add-to-cart {
	visibility: visible;
	transition: all 0.5s;
}
/* / Product */
ul.categories-knowledge,
ul.categories-knowledge li {
	padding: 0;
	margin:0;
	list-style-type: none;
}
ul.categories-knowledge li a {
	display: block;
	font-size: 18px;
	font-weight: 500;
	line-height: 38px;
}
ul.categories-knowledge li.current-cat a {
	color:#3eb7ad;
}
.search-subtitle {
	font-size: 25px;
	font-weight: 500;
}
.testimonial--pos-text-gfx {
	position: absolute;
	left: 0;
	top: 0;
}
#testimonials {
	background-image: url(../img/testimonials-bg.webp);
	background-repeat: no-repeat;
}
.testimonial--pos-data {
	font-weight: 500;
}
.testimonial--pos-data .source {
	font-size: 14px;
}
.stars-bg {
	background-image: url(../img/stars.webp);
	background-repeat: no-repeat;
	width: 156px;
	height: 22px;
}
.stars-bg.stars-four {
	width: 125px;
}
.stars-bg.stars-tree {
	width: 98px;
}
.stars-bg.stars-two {
	width: 57px;
}
.stars-bg.stars-one {
	width: 27px;
}
.testimonial--pos {
	cursor: pointer;
	transition: all 0.5s;
}
.testimonial--pos:hover {
	background-color: #fff;
	transition: all 0.5s;
	cursor: pointer;
}
.page-numbers {
	background-color: #3eb7ad;
	color:#fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	text-align: center;
	font-weight: 500;
	font-size: 15px;
	border-radius: 5px;
}
.page-numbers:hover,
.page-numbers.current {
	background-color: #2fffff;
	color:#000;
}
.ubermenu-main {
	width: 100% !important;
}
.shop_home_title_description {
	font-size: 25px;
	font-weight: 500;
	line-height: 28px;
	width: 60%;
}
.shop_home_title_description strong {
	color:#fff;
}
.product-categories,
.searchandfilter ul {
	padding-left: 0;
}
.product-categories li {
	list-style-type: none;
}

.searchandfilter ul li.sf-field-taxonomy-product_cat ul li,
.searchandfilter ul li.sf-field-taxonomy-product_cat ul li label{
	cursor: pointer;
}
.searchandfilter ul li.sf-field-taxonomy-product_cat ul li:hover ,
.searchandfilter ul li.sf-field-taxonomy-product_cat ul li label:hover {
	color:#3eb7ad;
}
.product-categories li a,
.searchandfilter ul li.sf-field-taxonomy-product_cat ul li label {
	padding-left: 0;
	font-weight: 500;
	font-size: 20px;
}
.product-categories li a {
	line-height: 34px;
}
.searchandfilter ul li.sf-field-taxonomy-product_cat ul li input {
	display: none;
}

/* Product */
li.product h2 {
	padding-left: .5rem !important;
	padding-right: .5rem !important;
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
	color:#1d1d1f;
}
.woocommerce ul.products li.product .price {

	align-items: center;
	justify-content: start;
	margin-left: .5rem !important;
} 
.woocommerce ul.products li.product .price del {
	margin-left: 10px;
} 
.woocommerce ul.products li.product .button {
	display: inline-block;

}
.woocommerce ul.products li.product:hover .button {
	display: inline-block;
}
/* /Product */
.woocommerce ul.products.columns-4 li.product, 
.woocommerce-page ul.products.columns-4 li.product {
    width: 23.47%;
    margin-right: 1.95%;
    margin-bottom: 1.95%;
}
.woocommerce ul.products.columns-4 li.product:nth-child(4n), 
.woocommerce-page ul.products.columns-4 li.product:nth-child(4n) {
	margin-right: 0;
}
a.add_to_cart_button,
button.single_add_to_cart_button,
a.product_type_grouped,
a.product_type_external,
a.wc-forward,
a.wp-element-button {
	background-color: #0077ed !important;
	color:#fff !important;
	font-weight: 500 !important;
	font-size: 15px !important;
	border-radius: 5px !important;
	padding:15px 25px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-cart-plus' viewBox='0 0 16 16'%3E%3Cpath d='M9 5.5a.5.5 0 0 0-1 0V7H6.5a.5.5 0 0 0 0 1H8v1.5a.5.5 0 0 0 1 0V8h1.5a.5.5 0 0 0 0-1H9z'/%3E%3Cpath d='M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zm3.915 10L3.102 4h10.796l-1.313 7zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat;
	display: inline-block;
	background-position: center right 15px;
	padding-right: 40px !important;
	margin: 15px auto 15px 0.5em !important;
	text-align: center !important;
}
button.single_add_to_cart_button {
	background-color: #3eb7ad !important;
	color:#fff !important;
	font-weight: 500 !important;
	font-size: 15px !important;
	border-radius: 5px !important;
	padding:15px 25px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-cart-plus' viewBox='0 0 16 16'%3E%3Cpath d='M9 5.5a.5.5 0 0 0-1 0V7H6.5a.5.5 0 0 0 0 1H8v1.5a.5.5 0 0 0 1 0V8h1.5a.5.5 0 0 0 0-1H9z'/%3E%3Cpath d='M.5 1a.5.5 0 0 0 0 1h1.11l.401 1.607 1.498 7.985A.5.5 0 0 0 4 12h1a2 2 0 1 0 0 4 2 2 0 0 0 0-4h7a2 2 0 1 0 0 4 2 2 0 0 0 0-4h1a.5.5 0 0 0 .491-.408l1.5-8A.5.5 0 0 0 14.5 3H2.89l-.405-1.621A.5.5 0 0 0 2 1zm3.915 10L3.102 4h10.796l-1.313 7zM6 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0m7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat;
	display: inline-block;
	background-position: center right 15px;
	padding-right: 40px !important;
	margin: 15px auto 15px 0.5em !important;
	text-align: center !important;
}
a.product_type_grouped {
	background-color: #0080ff !important;
	background-image: none !important;
	padding-right: 25px !important;
}
a.product_type_external {
	background-color: #3d9eff !important;
	background-image: none !important;
	padding-right: 25px !important;
}
a.wc-forward,
a.wp-element-button {
	background-color: #ff6300 !important;
	background-image: none !important;
	padding-right: 25px !important;
}
button.wc-block-components-checkout-place-order-button,
button.wc-block-components-button {
	background-color: #ff6300 !important;
	background-image: none !important;
	padding-right: 25px !important;
	color:#fff;
	border:none !important;
	border-radius: 5px !important;
}
a.wc-block-components-checkout-return-to-cart-button {
	font-weight: 500;
}
a.add_to_cart_button.added {
	background-image: none !important;
	padding-right: 15px !important;
	transition: all 0s !important;
	margin-right: 10px !important;

}
a.added_to_cart {
	font-weight: 500;
	color:#3eb7ad;
	font-size: 15px !important;
}
.woocommerce div.product form.cart {
	display: flex;
	align-items: center;
}
.woocommerce div.product form.cart div.quantity {
	line-height: 38px;
}
.current-cat a {
	color:#3eb7ad;
}

.woocommerce-message {outline: none !important;}
button.wc-block-cart-item__remove-link {
	color:#ff6300 !important;
	font-weight: 500 !important;
}
.wc-block-grid__product-title {
	font-size: 17px !important;
	font-weight: 500 !important;
	text-align: left !important;
}

h2.wp-block-heading {
	font-size: 20px !important;
}

.variations_form {
	background-color: #f8f8f8;
	width: 100%;
	padding: 25px 25px 25px 25px;
	display: block;
	border-radius: 25px;	
}
.variations_form.cart {
	display: flex;
	flex-direction: column;
}
table.variations {
	position: relative;
}
.variations tbody tr {
	display: flex;
	flex-direction: column;
	width:50%;
	float: left;
	margin-top:5px;
	margin-bottom:5px;
}
.variations tbody tr th.label {
	width: 100%;
	display: block;
}
.single_variation_wrap {
	width: 100%;
	display:flex;
	align-items: center;
	justify-content:space-between;
}
.woocommerce-variation-add-to-cart {
	display:flex;
	align-items:center;
	align-content: center;
	margin-left: auto;
}
input.qty {
	border-radius: 5px;
	border:1px solid #e5e5e6;
}
label {
	font-size: 16px;
	font-weight: 500 !important;
}
select {
	border-radius: 5px;
	border:1px solid #e5e5e6;
	background-color: #fff !important;
	padding-left: 15px;
	font-size: 16px;
	width: 95%;
}
.product_meta a {
	font-weight: 700;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border-bottom-left-radius: 0 !important;
	border:0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
	display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-weight: 500;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color:#fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background-color: #3eb7ad !important;
	color:#fff;
	border-bottom-left-radius: 0 !important;
}
.related.products h2 {
	font-size: 30px;
}	
h3.related_processes_header {
	font-size: 28px;
	font-weight: 700;
}
h3.related_processes_header strong {
	color:#3eb7ad;
}
.select2-container .select2-selection,
.select2-container .select2-selection__rendered {
	height: 45px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	top:10px !important;
}
.shop-sidebar h3 {
	margin-top:30px;
	font-size: 20px;
	font-weight: 600;
}
.shop-sidebar h3:first-of-type {
	margin-top:0px;
}
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
	font-weight: 500;
	font-size: 15px;
	padding-left: 15px;
}
a.added_to_cart.wc-forward {
	padding-top:12px !important;
	padding-bottom:12px !important;
}
.place-order button#place_order {
  background-color:#ff6300 !important;
  color:#fff;
  padding:20px 25px;
}
.woocommerce-MyAccount-navigation ul {
 padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
 list-style-type: none;
 font-weight: 500;
}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	margin-bottom:50px;
	color:#3eb7ad;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
  font-size:15px;
  margin:0;
  line-height:1;
  cursor:pointer;
  position:relative;
  text-decoration:none;
  overflow:visible;
  padding:15px 25px;
  font-weight:500;
  border-radius:5px;
  left:auto;
  color:#fff;
  background-color:#3eb7ad;
  border:0;
  display:inline-block;
  background-image:none;
  box-shadow:none;
  text-shadow:none
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
  background-color:#38a89f;
  text-decoration:none;
  background-image:none;
  color:#fff;
}
#dgwt-wcas-search-input-1 {
	border:1px solid #1d1d1f;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
	padding:13px 24px 13px 48px;
	line-height:24px;
	font-size:16px;
	border:2px solid transparent;
	border-radius:5px;
	height:auto;
	font-family:Roboto,sans-serif;
	background-color:#fff
 }

@media only screen and (max-width : 768px) {
	.woocommerce ul.products[class*=columns-] li.product,
	.woocommerce-page ul.products[class*=columns-] li.product {
	width:100%;
	float:left;
	clear:both;
	margin:0 0 2.992em
	}
}
/* ============================================= */
/* 6. Responsive fixes                           */
/* ============================================= */

@media only screen and (max-width : 1150px) {
	.slider-container .slider-controls {
		margin: 0;
	    padding: 0;
	    list-style: none;
	    position: absolute;   
	    top: 50%;
	    transform: translatey(-50%);
	    display: flex;
	    align-items: center;    
	    justify-content: space-between;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) { 

	.fixed-top.navbar-light .navbar-nav .nav-link {
		padding-top:8px;
		padding-bottom:8px;
	}
	.navbar-dark .navbar-nav .nav-link {
		padding-top:10px;
		padding-bottom:10px;
	}
	.navbar {
		padding-top:8px !important;
		padding-bottom:8px !important;
	}
	.navbar-brand img {
		width: 120px; 
		height: auto;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	/* WP image float fix */
	figure.alignleft, img.alignleft, figure.alignright, img.alignright {
		float:none;
	}
	/* /WP image float fix */

} 

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
}


/* Height */
@media only screen and (max-height : 730px) {
}