/* Modal HELPER STORE*/

.modal-store-help {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.9);
	z-index: 100000;
	transition: all .3s ease-in-out;
}

.modal-store-help .modal-box{
	position: relative;
	width: 100%;
	min-width: 400px;
	max-width: 600px;
	background: #fff;
	border-radius: 5px;
	padding: 20px;
	font-size: 18px;
	transition: all .3s ease-in-out;
}

.modal-store-help .modal-box .msh-title{
	display: flex;
	align-items: center;
	margin: 20px 0 0 0;
}

.modal-store-help .msh-icon{
	background: #34495e;
	_background: linear-gradient(45deg, rgba(0,163,173,1) 0%, rgba(0,109,198,1) 100%);
	border-radius: 8px;
	width: 50px;
	height: 50px;
	margin-right: 12px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8em;
}

.modal-store-help .modal-box h5{
	font-size: 1.7em;
	font-weight: 500;
	color: #34495e;
	display: flex;
	align-items: center;
}
.modal-store-help .modal-box h6{
	font-size: 1.2em;
	font-weight: 400;
	color: #34495e;
}

.modal-store-help .modal-box .steps-area{
	background: #f5f5f5;
	margin: 20px auto;
	padding: 20px;
}

.modal-store-help .modal-box .steps-area p{
	font-size: 1.1em;
	font-weight: 500;
	color: #00a3a0;
	text-transform: uppercase;
}
.modal-store-help .modal-box .steps-area .fig{
	width: 100%;
	border: 1px solid #00a3ad;
	margin: 3px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal-store-help .modal-box ul{
	margin: 15px 0;
	line-height: 1.3em;
	font-weight: 600;
	color: #00a3a0;
	text-transform: uppercase;
}

.modal-store-help .modal-box ul li{
	margin: 28px 0;
	font-size: 0.75em;
}
.modal-store-help .modal-box ul li img{
	height: 75px;
}
.modal-store-help .modal-box ul li:nth-last-of-type(1){
	margin: 16px 0 0 0;
}
.modal-store-help .modal-box ul li b{
	margin-right: 5px;
	background: #00a3ad;
	color: #fff;
	padding: 1px 5px;
	text-align: center;
	min-width: 55px;
	max-width: 60px;
	font-size: 1.3em;
}
.modal-store-help .modal-box span{
	font-size: 0.8em;
	color: #00a3ad;
	font-weight: 500;
}
.modal-store-help .modal-box .close{
	position: absolute;
	right: -16px;
	top: -16px;
	width: 44px;
	height: 44px;
	border-radius: 100%;
	border: 2px solid #fff;
	background: rgb(228, 234, 243);
	color: #34495e;
	cursor: pointer;
	transition: all .1s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	font-weight: 300;
}

.modal-store-help .modal-box .close:hover{
	background: #34495e;
	color: #fff;
	transition: all .1s ease-in-out;
}

.modal-store-help .modal-box .msh-btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal-store-help .modal-box .msh-btn a {
	font-family: "poppins";
	padding: 14px 20px;
	background: #34495e;
	border-radius: 5px;
	color: #fff;
	font-size: 0.8em;
	font-weight: 400;
}

.modal-store-help .modal-box .msh-btn a:hover {
	background: #00a3ad;
	transition: all .1s ease-in-out;
}
.modal-store-help .modal-box .msh-btn a:active {
	transform: scale(1.2);
	transition: all .1s ease-in-out;
}

/* Modal TURNOFF */

.modal-store-help.turnoff {
	display: flex;
	_display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: unset;
	left: unset;
	width: unset;
	height: unset;
	background: rgba(0,0,0,0);
	z-index: 100000;
	bottom: 50px;
	right: 40px;
	transition: all .3s ease-in-out;
}

.modal-store-help.turnoff .modal-box{
	position: relative;
	width: unset;
	min-width: unset;
	max-width: unset;
	background: transparent;
	border-radius: unset;
	padding: 0;
	transition: all .3s ease-in-out;

}
.modal-store-help.turnoff .modal-box .steps-area{
	width: 0;
	height: 0;
	min-width: 0;
	max-width: 0;
	opacity: 0;
	padding: 0;
	margin: 0;
}
.modal-store-help.turnoff .modal-box .msh-btn{
	width: 0;
	height: 0;
	min-width: 0;
	max-width: 0;
	opacity: 0;
	padding: 0;
	margin: 0;
}
.modal-store-help.turnoff .modal-box .msh-title-col2{
	width: 0;
	height: 0;
	min-width: 0;
	max-width: 0;
	opacity: 0;
	padding: 0;
	margin: 0;
}
.modal-store-help.turnoff .modal-box .msh-title{
	padding: 0;
	margin: 0;
}
.modal-store-help.turnoff .modal-box .msh-btn a {
	padding: 0;
	margin: 0;
	width: 0;
	height: 0;
	opacity: 0;
}
.modal-store-help.turnoff .msh-icon {
	border-radius: 100%;
	transform: scale(1.1);
	margin: 0;
	font-size: 1.6em;
	cursor: pointer;
	box-shadow: 0px 6px 15px rgba(0,109,198,.6);
	animation: bounceY 1.5s ease-in-out infinite;
}
@keyframes bounceY {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(15px);
	}
	60% {
		transform: translateY(5px);
	}
}



