/*
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	scroll-behavior: smooth;
	line-height: 1.15; /* 1 */
}

/*
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
	
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
/*
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
	
button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	/* line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}
	
/*
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 * 2. Outline Chrome. 
 */
	
button,
input { /* 1 */
	overflow: visible;
}
	
/*
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
	
button,
select { /* 1 */
	text-transform: none;
}
	
/*
 * Correct the inability to style clickable types in iOS and Safari.
 */
	
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}
	
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
	
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
	
/* Misc */
html, body {
	font-family: "Source Sans 3", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	display: flex;
	min-height: 100vh;
	color: #444;
	margin: 0;
}

/* Breadcrumbs */
ul.breadcrumbs li:not(:first-of-type) {
	margin-left: 5px;
	background: url('images/right.svg') no-repeat left / 16px;
	padding-left: 19px;
}
ul.breadcrumbs li.last {
	color: #757575;
}

h1 {
	font-weight: 600;
}

/* Spinner */
.spinner {
	width: 56px;
	height: 56px;
	display: grid;
	border: 4.5px solid #0000;
	border-radius: 50%;
	border-right-color: #dcdcdc;
	animation: spinner-a4dj62 1s infinite linear;
 }
 
 .spinner::before,
 .spinner::after {
	content: "";
	grid-area: 1/1;
	margin: 2.2px;
	border: inherit;
	border-radius: 50%;
	animation: spinner-a4dj62 2s infinite;
 }
 
 .spinner::after {
	margin: 8.9px;
	animation-duration: 3s;
 }
 
 @keyframes spinner-a4dj62 {
	100% {
	   transform: rotate(1turn);
	}
 }

