:root {
	--turquoise: #47B8BB;
	--blueblack: #253D4E;
	--darkgreen: #183F40;
	--darkblue: #00007A;

	/* pastel colors */
	--lightgreen1: #F2FCE4;
	--lightgreen2: #ECFFEC;
	--lightgreen3: #F2FCE4;
	--lightyellow: #FFFCEB;
	--lightpink: #FEEFEA;
	--lightorange: #FFF3EB;
	--lightpurple: #FFF3FF;
	--lightblue: #f9fdff;
	--lightgrey: #D2D8D9;
}

* {
	margin: 0;
	box-sizing: inherit;
}
*:before, *:after {
	box-sizing: inherit;
}
html, body {
	height: 100%;
	box-sizing: border-box;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, label, fieldset, input, textarea, p, blockquote, th, td {
	padding: 0;
	margin: 0;
}
body.maintenance {
	background:#f9f9f9;
}

body.removeScrollBar {
	overflow:hidden !important;
}
fieldset, img {
	border: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ol, ul {
	list-style: none;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-weight: normal;
	font-style: normal;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
caption, th {
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%;
}
q:before, q:after {
	content: '';
}
p {
	margin-bottom: 15px;
}
abbr, acronym {
	border: 0;
}
iframe {
	border: none;
	margin: 0;
	padding: 0;
}
body, td, th {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	color: var(--blueblack);
}
body {
	background:#FFF;
	margin: 0;
}
a:link, a:visited, a:active {
	color: #000;
	text-decoration: none;
	outline: none;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
}
a:hover {
	text-decoration: none;
	color: var(--blueblack);
}
.clr {
	clear: both;
	font-size: 1px;
	height: 1px;
}
/* float clearing for IE6 */
* html .clearfix {
	height: 1%;
	overflow: visible;
}
/* float clearing for IE7 */
*+html .clearfix {
	min-height: 1%;
}
/* float clearing for everyone else */
.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	font-size: 0;
}
#wrapper {
	width: 100%;
	min-height: calc(100vh - 40px);
	margin: 0 auto;
	padding: 0;
}

.header-top {
	background-color: var(--turquoise);
	color: #fff;
	padding: 10px 0;
	font-size: 13px;
}
.header-top ul li {
	display: inline-block;
	margin-right: 20px;
	position: relative;
}
.header-top ul li:not(:last-child)::after {
	content: '|';
	position: absolute;
	right:-14px;
}
.header-top a:link,
.header-top a:active,
.header-top a:visited {
	color: #fff;
}
.header-top a:hover {
	color: rgba(255,255,255,.8);
}
.header-middle {
	padding: 10px 0;
	margin-bottom: 10px;
}
.header-middle .logo {
	margin-right: 100px;
}
.header-middle .logo img {
    height: 80px;
}
.header-middle .search_bar {
	width: 100%;
	max-width: 600px;
	transition: width .3s ease-in-out;
}
.header-middle .search_bar .input-group {
	border:2px solid #287779;
	border-radius: 6px;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
}
.header-middle .search_bar .input-group:hover {
	border-color: var(--turquoise);
}
.header-middle .search_bar .form-control {
	height: 46px;
	line-height: 46px;
	border-radius: 6px;
	background-color: #fff;
	border: none;
}
.header-middle .search_bar .input-group-text {
	border:none;
	background-color: transparent;
}
.header-middle .search_bar .form-control:focus {
	outline: none;
	box-shadow: none;
}
.header-middle .search_bar .input-group-text {
	cursor: pointer;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
}
.header-middle .search_bar .input-group-text:hover {
	color: var(--turquoise);
}
.header-bottom {
	padding: 10px 0 15px;
	border-bottom: 1px solid #ececec;
}
.header-bottom .main-categories {
	color: var(--darkgreen);
	font-size:16px;
}
.header-bottom .main-categories span {
	font-weight: 700;
	display: inline-block;
	margin-right: 15px;
}
.header-bottom .main-categories ul {
	display: inline-block;
}
.header-bottom .main-categories ul li {
	display: inline-block;
	margin-right: 20px;
	position: relative;
	font-weight: 500;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
}
.header-bottom .main-categories ul li:not(:last-child)::after {
	content: '|';
	position: absolute;
	right:-14px;
}
.header-bottom .main-categories ul li a:link,
.header-bottom .main-categories ul li a:active,
.header-bottom .main-categories ul li a:visited {
	color: var(--darkgreen);
}
.header-bottom .main-categories ul li a:hover {
	color: var(--turquoise);
}

#main_slides {
	background: url("images/main-slides-background.webp") no-repeat center bottom;
	background-size: cover;
	width: 100%;
	padding: 50px 0;
}
#main_slides .hero-slide {
	height: 538px;
	border-radius: 30px;
	background-color: #C2E1F3;
	background-size: cover;
	background-position: center center;
}
#popular_categories .item .title {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	margin: 10px auto 40px;
}
.home_section {
	margin: 50px auto;
}
.home_section h2 {
	font-size:24px;
	font-weight: 700;
	margin-bottom: 20px;
}
.page_section h2 {
    font-size:20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.product .item_wrapper {
	min-height: 220px;
	position: relative;
	background: #F4F6FA;
	text-align: center;
	border: 1px solid #F4F6FA;
	border-radius: 10px;
	margin-bottom: 20px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.product .item_wrapper:hover {
	background: #fff;
	border: 1px solid #BCE3C9;
	-webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.product .item {
	margin: 0 auto;
}

.product .item .category_title {
	font-size:14px;
	font-weight: 400;
	margin: 10px auto -10px auto;
}
.product .item .title {
	font-size:20px;
	font-weight: 700;
	margin: 10px auto;
}
.product .item .icon img {
	max-height: 100px;
}
.add_price .form-label {
	font-size: 20px;
	font-weight: 700;
}
#category .cover {
	padding: 20px 0 6px;
	background-color: var(--lightblue);
	color: #000;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}
#category .cover h1 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}
.alphabet {
    margin: 20px auto 30px;
    font-size:20px;
    font-weight: 600;
}
.alphabet span {
    padding: 5px 10px;
    border-radius: 4px;
}
.alphabet span:hover,
.alphabet .selected span:hover {
    background-color: var(--turquoise);
    color: #fff;
}
.alphabet .selected span {
    background-color: var(--blueblack);
    color: #fff;
}
.alphabet .disabled {
    pointer-events: none;
    cursor: default;
}
.alphabet .disabled span {
    background-color: transparent;
    color: var(--lightgrey);
}
@media screen and (orientation:portrait) {
    .alphabet span {
        display: inline-block;
        margin-bottom: 20px;
    }
}
#login_wrapper {
	position: relative;
	top: 60px;
	height: 200px;
}
#product_price::placeholder {
    color: rgba(0,0,0,.3);
}
.login_title {
	text-align: center;
}
.login_title img {
	height: 160px;
}
.login_form {
	width: 400px;
	margin: 15px auto 0 auto;
	padding: 15px 15px;
}
.form-control-xl {
	min-height: calc(2em + 1.5rem + calc(var(--bs-border-width) * 2));
	padding: 1rem 1.5rem;
	font-size: 1.75rem;
	border-radius: var(--bs-border-radius-lg);
}
.btn span {
	display: block;
}
.btn-group-xl>.btn, .btn-xl {
	width: 100%;
	max-width: 350px;
	--bs-btn-padding-y: 1rem;
	--bs-btn-padding-x: 1.5rem;
	--bs-btn-font-size: 1.75rem;
	--bs-btn-border-radius: var(--bs-border-radius-lg);
}
@media only screen and (max-width: 767px) {
	.btn-xl {
		width: 100%;
		max-width: inherit;
	}
}
.table-deltia thead tr th {
	background-color: var(--blueblack);
	color: #fff;
}

.btn-deltia {
	background-color: var(--turquoise);;
	color: #fff !important;
	border-color: var(--turquoise);
}
.btn-deltia:hover,
.btn-deltia:active{
	background-color: var(--blueblack);;
	color: #fff !important;
	border-color: var(--blueblack);
}
.breadcrumb-item {
	font-size: 13px;
	font-weight: 500;
}
.breadcrumb-item.active {
	font-weight: 700;
}
.sidebar_box {
	position: relative;
	padding: 30px;
	border: 1px solid #ececec;
	border-radius: 15px;
	-webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.widget-category {
	position: relative;
	border-bottom: 2px solid #ececec;
	padding-bottom: 20px;
	font-size: 24px;
	margin-bottom: 20px !important;
}
.widget-category::after {
	content: "";
	width: 80px;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
	background-color: var(--turquoise);
}

.sidebar_box ul > li > a {
	line-height: 48px;
	border-radius: 5px;
	border: 1px solid #F2F3F4;
	margin: 0 0 15px 0;
	transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.sidebar_box ul > li:hover > a,
.sidebar_box ul > li.active > a {
	border: 1px solid var(--turquoise);
	background-color: var(--turquoise);
	color: #fff;
	-webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.sidebar_box ul > li > a:link,
.sidebar_box ul > li > a:active,
.sidebar_box ul > li > a:visited{
	display: block;
	padding: 9px 18px;
	line-height: 1.5;
	color: var(--blueblack);
	font-size: 14px;
}
.sidebar_box ul > li > a:hover,
.sidebar_box ul > li.active > a{
	color: #fff;
}
.sidebar_box ul > li a img {
	max-width: 30px;
	margin-right: 15px;
}
.sidebar_box ul.multi_level li:not(:last-child) {
	line-height: 30px;
	border-bottom: 1px solid #F2F3F4;
	transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.sidebar_box ul.multi_level {
	margin-bottom: 20px;
}
.sidebar_box ul.multi_level li > a {
	display: block;
	border: none;
	margin: 0;
	border-radius: 0;
}
.sidebar_box ul.multi_level li > a:hover {
	background-color: #fff;
	color:var(--turquoise);
	-webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.sidebar_box ul.multi_level li.active a {
	background-color: var(--blueblack);
	color: #fff;
}
.btn-deltia {
	background-color: var(--turquoise);;
	color: #fff;
	border-color: var(--turquoise);
}
.btn-deltia:hover {
	background-color: var(--blueblack);;
	color: #fff;
	border-color: var(--blueblack);
}
.product .data .last_update {
	color:#828282;
	font-size: 13px;
	margin: 20px auto;
}
.product .data ul li {
	line-height: 40px;
}
.product .data ul li span {
	font-weight: 700;
}

.push {
	height: 160px
}
footer {
	height: 40px;
	line-height: 40px;
	color: #fff;
	background-color: #47b8bb;
	font-size: 14px;
}

footer a:link,
footer a:active,
footer a:visited {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .madeby {
	text-align: right;
}
@media (max-width: 991px) {
	footer {
		height: auto;
	}
}

.container_error {
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
}
.container_error h1 {
	font-size: 60px;
	text-align: center;
}
.container_error p {
	text-align: center;
	font-size: 24px;
}
.maintenance_mode_wrapper {
	padding: 300px 0 0 0;
}
.maintenance_mode {
	width: 600px;
	margin: 0 auto;
	padding: 30px;
}
.maintenance_text {
	text-align: center;
	font-size: 24px;
	font-weight:700;
	color:#143458;
	line-height: 1.5em;
}
.maintenance_logo {
	margin:0 auto 30px auto;
	text-align:center;
}
.maintenance_logo img {
	height: 140px;
}

/* BACK TO TOP */
.cd-top {
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 20px;
	right: 10px;
	z-index: 10000;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: rgba(37, 61, 78, 0.8) url('images/cd-top-arrow.svg') no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top:hover {
	background-color: var(--darkgreen);
	opacity: 1;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
	visibility: visible;
	opacity: 1;
}
.cd-top.cd-fade-out {
	opacity: .5;
}
.no-touch .cd-top:hover,
.cd-top.cd-fade-out:hover {
	background-color: #c9262d;
	opacity: 1;
}
.reCAPTCHA_tos {
	font-size:11px !important;
	line-height: initial;
	order: 5;
}
.grecaptcha-badge {
	z-index:5050;
	visibility: hidden;
	opacity: 0;
	transition: linear opacity 1s;
}

.grecaptcha-badge.show {
	visibility: visible;
	opacity: 1;
	transition: linear opacity 1s;
}
em.error, label.error, span.error {
	font-size: 13px;
	color: #ADF7FF;
}

label#custom-file-label.error_force,
span#custom-file-label.error_force{
	border: 1px solid #ADF7FF !important;
	color: inherit;
}

#contact-form label.error,
#career label.error{
	display:none;
}
#contact-form .form-control.error {
	border-bottom: 1px solid #ADF7FF;
}
input.error, input.error:focus {
	border: 1px solid #ADF7FF;
}
select.error, select.error:focus {
	border: 1px solid #ADF7FF;
}
textarea.error, textarea.error:focus {
	border: 1px solid red;
}