.cart .cart__sidebar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	color: #34495E;
	font-weight: 500;
	z-index: 1001;
	background: unset;
	background-color: rgba(247, 247, 247, 0.5);
	backdrop-filter: blur(12px);
	border-top: 0px solid #fff;
}

@supports (backdrop-filter: blur(12px)) {
	.cart .cart__sidebar {
		background-color: rgba(247, 247, 247, .5);
		backdrop-filter: blur(12px);
	 }
}


.cart .cart__sidebar-line {
	width: 100%;
	height: 4px;
}
.cart__sidebar-content {
	max-width: 1360px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 70px;
}
.cart__sidebar-content-2 {
	max-width: 1360px;
	margin: 0 auto;
	display: none;
	flex-direction: row;
	align-items: center;
	height: 70px;
}
.cart__count-total {
	flex: 1;
	display: flex;
}
.cart__count {
	margin: 0 70px 0 0;
	display: flex;
	align-items: center;
}
.cart__total {
	display: flex;
	align-items: center;
}
.cart__title {
	text-transform: uppercase;
	max-width: 640px;
	margin: 20px auto;
	font-size: 24px;
}
.cart__actions {
	display: flex;
}
.cart__box {
	border-radius: 6px;
	border: 2px solid #34495E;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 5px;
	font-size: 17px;
	font-weight: 600;
	pointer-events: none;
}
.cart__extra .cart__box {
	border: 0px solid #34495E;
	background: #e1e1e1;
	color: #54677b;
	font-weight: 500;
	font-size: 16px;
}

.cart__button {
	border-radius: 6px;
	border: 0px solid #34495E;
	background: #34495E;
	color: #fff;
	padding: 0 20px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .15s ease-in;
}

.cart__button:nth-last-of-type(1) {
	margin: 0 0 0 10px;
}

.cart__button.cart__button--is-simple {
	border: 0px solid #fff;
	background: none;
	color: #34495E;
}

.cart__button:hover {
	background-color: #00a3ad;
}
.cart__button:active {
	transform: translateY(8px);
	transition: all .1s ease-in;
}

.cart__button.cart__button--is-simple:hover {
	background-color: rgba(255,255,255,0);
	color: #00a3ad;
	text-shadow: 2px 2px 2px 2px #34495E;
	transition: all 0.1s ease-in-out;
}

.cart__button-close {
	border-radius: 100%;
	border: 0px solid #34495E;
	background-color: #34495E;
	color: #fff;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 25px;
	transition: all 0.1s ease-in-out;

}
.cart__button-close:hover {
	background-color: #00a3ad;
	transition: all 0.1s ease-in-out;
}
.cart__button-close:active {
	transform: scale(0.5);
	transition: all 0.1s ease-in-out;
}
.cart__button-action {
	border-radius: 6px;
	border: 2px solid #34495E;
	background: transparent;
	color: #34495E;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
}
.cart__button-action:hover {
	background: #34495e36;
	border: 2px solid #34495e36;
}
.cart__button-action:active {
	border: 0px solid #34495E;
	background: #34495E;
	color: #fff;
}

.cart__list {
	display: none;
	position: fixed;
	top: 0;
	bottom: 70px;
	left: 0;
	right: 0;
	background-color: rgba(255,255,255,0.55);
	z-index: 1000;
	align-items: flex-end;
	backdrop-filter: blur(10px);
	transition: all ease .2s;
}
.cart__list-content {
	_background-color: #00a3ad;
	background-color: rgba(255,255,255,0.55);
	_background: linear-gradient(45deg, rgba(0,163,173,1) 0%, rgba(0,109,198,1) 100%);
	backdrop-filter: blur(10px);
	_color: #fff;
	color: #34495E;
	padding: 0 20px;
	width: 100%;
	box-shadow:  0px -2px 30px 1px rgba(52, 73, 94, 0.15);
	max-height: 100%;
	overflow-y: scroll;
}
.cart__list-content-wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	max-width: 1000px;
}
.cart__center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart__center.cart__price-total.cart__price-total-onlymobile {
	display: none;
}


.cart__item {
	border-bottom: 1px solid #fff;
	margin: 0 auto;
	padding: 12px 0;
	border-bottom: 1px solid #34495e;
}
.cart__info {
	display: grid;
	grid-template-columns: 1fr 130px 130px 130px 20px;
	margin: 7px 0;
	font-size: 18px;
	align-items: center;
}
.cart__info-plan {
	display: grid;
	grid-template-columns: 20px 1fr 130px 130px 130px 20px;
	margin: 5px 0;
	font-size: 14px;
}
.cart__info-plan em{
	margin-left: 5px;
	color: #00a3ad;
}
.cart__info-plan em br{
	display: none;
}
.cart__info-extra {
	display: grid;
	grid-template-columns: 20px 1fr 130px 130px 130px 20px;
	margin: 5px 0;
}
.cart__item-total {
	display: grid;
	grid-template-columns: 1fr 130px 20px;
	margin: 15px auto;
	font-size: 18px;
}
.cart__item-total-label {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 24px;
}
.cart__item-total-value {
	text-align: right;
	font-weight: 600;
	font-size: 24px;
}
.cart__item-total.cart__shipcost{
	border-bottom: 1px solid #34495e;
	padding: 15px 0;
	margin: 0;
}
.cart__item-total.cart__shipcost .cart__item-total-label {
	font-size: 1em;
}
.cart__item-total.cart__shipcost .cart__item-total-value {
	font-size: 1em;
}
.cart__price-total {
	font-weight: 700;
}
.cart.cart--is-open .cart__list {
	display: flex;
	transition: all ease .2s;
	opacity: 1;
}