/* Modal */
.no-overflow {
	overflow: hidden;
}
div.overlay {
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	position: fixed;
	backdrop-filter: blur(5px);
}
div.overlay div.contents {
	width: 95%;
	background: #fff;
	filter: drop-shadow(0 0 2px #666);
	min-width: 320px;
	max-width: 900px;
}
div.overlay div.contents div.body {
	overflow: auto;
	max-height: 90vh;
}
div.overlay div.contents div.header {
	background: #666;
	height: 10px;
	border-radius: 5px 5px 0 0;
}
div.overlay div.contents div.header button.close {
	width: 20px;
	height: 20px;
	background: url('images/cancel-white.svg') no-repeat center center / 20px;
}
div.overlay div.contents div.actions {
	border-radius: 0 0 5px 5px;
	justify-content: end;
}
div.overlay div.contents div.actions button {
	padding: 5px 20px;
	box-sizing: border-box;
}

/* Global wrapper */
.global-wrapper {
	width: 92%;
	max-width: 1300px;
}

/* Logo */
header a.logo img {
    width: 120px;
	height: 36px;
}

/* Menu */
ul.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.menu li a:not(.with-background) {
	padding: 5px 10px 5px 25px;
	color: #3d3d3d;
}
ul.menu li a {
	font-size: 1.05em;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
	padding: 5px 10px 5px 30px;
}
ul.menu li a.home {
	background: url('images/home.svg') no-repeat left center / 20px;
}
ul.menu li a.services {
	background: url('images/services.svg') no-repeat left center / 20px;
}
ul.menu li a.prices {
	background: url('images/prices.svg') no-repeat left center / 20px;
}
ul.menu li a.about {
	background: url('images/about.svg') no-repeat left center / 20px;
}
ul.menu li a.contacts {
	background: url('images/contacts.svg') no-repeat left 10px center / 20px;
}
ul.menu li a.blue {
	color: #fff;
	background-color: #0d1b2a;
	transition: background-color 0.3s, color 0.3s;
	padding: 5px 15px 5px 35px;
}


.texts {
	font-size: 1em;
	line-height: 1.4em;
}

/* Landing */
.with-background {
	background-color: #f9f9f9;
}
section.landing1 div.contents {
	overflow: hidden;
	height: 500px;
}
section.landing1 img {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
section.landing1 div.contents {
	z-index: 2;
}
section.landing1 div.transparent {
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}
section.landing1 div.contents h1 {
	font-size: 3em;
	margin: 0 0 20px ;
}
section.landing1 div.contents p {
	font-size: 1.5em;
}

section h2.big {
	font-size: 2.5em;
	margin: 0 0 15px 0;
} 
section.landing2 div.boxes dl dt {
	font-weight: 600;
	font-size: 1.1em;
	padding: 0 0 0 25px;
}
section div.boxes dl dt.storage {
	background: url('images/storage.svg') no-repeat left center / 22px;
}
section div.boxes dl dt.fulfill {
	background: url('images/fulfill.svg') no-repeat left center / 22px;
}
section div.boxes dl dt.fulfill_personalized {
	background: url('images/personalize_fulfill.svg') no-repeat left center / 22px;
}
section div.boxes dl dt.integrations {
	background: url('images/integrations.svg') no-repeat left center / 22px;
}
section div.boxes dl dt.fast_delivery {
	background: url('images/fast_delivery.svg') no-repeat left center / 22px;
}
section div.boxes dl dt.support {
	background: url('images/support.svg') no-repeat left center / 22px;
}
section div.boxes dl dt.checkmark {
	background: url('images/checkmark.svg') no-repeat left center / 22px;
}
section div.boxes dl dt.receive {
	background: url('images/receive1.svg') no-repeat left center / 22px;
}
section div.boxes dl dt.send {
	background: url('images/send1.svg') no-repeat left center / 22px;
}
section div.boxes dl dt.return {
	background: url('images/return1.svg') no-repeat left center / 22px;
}
section div.boxes dl dd {
	margin: 10px 0 0 0;
	line-height: 1.2em;
}

section div.image img {
	width: 100%;
	height: 100%;
	max-height: 350px;
	object-fit: contain;
	
}
section .landing_w1 {
	width: 50%;
}
section .landing_w2 {
	width: 40%;
}
section .landing_w3 {
	width: 60%;
}

section div.padding {
	box-sizing: border-box;
}

/* Footer */

footer {
	color: #555;
	padding: 40px 0;
}

footer div.contents {
	border-top: 1px solid #f0f0f0;
}
footer div.column.left {
	min-width: 250px;
}
footer div.column:not(.left) {
	min-width: 200px;
}
footer div.column.left img.logo {
	width: 150px;
	margin-bottom: 1rem;
}
footer div.column.left p {
	line-height: 1.5;
}
footer div.column h3 {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #204165;
}
footer div.column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer div.column li {
  margin-bottom: 0.5rem;
}
footer div.column a {
  color: #3d3d3d;
  text-decoration: none;
  transition: color 0.2s;
}
footer div.column a:hover {
  color: #0d1b2a;
}

/* > 1200px */
@media (min-width: 1200px) {
	
}

/* < 1199px */
@media (max-width: 1199px) {

}

/* Големи екрани */
@media (min-width: 1024px) {

	header button.hamburger {
		display: none;
	}
	header nav {
		align-items: center;	
	}
	ul.menu {
		gap: 2rem;
	}

	.with-gap {
		gap: 40px;
	}

	section div.padding {
		padding: 40px;
	}

	section.landing2 div.boxes {
		gap: 20px;
	}
	section.landing2 div.boxes .box1 {
		width: calc(25% - 15px);
	}
	section.landing2 div.boxes .box2 {
		width: calc(50% - 15px);
	}


	footer div.column.left {
		max-width: 350px;
	}
}

/* Общо мобилни телефони и таблети */
@media (max-width: 1023px) {
	
	header nav:not(.shown) {
		display: none;
	}
	header button.hamburger {
		border: 0;
		width: 30px;
		height: 30px;
		background: url('images/hamburger.svg') no-repeat center / 30px;
		transition: transform 0.5s;
	}
	header button.hamburger[aria-expanded="true"] {
		transform: rotate(90deg);
	}
	header nav.shown {
		position: absolute;
		right: 0;
		top: 60px;
		z-index: 10;
	}
	header nav.shown ul {
		backdrop-filter: blur(3px);
		padding: 10px;
		box-sizing: border-box;
		background: rgba(255, 255, 255, 0.75);
		border-radius: 10px;
		border: 1px solid #f0f0f0;
	}
	header nav ul {
		flex-direction: column;
	}
	ul.menu {
		gap: 10px;
	}

	section.landing2 > div {
		flex-direction: column;
	}

	section.main {
		flex-direction: column;
	}
	
	.landing_w1, 
	.landing_w2, 
	.landing_w3 {
		width: 100% !important;
	}

	section.landing2 div.boxes dl:not(:last-of-type) {
		margin: 0 0 20px 0;
	}
	section.landing2 div.boxes dl:last-of-type {
		margin: 0;
	}

	section div.padding {
		padding: 20px;
	}

	.with-gap {
		gap: 20px;
	}

	footer span {
		margin-top: 20px;
	}

	footer div.column {
		width: 100%;
	}
}

/* От малки таблети нагоре */
@media (min-width: 650px) {

}


/* Малки таблети и телефони */
@media (max-width: 650px) {

}

@media (min-width: 650px) and (max-width: 1023px) {

}

/* Styles */
.bold {
	font-weight: bold;
}
.italic {
	font-style: italic;
}

.line-height-13em {
	line-height: 1.3em;
}

/* Colors */
.white {
	color: #fff;
}
.grey {
	color: #3d3d3d;
}
.red {
	color: #c1121f;
}
.light-blue {
	color: #2958b0;
}
.blue {
	color: #1b263b;
}
.green {
	color: #2a7b42;
}
.orange {
	color: #fb8500;
}
.light-grey {
	color: #dcdcdc;
}

/* LazyLoad */
.ll:not(.ll-loaded) {
	background-color:#f9f9f9;
}
.ll-loaded {
	background-color: transparent;
}

/* Width & Height */
.full-width {
	width: 100%;
}
.full-height {
	height: 100%;
}

.w05 {
	width: 5%;
}
.w1 {
	width: 10%;
}
.w15 {
	width: 15%;
}
.w2 {
	width: 20%;
}
.w25 {
	width: 25%;
}
.w3 {
	width: 30%;
}
.w4 {
	width: 40%;
}
.w5 {
	width: 50%;
}
.w6 {
	width: 60%;
}
.w7 {
	width: 70%;
}
.w8 {
	width: 80%;
}
.w9 {
	width: 90%;
}

/* Font size */
.font-size-13em {
	font-size: 1.3em;
}
.font-size-12em {
	font-size: 1.2em;
}
.font-size-11em {
	font-size: 1.1em;
}
.font-size-09em {
	font-size: 0.9em;
}
.font-size-08em {
	font-size: 0.8em;
}

/* Pointers */
.pointer {
	cursor: pointer;
}

/* Autocomplete */
input.autocomplete.open {
	border-radius: 5px 5px 0 0;
	z-index: 20;
}
ul.autocomplete:not(.open) {
	display: none;
}
ul.autocomplete {
	position: absolute;
	border-radius: 0 0 5px 5px;
	margin: 0;
	max-height: 500px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 10px 0;
	z-index: 10;
	outline: 1px solid #3abb60;
}
ul.autocomplete li.hover {
	background-color: #f0f0f0;
}
ul.autocomplete li.disabled {
	background: #dcdcdc;
	color:#bababa;
}

/* Margins */
.mra {
	margin-right: auto;
}
.mr5 {
	margin-right: 5px;
}
.mr10 {
	margin-right: 10px;
}

.mla {
	margin-left: auto;
}
.ml5 {
	margin-left: 5px;
}
.ml10 {
	margin-left: 10px;
}
.ml20 {
	margin-left: 20px;
}

.mta {
	margin-top: auto;
}
.mt0 {
	margin-top: 0;
}
.mt5 {
	margin-top: 5px;
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mt50 {
	margin-top: 50px;
}

.mba {
	margin-bottom: auto;
}
.mb0 {
	margin-bottom: 0px;
}
.mb2 {
	margin-bottom: 2px;
}
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb50 {
	margin-bottom: 50px;
}

.m0 {
	margin: 0;
}

/* Position */
.relative {
	position: relative;
}
.absolute {
	position: relative;
}

/* Misc, Border */
.bo1 {
	border: 1px solid #eee;
}
.bo2 {
	border: 1px solid #dcdcdc;
}
.bo0 {
	border: 0;
}
.bt1 {
	border-top: 1px solid #f0f0f0;
}
.bb1 {
	border-bottom: 1px solid #f0f0f0;
}

/* Shadow */
.drop-shadow {
	filter: drop-shadow(0px 0px 2px #ddd);
}
.shadow {
	box-shadow: 0px 0px 4px 2px #ddd
}

/* Misc, Scroll */
.hidden-scroll {
	white-space: nowrap;
	overflow-x: scroll;
	overflow-y: hidden;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}
.hidden-scroll::-webkit-scrollbar {
	display: none;
}
.scroll-y {
	overflow-y: auto;
}

/* Background color */
.bc1 {
	background-color: #fbfbfb;
}
.bc2 {
	background-color: #f0f0f0;
}
.bc3 {
	background-color: #f9f9f9;
}
.bc4 {
	background-color: #ededed;
}
.bc5 {
	background-color: #fff;
}
.bc6 {
	background-color: #3abb60;
}

/* Misc, Padding */
.p5, .p10, .p20, .p40, .pt5, .pb5, .pt10, .pt10, .pt20, .pt40, .pr5,  .pb10, .pb20, .pb40 {
	box-sizing: border-box;
}

.p0 {
	padding: 0;
}
.p5 {
	padding: 5px;
}
.p10 {
	padding: 10px;
}
.p20 {
	padding: 20px;
}
.p40 {
	padding: 40px;
}


.pt5 {
	padding-top: 5px;
}
.pt10 {
	padding-top: 10px;
}
.pt20 {
	padding-top: 20px;
}
.pt40 {
	padding-top: 40px;
}


.pb5 {
	padding-bottom: 5px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb40 {
	padding-bottom: 40px;
}

.pr5 {
	padding-right: 5px;
}

.pr10-space-children > div:not(:last-of-type) {
	margin-right: 10px;
}

/* Misc, Misc */
.ellipsis {
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.line-clamp {
	display: inline-block; /* Fallback */
	display: -webkit-box;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	white-space: normal;
}
.bullet:not(:first-child)::before {
	content: '\2022';
	margin: 0 5px;
	color: #444;
}
.bullet span.with-image {
	padding-left: 20px;
	background: no-repeat left center / 16px;
}

/* Misc, Border Radius */
.br5 {
	border-radius: 5px;
}
.brc {
	border-radius: 50%;
}

/* Flex, Misc */
.flex {
	display: flex;
}
.gap40 {
	gap: 40px;
}
.flex-inline {
	display: inline-flex;
}
.flex.items-align-start {
	align-items: flex-start
}
.flex.space-between {
	justify-content: space-between;
}
.flex.column {
	flex-direction: column;
}
.grow {
	flex-grow: 1;
}
.flex.no-shrink {
	flex-shrink: 0;
}
.flex.wrap {
	flex-wrap: wrap;
}
.flex.align-self-start {
	align-self: start;
}
.flex.justify-content-center {
	justify-content: center;
}
.flex.align-items-center {
	align-items: center;
}
.flex.align-items-last-baseline {
	align-items: last baseline;
}
.min-width {
	min-width: 0;
}

/* Misc */
.center {
	text-align: center;
}
.input-hidden {
	opacity: 0;
	z-index: -10;
    position: absolute;
}
.hidden {
	display: none;
}
a {
	color:#4f4f4f;
	text-decoration: none;
}
.usn {
	user-select: none;
	-webkit-user-select: none;
}

/* Loading UI */
span.loading {
	height: 30px;
	box-sizing: border-box;
	background: url('images/loading-grey.svg') no-repeat center center / 30px;
}
div.error-loading {
	color: red;
	background: #fff4f4;
}

/* Buttons */
.button {
	box-sizing: border-box;
}
.button.only-image {
	width: 18.4px;
	height: 18.4px;
	background: no-repeat transparent center center / 14.2px;
}
.button.with-image {
	background: no-repeat transparent center left 10px / 15px;
}
.button.size1:not(.with-image) {
	padding: 5px 30px;
}
.button.size1.with-image {
	padding: 5px 15px 5px 30px;
}
.button.size2:not(.with-image) {
	padding: 2px 15px;
}
.button.size2.with-image {
	padding: 2px 15px 2px 30px;
}
.button:not(.loading):disabled {
	background-color: #dcdcdc !important;
}
.button.loading:disabled {
	color: transparent !important;
	background: url('images/loading-white.svg') no-repeat #dcdcdc center center / 50% 50% !important;
}




button.barcode {
	width: 30px;
	height: 30px;
	background: url('images/barcode.svg') no-repeat right center / 100%;
}
button.barcode.active {
	animation: blink 1s infinite;
}

/* Alerts */
div.alert.error {
	background-color: red;
	color: #fff;
}
div.alert.information {
	background-color: #31708f;
}
div.alert.success {
	background-color: green;
}


/* Misc, Focus */
div.alert.error + .field  {
	border: 1px solid red !important;
}
.field:disabled {
	background-color: #dcdcdc;
}
/* Misc, blur */
.blur {
	filter: blur(2px);
}


/* Checkbox */
div.checkbox input + label {
	width: 16px;
	height: 16px;
}
div.checkbox input:not(:checked):not(:disabled) + label  {
	border: 1px solid #3abb60;
}
div.checkbox input:not(:checked):disabled + label  {
	border: 1px solid #dcdcdc;
	background-color: #dcdcdc;
}
div.checkbox input:checked + label  {
	border: 1px solid #3abb60;
	background: url('images/agree_white.svg') #3abb60 no-repeat center / 18px;
}
div.checkbox input:checked:disabled + label  {
	border: 1px solid #dcdcdc;
	background: url('images/agree_white.svg') #dcdcdc no-repeat center / 18px;
}

/* List */
div.wmb20:not(:last-of-type) {
	margin-bottom: 20px;
}
div.wmb10:not(:last-of-type) {
	margin-bottom: 10px;
}
div.wmb5:not(:last-of-type) {
	margin-bottom: 5px;
}