.cart.cart--is-open .cart__sidebar-content {
	display: none;
	opacity: 1;
	max-height: 500px;
	transition: all ease .2s;
}
.cart.cart--is-open .cart__sidebar-content-2 {
	display: flex;
	transition: all ease .2s;
	opacity: 1;
}

.cart__icon {
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../resources/svg/cart.svg);
	margin-right: 70px;
	animation: bounceX 1.5s ease-in-out infinite;
}

.cart__button.cart__button--is-simple .cart__icon {
	display: none;
}

@keyframes bounceX {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(0);
	  }
	  40% {
		transform: translateX(15px);
	  }
	  60% {
		transform: translateX(5px);
	  }
}

.cart__price {
	position: relative;
	padding: 0 15px 0 0;
}
.cart__price-symbol {
	position: absolute;
	left: calc(100% - 14px);
	top: 0;
	font-size: 10px;
}

.cart__sidebar_container {
	margin: 0 auto;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.cart__sidebar_animated-pattern-container {
	user-select: none;
	margin: 0;
	height: 100%;
	width: 130%;
	overflow: hidden;
}

.cart__sidebar_animated-pattern-container img {
	user-select: none;
	width: 100%;
	animation: movepattern 5s linear infinite;
	opacity: .65;
}

@keyframes movepattern {
	0% {
		transform: translate(-100px, -100px);
	}
	100% {
		transform: translate(-250px, -250px);
	}
}


.field-form {
	display: none;
}
.field-form.field-form--is-show {
	display: block;
}

.store {
	padding: 10px 0 120px 0;
}
.store-title {
	font-size: 48px;
	text-align: center;
	color: #00a3ad;
	margin: 70px 0 30px 0;
	font-weight: 300;
}
.store-title.success {
	margin: 100px 0 30px 0;
}

.store-title.success h3{
	font-size: 1.1em;
	font-weight: 400;
}
.store-title.success h4{
	font-size: 0.45em;
	font-weight: 400;
	margin-bottom: 1em;
	text-transform: uppercase;
}

.store-subtitle {
	text-align: center;
	font-size: 32px;
	color: #34495E;
	font-weight: 400;
	margin: 30px 0 0px 0;
}
.store-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}
.store-nav .store-nav__item {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #34495E;
	opacity: 0.5;
	display: flex;
	align-items: center;
	justify-content: center;
}
.store-nav .store-nav__item::after {
	content: '>';
	display: block;
	padding: 0 20px;
}
.store-nav .store-nav__item:last-child::after {
	display: none;
}
.store-nav .store-nav__item.store-nav__item--is-active {
	opacity: 1;
}
.store-nav .store-nav__item.store-nav__item--is-checked {
	opacity: 1;
}
.store-nav .store-nav__idx {
	font-size: 14px;
	height: 22px;
	width: 22px;
	color: #fff;
	background: #34495E;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 10px 0 0;
	border-radius: 100%;
}
.store-panel {
	margin: 20px auto;
	max-width: 1400px;
	color: #34495e;
}

.store-panel.ckout {
	max-width: 800px;
}
.store-panel .store-panel__content {
	margin: 20px;
	background: #fff;
	padding: 30px 30px 0 30px;
}
.store-list__container {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.store-list {
	display: grid;
	gap: 57px;
	grid-template-columns: 1fr 1fr;
	max-width: 1020px;
	margin: 0 20px;
	transition: all ease .2s;
}

.store-list img {
	max-width: 40px;
	margin: 10px 0;
}
.store-list.countries {
	display: block !important;
}

.store-list.store-list--is-row {
	gap: 9px;
	grid-template-columns: 1fr;
}
.store-list .store-list__item {
	min-width: 240px;
	transition: all ease .2s;
}
.store-list .store-list__option {
	display: none;
}
.store-list .store-list__item .store-list__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: rgba(0,0,0,0.05) 0 0 5px;
	border-radius: 15px;
	padding: 20px;
	height: 500px;
	cursor: pointer;
	background: rgba(239, 239, 239, .5);
	color: #34495E;
}

.store-list .store-list__item .store-list__content:hover  {
	background: rgba(0, 163, 173, .2);
	transition: all ease .2s;
}
.store-list .store-list__item .store-list__content:hover .plan-list__select{
	background: #34495E;
	color: #fff;
}

.store-list .store-list__item .store-list__content.countries {
	height: auto !important;
}
.store-list .store-list__item .store-list__option:checked + .store-list__content:not(.plan-list) {
	background: rgb(0,158,168);
	background: linear-gradient(90deg, rgba(0,158,168,1) 0%, rgba(4,119,170,1) 100%);
	color: #fff;
	transition: all ease .2s;
}
.store-list .store-list__item .store-list__image {
	flex: 1;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
}
.store-list .store-list__item .store-list__name {
	font-size: 38px;
}
.store-list .store-list__item .store-list__name.store-list__desc {
	font-size: 24px;
	margin: 16px 0 9px 0;
	font-weight: 600;
}
.store-list .store-list__item .store-list__extra {
	margin: 0 0 0px 0;
}
.store-list .store-list__item .store-list__extra p {
	font-size: 10px;
	font-family: "opensans";
	line-height: 1.2em;
}
.store-list .store-list__item .store-list__name.countries {
	font-size: 24px;
	text-transform: uppercase;
}
.store-list .store-list__item .store-list__name-2 {
	font-size: 26px;
	font-weight: 300;
	margin-top: 20px;
	text-align: center;
}
.store-list .store-list__item .store-list__info {
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 40px;
}
.store-list .store-list__item .store-list__info-2 {
	flex: 1;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	margin-top: 15px;
}
.store-list .store-list__item .store-list__info-2 .store-list__extra {
	text-align: left;
	margin-top: 10px;
}
.store-list .store-list__item .store-list__price {
	font-size: 30px;
	position: relative;
	margin-top: 5px;
}
.store-list .store-list__item .store-list__price-big {
	text-align: center;
	font-size: 90px;
	position: relative;
	margin-top: 5px;
	color: #009EA8;
}
.store-list .store-list__item .store-list__info-price {
	text-align: center;
	font-size: 15px;
	margin-top: 5px;
	color: #009EA8;
}
.store-list .store-list__item .store-list__price-symbol {
	position: absolute;
	left: calc(100% + 2px);
	top: 2px;
	font-size: 0.35em;
}
.store-list .store-list__item .store-list__price-big .store-list__price-symbol {
	top: 7px;
}
.store-list .store-list__option:checked + .store-list__content .store-list__price-big,
.store-list .store-list__option:checked + .store-list__content .store-list__info-price {
	color: #fff;
}
.store-list .store-list__item-row .store-list__content {
	border: 2px solid #34495E;
	border-radius: 12px;
	height: 53px;
	display: flex;
	align-items: center;
	padding: 0 26px 0 17px;
	cursor: pointer;
	opacity: 0.35;
}
.store-list .store-list__item-row .store-list__image {
	width: 50px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
}
.store-list .store-list__item-row .store-list__name {
	flex: 1;
}
.store-list .store-list__item-row .store-list__price {
	font-weight: 700;
}
.store-list .store-list__item-row .store-list__checked {
	width: 20px;
	height: 20px;
	border: 2px solid #34495E;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.store-list .store-list__item-row .store-list__checked::after {
	content: ' ';
	width: 12px;
	height: 12px;
	background-color: #34495E;
	border-radius: 100%;
	opacity: 0;
	transition: opacity .2s;
}
.store-list .store-list__item-row .store-list__content:hover,
.store-list .store-list__item-row .store-list__option:checked + .store-list__content,
.store-list .store-list__item-row .store-list__option:checked + .store-list__content .store-list__checked::after {
	opacity: 1;
}
.store-list .store-list__select {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 320px;
	height: 45px;
	color: #34495E;
	_background: #34495E;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
	margin: 0;
	border: 2px solid #34495E;
	font-weight: 500;
	transition: all ease .2s;
	letter-spacing: 1px;
}
.store-list .store-list__option:checked + .store-list__content .store-list .store-list__select {
	background: rgb(0,158,168);
	background: linear-gradient(90deg, rgba(0,158,168,1) 0%, rgba(4,119,170,1) 100%);
}

.store-list .store-list__option:checked .store-list__select {
	border: 2px solid rgba(255,255,255,1);
	background: #fff;
}
.store-list .store-list__option:not(:checked) + .store-list__content .store-list__select div:nth-child(2) {
	display: none;
}
.store-list .store-list__option:not(:checked) + .store-list__content .store-list__select div:nth-child(1) {
	display: block;
}
.store-list .store-list__option:checked + .store-list__content .store-list__select div:nth-child(2) {
	display: block;
	text-transform: uppercase;
	font-weight: 600;
}
.store-list .store-list__option:checked + .store-list__content .store-list__select {
	border: 0px;
	color: #fff;
	background: rgb(0,158,168);
	background: linear-gradient(90deg, rgba(0,158,168,1) 0%, rgba(4,119,170,1) 100%);
}
.store-list .store-list__option:checked + .store-list__content .store-list__select div:nth-child(1) {
	display: none;
}
.store-panel__safe-zone {
	padding: 60px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.store-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	max-width: 320px;
	height: 45px;
	color: #fff;
	background: #34495E;
	border-radius: 6px;
	border: 0;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	margin: 0;
	text-align: center;
	font-family: 'poppins';
}
.store-button:hover {
	background: #00a3ad;
}
.store-button:active {
	transform: translateY(8px);
	transition: all .2s ease-in;
}
.store-button.store-button--is-style-2 {
	border: 2px solid #34495E;
	background: #fff;
	color: #34495E;
}
.store-panel__safe-zone .store-button {
	margin-right: 20px;
}
.store-panel__safe-zone .store-button:last-child {
	margin-right: 0;
}
.store-button:disabled {
	background: #B7B7B7;
}
.store-msg {
	margin: 50px 30px;
	width: calc(100% - 60px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.checkout {
	padding: 0 20px;
}
.checkout__title {
	font-size: 22px;
	text-transform: uppercase;
	margin: 0 0 47px 0;
	padding: 0;
	color: #34495E;
}
.checkout__content {
	display: grid;
	grid-template-columns: 1fr minmax(320px, 450px);
	align-items: flex-start;
	gap: 50px;
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
}
.checkout__forms {

}
.checkout__group {
	margin: 0 0 80px 0;
}
.checkout__review {
	background: #fff;
	border-radius: 8px;
	padding: 35px;
	box-shadow: 0 0 40px rgb(52 73 94 / 6%);
}
.checkout__field-group-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.checkout__field {
	margin: 0 0 20px 0;
	display: flex;
	flex-direction: column;
}
.checkout__label {
	font-size: 14px;
	text-transform: uppercase;
	color: #34495E;
	flex: 1;
	font-weight: 500;
	margin: 0 0 6px 0;
}
.checkout__input {
	color: #34495E;
	background: rgba(52,73,94,.1);
	border: 0px;
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 14px;
	flex: 1;
}
.checkout__boxes {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 10px;
	position: relative;
}

.address-diff{
	display: flex;
	align-items: center;
}

.address-diff input{
	margin-right: 10px;
	margin-left: 0;
}

.address-diff label{
	font-size: 0.9em;
	color: #34495e;
	font-family: 'opensans';
	font-weight: 500;
}

.checkout__box-option {
	display: none;
}
.checkout__box-item {
	display: flex;
	background: #fff;
	height: 84px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 4px solid #fff;
	cursor: pointer;
}
.checkout__box-item:hover,
.checkout__box-option:checked + .checkout__box-item {
	border: 4px solid #34495E;
}
.checkout__box-item-image {
	width: 100%;
	flex: 1;
	background-repeat: no-repeat;
	background-position: center;
}
.checkout__box-item-image.checkout__box-item-image--is-sk-card {
	background-image: url(../resources/svg/sk-card.svg);
}
.checkout__box-item-image.checkout__box-item-image--is-sk-mbw {
	background-image: url(../resources/svg/sk-mbway.svg);
	background-position: center 5px;
}
.checkout__box-item-image.checkout__box-item-image--is-sk-paypal {
	background-image: url(../resources/svg/sk-paypal.svg);
	background-position: center 8px;
}
.checkout__box-item-image.checkout__box-item-image--is-sk-sepa {
	background-image: url(../resources/svg/sk-sepa.svg);
	background-position: center 6px;
}
.checkout__box-item-image.checkout__box-item-image--is-sk-mb {
	background-image: url(../resources/svg/sk-mb.svg);
		background-position: center 7px;
}
.checkout__box-item-name {
	font-size: 11px;
	text-transform: uppercase;
	padding: 7px 0;
	font-weight: 700;
	display: none;
}
.checkout__box-extra {
	position: absolute;
	display: none;
	left: 0;
	right: 0;
	top: calc(100% + 10px);
	padding: 20px 20px 10px 20px;
	background: #fff;
}
.checkout__box-extra.field-form--is-show {
	display: block;
}
.checkout__box-extra-group {
	display: flex;
	flex-direction: column;
	margin: 0 0 30px 0;
}
.checkout__box-extra-group-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.checkout__box-extra-group label {
	font-size: 13px;
	text-transform: uppercase;
	color: #34495E;
	margin: 0 0 3px 0;
	font-weight: 500;
}
.checkout__box-extra-group input,
.checkout__box-extra-group select {
	color: #34495E;
	background: transparent;
	border: none;
	border-bottom: 1px solid #34495E;
	padding: 7px 10px;
	font-size: 14px;
}
.checkout__review-2 {
	padding: 0 0 30px 0;
}
.checkout__row {
	padding: 10px 0;
	border-bottom: 1px solid #34495E;
}
.checkout__line {
	display: flex;
	padding: 10px 0;
	font-size: 14px;
	align-items: center;
}
.checkout__line.checkout__line--is-xl {
	font-size: 16px;
	font-weight: 700;
}
.checkout__line-sub {
	width: 20px;
	text-align: center;
}
.checkout__line-box {
	width: 50px;
	text-align: right;
}
.checkout__line-box.checkout__line-box--is-style {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 2px solid #34495E;
	width: 20px;
	height: 20px;
	margin: 0 10px 0 30px;
	border-radius: 6px;
}
.checkout__line-name {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.checkout__line-name em{
	color: #00a3ad;
}
.checkout__line-name br{
	display: none;
}
.checkout__line-name.checkout__line-name--is-xl {
	font-weight: 700;
}
.checkout__line-center {
	display: flex;
	justify-content: center;
}
.store-panel__center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.store-panel__space {
	margin: 30px 0 0 0;
}
.store-panel__space h1 {
	font-size: 2em;
	text-transform: uppercase;
}
.store-panel__space p {
	font-size: 1.3em;
	margin: 10px 0;
}
.store-panel__space p i{
	font-style: normal;
	font-weight: 800;
}


.nav li > a.cart-header-icon {
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../resources/svg/cart3.svg);
	position: relative;
}

.nav-right-mobile {
	position: relative;
	display: none;
}

.nav-right-mobile a.cart-header-icon {
	width: 26px;
	height: 26px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../resources/svg/cart3.svg);
	position: relative;
	margin-right: 50px;
}

.nav li > a.cart-header-icon > span {
	padding: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	font-weight: 600;
	top: 7px;
	left: 14px;
	background-color: rgb(255, 0, 76);
	color: #fff;
	border-radius: 100%;
	font-size: 12px;
	animation: bounceY 1.5s ease-in-out infinite;
}

.nav-right-mobile > a.cart-header-icon > span {
	padding: 0;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	font-weight: 600;
	top: -5px;
	left: 14px;
	background-color: rgb(255, 0, 76);
	color: #fff;
	border-radius: 100%;
	font-size: 10px;
	animation: bounceY 1.5s ease-in-out infinite;
}

.cart__extra-mobile {
	display: none;
}

@keyframes bounceY {
	0%, 20%, 50%, 80%, 100% {
	  transform: translateY(0);
	}
	40% {
	  transform: translateY(-15px);
	}
	60% {
	  transform: translateY(-5px);
	}
}


@media screen and (max-width: 1440px) {
	.cart__sidebar-content {
		padding: 0 40px;
	}
	.cart__sidebar-content-2 {
		padding: 0 40px;
	}

	.checkout__content {
		grid-template-columns: 1fr minmax(300px, 420px);
		gap: 35px;
	}

	.modal-store-help .modal-box {
		position: relative;
		min-width: 400px;
		max-width: 550px;
		font-size: 17px;
	}

	.modal-store-help .modal-box ul li img {
		height: 73px;
	}
	.modal-store-help .modal-box ul li b {
		font-size: 1.2em;
	}

}


@media screen and (max-width: 1200px) {
	.nav li > a.cart-header-icon {
		margin-left: 15px;
	}

	.store-list {
		gap: 28px;
	}

	.checkout__content {
		grid-template-columns: 1fr minmax(280px, 420px);
		gap: 30px;
	}
	.store-title {
		font-size: 44px;
		margin: 50px 0 30px 0;
	}

	.modal-store-help .modal-box {
		position: relative;
		min-width: 400px;
		max-width: 500px;
		font-size: 16px;
	}
	.modal-store-help .modal-box ul li img {
		height: 70px;
	}
	.modal-store-help .modal-box ul li b {
		font-size: 1.1em;
	}
	.modal-store-help .modal-box .msh-btn a {
		padding: 12px 18px;
	}
	.modal-store-help .modal-box .steps-area {
		margin: 16px auto;
		padding: 14px;
	}
	.modal-store-help .modal-box .msh-title {
		margin: 20px 0;
	}

}

@media screen and (max-width: 980px) {

	.nav-right-mobile {
		display: flex;
	}

	.store-nav .store-nav__item {
		font-size: 14px;
	}

	.store-nav .store-nav__idx {
		font-size: 12px;
		height: 18px;
		width: 18px;
	}

	.store-subtitle.unq1 {
		font-size: 24px;
		font-weight: 400;
	}

	.store-list.unq1 {
		font-size: 36px;
		display: grid;
		gap: 20px;
		grid-template-columns: 1fr 1fr;
		max-width: unset;
		margin: 0 10px;
		width: calc(33% - 20px);
		width: 33%
	}

	.store-list.unq1 .store-list__item {
		min-width: unset;
	}

	.store-list.unq1 img {
		max-width: 35px;
		margin: 8px 0;
	}

	.store-list.unq1 .store-list__item .store-list__name.countries {
		font-size: 16px;
		font-weight: 600;
		text-align: center;
	}
	.cart__button.cart__button--is-simple .cart__icon {
		display: flex;
		margin-right: 20px;
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 960px) {
	.store-nav {
		flex-flow: wrap;
	}
	.store-panel .store-panel__content {
		padding: 20px 20px 0 20px;
	}
	.store-list {
		grid-template-columns: 1fr;
	}
	.store-list .store-list__item .store-list__content {
		height: 400px;
	}
	.store-button {
		height: auto;
		min-height: 45px;
		padding: 10px;
	}
	.store-panel__safe-zone {
		flex-direction: column;
	}
	.store-panel__safe-zone .store-button {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.cart__count-total {
		display: none;
	}
	.cart__sidebar-content {
		justify-content: space-between;
		padding: 0 20px;
	}
	.cart.cart--is-open .cart__sidebar-content-2 {
		justify-content: space-between;
		padding: 0 20px;
	}

	.cart__button.cart__button--is-simple {
		border: 2px solid #34495E;
		background: none;
		color: #34495E;
		transition: all .15s ease-in;
	}
	.checkout__content {
		grid-template-columns: 1fr;
	}
	.checkout__field-group-2 {
		grid-template-columns: 1fr;
	}
	.checkout__box-extra-group-2 {
		grid-template-columns: 1fr;
	}
	.checkout__boxes.checkout__boxes--is-extra-space {
		margin-bottom: 350px;
	}
	.store-title {
		font-size: 42px;
		margin: 30px 0 30px 0;
	}

	.modal-store-help .modal-box {
		min-width: 360px;
		font-size: 14px;
	}
	.modal-store-help .modal-box ul li {
		margin: 16px 0;
	}
	.modal-store-help .modal-box ul li img {
		height: 65px;
	}
	.modal-store-help .modal-box ul li b {
		font-size: 1em;
	}
	.modal-store-help .modal-box .msh-btn a {
		padding: 11px 16px;
	}
	.modal-store-help .modal-box .steps-area {
		margin: 14px auto;
		padding: 13px;
	}
	.modal-store-help .modal-box .msh-title {
		margin: 18px 0;
	}

}

@media screen and (max-width: 670px) {
	.cart__info {
		grid-template-columns: 1fr;
		align-items: center;
		justify-content: center;
		gap: 10px;
		text-align: center;
		justify-items: center;
	}
	.cart__info-plan {
		grid-template-columns: 1fr;
		align-items: center;
		justify-content: center;
		gap: 10px;
		text-align: center;
	}
	.cart__info-extra {
		grid-template-columns: 1fr;
		align-items: center;
		justify-content: center;
		gap: 10px;
		text-align: center;
	}
	.cart__extra {
		display: none;
	}
	.cart__extra-mobile {
		display: flex;
		border-top: 1px solid #34495e;
		border-bottom: 1px solid #34495e;
	}
	.cart__button-action {
		width: 36px;
		height: 36px;
		font-size: 22px;
		font-weight: 600;
	}
	.cart__box {
		width: 36px;
		height: 36px;
		font-size: 22px;
		font-weight: 600;
	}
	.cart__info-plan .cart__box {
		width: 24px;
		height: 24px;
	}
	.cart__info-plan .cart__center.cart__price-total {
		font-size: 16px;
	}
	.cart__center.cart__price-total {
		font-size: 22px;
	}

	.cart__center.cart__price-total.cart__price-total-onlymobile {
		display: flex;
	}
	.cart__center.cart__price-total.cart__price-total-onlydesktop {
		display: none;
	}

	.cart__button-close {
		width: 32px;
		height: 32px;
		font-size: 29px;
	}

	.cart__info>div:nth-of-type(1) {
		font-size: 26px;
		font-weight: 500;
	}

	.checkout__content {
		grid-template-columns: 1fr;
	}
	.checkout__field-group-2 {
		grid-template-columns: 1fr;
	}
	.checkout__box-extra-group-2 {
		grid-template-columns: 1fr;
	}
	.checkout__boxes.checkout__boxes--is-extra-space {
		margin-bottom: 350px;
	}
	.store-title {
		font-size: 40px;
		margin: 20px 0 30px 0;
	}

	.modal-store-help .modal-box {
		min-width: 300px;
		max-width: 380px;
		font-size: 14px;
	}
	.modal-store-help .modal-box ul li {
		margin: 10px 0;
	}
	.modal-store-help .modal-box ul li img {
		height: 60px;
	}
	.modal-store-help .modal-box ul li b {
		font-size: 1em;
	}
	.modal-store-help .modal-box .msh-btn a {
		padding: 10px 14px;
	}
	.modal-store-help .modal-box .steps-area {
		margin: 12px auto;
		padding: 11px;
	}
	.modal-store-help .modal-box .msh-title {
		margin: 16px 0;
	}
	.modal-store-help .modal-box span {
		font-size: 0.7em;
	}
		
	.store-title.success h3{
		font-size: 0.9em;
	}
	.store-title.success h4{
		font-size: 0.3em;
		margin-bottom: 1em;
	}

	.store-panel__center p {
		font-size: 0.8em;
	}

	.store-panel__center .store-panel__space h1 {
		font-size: 1.2em;
	}
	.store-panel__center .store-panel__space p {
		font-size: 1em;
	}
	
}


@media screen and (max-width: 600px) {

	.store-list__container.unq1 {
		flex-direction: column;
	}

	.store-list.unq1 {
		width: 100%;
		margin: 10px 0;
	}

	.store-list.unq1 .store-list__item .store-list__content {
		padding: 8px;
		flex-direction: row;
	}

	.store-list.unq1 img {
		max-width: 35px;
		margin: 0 8px;
	}

	.store-nav .store-nav__item::after {
		padding: 0 8px;
	}

	.store-nav .store-nav__idx {
		margin: 0 4px 0 0;
	}

	.cart__button {
		font-size: 14px;
	}

	.cart__button-close:hover {
		background-color: #34495e;
	}

	.cart__button-close:active {
		transform: scale(1);
	}

	.store-subtitle {
		font-size: 26px;
		margin: 20px 0 0 0;
	}

	.store-list .store-list__item .store-list__content {
		border-radius: 6px;
	}
	.checkout__line {
		font-size: 13px;
	}
	.store-panel .store-panel__content {
		padding: 10px 8px 0 8px;
	}
	.store-list .store-list__item .store-list__option:checked + .store-list__content {
		transform: scale(1);
	}

	.address-diff label{
		font-size: 0.8em;
	}

	.address-diff input{
		margin-right: 8px;
	}
	.modal-store-help .modal-box {
		min-width: 150px;
		max-width: 340px;
		font-size: 13px;
	}
	.modal-store-help .modal-box ul li {
		margin: 8px 0;
	}
	.modal-store-help .modal-box ul li:nth-last-of-type(1) {
		margin: 8px 0 0 0;
	}
	.modal-store-help .modal-box ul li img {
		height: 55px;
	}
	.modal-store-help .modal-box .msh-btn a {
		padding: 10px 12px;
		font-size: 0.8em;
	}
	.modal-store-help .modal-box .steps-area {
		margin: 10px auto;
		padding: 10px;
	}
	.modal-store-help .modal-box .msh-title {
		margin: 15px 0;
	}
	.modal-store-help .modal-box span {
		font-size: 0.7em;
	}
	.modal-store-help .modal-box .steps-area p {
		font-size: 1em;
	}
	.modal-store-help .msh-icon {
		width: 38px;
		height: 38px;
		border-radius: 6px;
		font-size: 1.8em;
	}
	.modal-store-help.turnoff .msh-icon {
		width: 46px;
		height: 46px;
		font-size: 2em;
	}
}

@media screen and (max-width: 500px) {
	.store-subtitle {
		font-size: 24px;
		margin: 18px 0 0 0;
		font-weight: 500;
	}
	.store-title {
		font-size: 38px;
	}
	.address-diff label{
		font-size: 0.7em;
		font-weight: 700;
	}
	.address-diff input{
		margin-right: 6px;
	}
}
@media screen and (max-width: 400px) {

	.cart__button {
		font-size: 12px;
		height: 36px;
		padding: 0 16px;
	}
	.cart__info {
		grid-template-columns: 1fr;
		align-items: center;
		justify-content: center;
		gap: 10px;
		text-align: center;
		justify-items: center;
	}
	.cart__info-plan {
		grid-template-columns: 1fr;
		align-items: center;
		justify-content: center;
		gap: 10px;
		text-align: center;
	}
	.cart__info-extra {
		grid-template-columns: 1fr;
		align-items: center;
		justify-content: center;
		gap: 10px;
		text-align: center;
	}
	.cart__extra {
		display: none;
	}
	.cart__extra-mobile {
		display: flex;
		border-top: 1px solid #34495e;
		border-bottom: 1px solid #34495e;
	}

	.cart__button-action {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
	.cart__box {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
	.cart__info-plan .cart__box {
		width: 24px;
		height: 24px;
	}
	.cart__info-plan .cart__center.cart__price-total {
		font-size: 14px;
	}
	.cart__center.cart__price-total {
		font-size: 22px;
	}

	.cart__button-close {
		width: 31px;
		height: 31px;
		font-size: 36px;
		margin-top: 8px;
	}

	.cart__info>div:nth-of-type(1) {
		font-size: 24px;
		font-weight: 500;
	}

	.cart__item-total {
		display: grid;
		grid-template-columns: 1fr 130px 0px;
		margin: 15px auto;
		font-size: 18px;
	}
	.cart__item-total-value {
		font-size: 22px
	}
	.cart__item-total-value {
		font-size: 20px;
		justify-content: flex-end;
	}
	.cart__item-total-label {
		font-size: 20px
	}
	.nav-right-mobile a.cart-header-icon {
		margin-right: 30px;
	}

	.store-subtitle {
		font-size: 22px;
	}

	.store-nav .store-nav__item {
		margin: 5px 0;
	}

	.store-nav .store-nav__item {
		font-size: 11px;
	}

	.store-nav .store-nav__idx {
		font-size: 11px;
		height: 16px;
		width: 16px;
	}
	.checkout__line-box {
		width:40px	;
	}
	.checkout__line-box.checkout__line-box--is-style {
		width: 18px	;
		height: 18px;
		margin: 0 5px 0 20px	;
		border-radius: 6px;
	}

	.address-diff label{
		font-size: 0.6em;
		font-weight: 700;
	}
	.address-diff input{
		margin-right: 4px;
	}

	.modal-store-help .modal-box {
		max-width: 260px;
		font-size: 12px;
		padding: 15px;
	}
	.modal-store-help .modal-box h5 {
		font-size: 1.6em;
	}
	.modal-store-help .modal-box h6 {
		font-size: 1.1em;
	}

	.modal-store-help .modal-box ul li {
		margin: 6px 0;
		line-height: 1.3em;
	}
	.modal-store-help .modal-box .steps-area .fig {
		margin: 0;
	}
	.modal-store-help .modal-box ul li:nth-last-of-type(1) {
		margin: 6px 0 0 0;
	}
	.modal-store-help .modal-box ul li img {
		height: 50px;
	}
	.modal-store-help .modal-box .msh-btn a {
		padding: 10px 12px;
		font-size: 0.8em;
	}
	.modal-store-help .modal-box .steps-area {
		margin: 8px auto;
		padding: 8px;
	}
	.modal-store-help .modal-box .msh-title {
		margin: 10px 0;
	}
	.modal-store-help .modal-box span {
		font-size: 0.7em;
	}
	.modal-store-help .modal-box .steps-area p {
		font-size: 1em;
	}
	.modal-store-help .msh-icon {
		width: 38px;
		height: 38px;
		border-radius: 6px;
		font-size: 1.8em;
	}
	.modal-store-help .modal-box ul {
		margin: 10px 0;
	}


}

@media screen and (max-width: 350px) {
	.store-subtitle {
		font-weight: 500;
		font-size: 20px;
	}
}
