html,
body {
	height: unset;
}

.funtenjer {
	max-width: 700px;
}

main {
	display: grid;
	grid-template: 1fr / 1fr 0.8fr;
}

/* // Number phone requirement popup */

.phone-number-requirement {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--body-color);
	z-index: 1000;
	display: flex;
}

.phone-number-requirement .content {
	margin: auto;
	max-width: 650px;
	width: 100%;
	padding: 1em;
}

.explanation {
	position: relative;
	padding: 20px 0;
	font-size: 0.9em;
}

.explanation .header {
	position: relative;
	display: flex;
	align-items: center;
	background-color: rgba(var(--yellow-rgb), 0.3);
	padding: 1em;
	margin-bottom: 1em;
}

.explanation .header::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
	background-color: var(--body-color);
	opacity: 0.1;
	background-image: linear-gradient(#b893fc 1.4000000000000001px, transparent 1.4000000000000001px),
		linear-gradient(to right, #b893fc 1.4000000000000001px, transparent 1.4000000000000001px);
	background-size: 28px 28px;
}

.explanation .ico-holder {
	font-size: 2em;
	color: var(--yellow-dark);
	padding: 0.5em;
}

.explanation h2 {
	font-size: 1.2em;
	font-weight: 700;
	margin: 0;
	color: var(--yellow-dark);
	padding: 0 0.8em;
}

.explanation p {
	font-size: 1em;
	color: rgba(var(--rgb-primary), 0.8);
	line-height: 1.5;
	margin: 0;
}

.phone-number-requirement button i {
	margin-left: 0.5em;
}

/* END */

.back-holder {
	display: flex;
	align-items: center;
}

.back {
	background: rgba(var(--rgb-primary), 0.06);
	display: flex;
	width: 3.125em;
	height: 2.5em;
	transition: 300ms;
}

.back.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.back.disabled:hover + span {
	opacity: 0;
}

.back:hover {
	background: var(--primary);
	color: var(--body-color);
}

.back + span {
	margin-left: 10px;
	opacity: 0;
	transition: 300ms;
}

.back:hover + span {
	opacity: 1;
	text-decoration: underline;
}

.back i {
	margin: auto;
	transition: 300ms transform;
}

.back:hover i {
	transform: translateX(-5px);
}

.two-in-row {
	display: grid;
	grid-template: 1fr / 1fr 1fr;
	grid-gap: 20px;
	align-items: center;
}

.steps {
	height: var(--height-of-page);
	max-height: 100vh;
	height: 100%;
	padding: 0 20px;
	overflow: auto;
	/* background: red; */
}

.step {
	animation: sweep 0.5s ease-in-out;
}

.steps .input-holder.wrong small {
	right: 0;
}

.input-holder {
	margin-bottom: 20px;
}

.step p {
	margin-top: 0;
}

.or {
	width: 100%;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}

.steps h1 {
	font-size: 1.8em;
	font-weight: 600;
	font-family: var(--lora);
}

.steps .header {
	padding: 20px 0;
	border-bottom: 2px solid rgba(var(--rgb-primary), 0.1);
}

.steps .header .bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.steps .body {
	padding-top: 40px;
}

.sing-up {
	font-size: 0.8em;
}

.sing-up a {
	text-decoration: underline;
}

/* // Passwrod complecity */

.password-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

#password-difficulty {
	display: none;
}

.password-header span {
	font-size: 0.7em;
	font-weight: 500;
	margin-right: 5px;
}

.password-progress-line {
	width: 80px;
	height: 3px;
	background: #efefef;
	margin: 0 6px 5px 0;
}

.password-progress-line .line {
	height: 100%;
}

.password-holder {
	position: relative;
	/* overflow: hidden; */
	border-radius: 6px;
}

.password-handler .input-holder.wrong::after {
	content: '';
}

.password-holder .show-password {
	cursor: pointer;
	position: absolute;
	right: 0;
	height: 100%;
	width: 40px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
}

.password-holder .show-password i {
	margin: auto;
	opacity: 0.4;
	transition: 300ms;
	pointer-events: none;
}

.password-holder .show-password:hover i {
	opacity: 0.7;
}

.password-holder .show-password:active i {
	opacity: 1;
}

/* // cuppon possess */
.submit-holder {
	margin-top: 20px;
}

/* // Choice a plan */

.choice-a-plan {
	margin-top: 100px;
}

/* Shoping basket */

.basket-holder {
	padding: 20px;
	background: rgba(var(--rgb-primary), 0.06);
	height: 100vh;
	display: flex;
	align-items: flex-start;
	overflow: auto;
}

.basket {
	margin: 0 auto;
	background: var(--body-color);
	position: relative;
	overflow: hidden;
	max-width: 650px;
	width: 100%;
}

.basket::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 20px;
	background: linear-gradient(45deg, transparent 33.333%, var(--body-color) 0, var(--body-color) 66.667%, transparent 0),
		linear-gradient(-45deg, #f1f1f1 33.333%, var(--body-color) 0, var(--body-color) 66.667%, transparent 0);
	background-size: 20px 40px;
	background-position: 4 -20px;
	bottom: 0;
}

.basket h2 {
	font-size: 2em;
	font-weight: 600;
	font-family: var(--lora);
	padding: 30px 60px;
	padding-bottom: 0;
}

.basket > .body {
	padding: 0px 60px;
}

.order-steps {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	position: relative;
	padding: 0px 60px;
	padding-bottom: 40px;
	border-bottom: 4px dashed rgba(var(--rgb-primary), 0.06);
}

.order-steps::before,
.order-steps::after {
	content: '';
	position: absolute;
	bottom: -50px;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background: var(--body-color);
	border-radius: 50%;
}

.order-steps::before {
	right: -50px;
}

.order-steps::after {
	left: 0px;
}

.order-step {
	display: flex;
}

.order-step .ico-holder {
	width: 50px;
	height: 50px;
	background: rgba(var(--rgb-primary), 0.07);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	position: relative;
}

.order-step .ico-holder.done,
.order-step .ico-holder.active {
	background: rgba(var(--rgb-secondary), 0.2);
	color: var(--secondary);
}

.order-step .ico-holder.active::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 55px;
	height: 55px;
	border-radius: 50%;
	border: 2px solid transparent;
	border-color: transparent var(--secondary);
	animation: 3s rotateSpecific ease-in-out infinite;
	transform-origin: center;
}

@keyframes rotateSpecific {
	from {
		transfrom: translate(-50%, -50%) rotate(0);
	}

	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.order-step .ico-holder.done {
	--color: var(--secondary);
	border: 2px solid var(--color);
}

.order-step .ico-holder.done::after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Pro';
	font-weight: bold;
	color: var(--body-color);
	position: absolute;
	top: -5px;
	right: -2px;
	width: 20px;
	height: 20px;
	background: var(--color);
	font-size: 0.7em;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.order-step .info div:first-child {
	font-size: 0.8em;
	color: rgba(var(--rgb-primary), 0.6);
	font-weight: 400;
}

.basket .details {
	margin-top: 50px;
}

.basket .details .detail {
	margin-bottom: 30px;
	cursor: pointer;
}

.basket .details .detail .header {
	padding: 20px 30px;
	background: rgba(var(--rgb-primary), 0.06);
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.basket .details .detail .header span {
	font-weight: 600;
	position: relative;
}

.basket .details .detail .header i {
	position: relative;
}

.basket .details details[open] .header i {
	transform: rotate(180deg);
	transition: 300ms;
}

.basket .details details[open] summary ~ * {
	animation: sweep 0.5s ease-in-out;
}

@keyframes sweep {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.basket .details .detail.disabled .header i {
	display: none;
}

.basket .details .detail.disabled {
	opacity: 0.5;
	cursor: default;
}

.skeleton::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 6px;
	background: var(--surface-3);
	animation: puls 1s ease infinite alternate;
}

@keyframes puls {
	to {
		background: var(--hover-bg);
	}
}

.basket .details .detail .body {
	padding: 0 20px;
	padding-top: 30px;
}

.basket .details .detail .body .info {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.basket .details .detail .body .info .variable {
	color: rgba(var(--rgb-primary), 0.6);
}

.basket .details .detail .body .info .value {
	font-weight: 400;
	font-size: 0.9em;
	position: relative;
	max-width: 300px;
	text-align: right;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.to-pay {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 4px dashed rgba(var(--rgb-primary), 0.06);
	padding: 60px;
	padding-bottom: 50px;
}

.to-pay .skeleton {
	position: relative;
}

.to-pay .price {
	font-weight: 600;
	font-size: 1.4em;
	transition: 0.3s;
}
/* // discount related */
.to-pay .price.discounted {
	background: var(--green-light);
	padding: 0 10px;
	/* color: var(--green-dark); */
}

.to-pay .price.skeleton {
	border: none;
}

/* /// STEP 2 CHOICE A PLAN */

.price-options {
	background: rgba(var(--rgb-primary), 0.06);
	padding: 20px;
	border-radius: 10px;
}

.price-options + button {
	margin-top: 30px;
}

/* copied code from landingpage css */
.price-options label {
	cursor: pointer;
}

.price-options .choice {
	display: flex;
	align-items: center;
	justify-content: center;
}

.price-options .choice input {
	display: none;
}

.price-options .choice input:checked + .circle::after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Pro';
	font-weight: bold;
	color: var(--body-color);
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--secondary);
	font-size: 0.7em;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.price-options .choice input:checked ~ .option {
	border-color: var(--secondary);
	border-style: solid;
}

.price-options .choice .circle {
	width: 1.5625em;
	height: 1.5625em;
	background: rgba(var(--rgb-primary), 0.2);
	border-radius: 50%;
	display: flex;
	margin-right: 2.5em;
	position: relative;
}

.price-options .choice .circle .small-circle {
	margin: auto;
	width: 0.625em;
	height: 0.625em;
	background: var(--secondary);
	border-radius: 50%;
	display: none;
}

.price-options .option {
	display: grid;
	grid-template: 1fr / 1fr 1fr;
	position: relative;
	background: var(--body-color);
	margin-bottom: 1.25em;
	padding: 0.625em;
	border: 0.1875em dashed rgba(var(--rgb-primary), 0.3);
	border-radius: 0.3125em;
	width: 100%;
	max-width: 31.375em;
	height: 13.75em;
}

.price-options .option .left {
	display: flex;
	align-items: center;
	justify-content: center;
}

.price-options .option .left .name {
	font-family: var(--lora);
	font-size: 2em;
	font-weight: 400;
}

.price-options .option .left .name span {
	display: block;
}

.price-options .option .left .name span:last-child {
	font-size: 0.5em;
}

.price-options .option .right {
	padding: 0.6em 2.5em;
	display: flex;
	background: rgba(var(--rgb-secondary), 0.09);
}

.price-options .option .right .price-info {
	margin: auto;
}

.price-options .option .right .previus-price {
	font-size: 1.3em;
	font-weight: 500;
	color: rgba(var(--rgb-primary), 0.8);
	position: relative;
	display: inline-block;
}

/* .price-options .option .right .previus-price::after{
   content: "";
   position: absolute;
   top: 50%;
   left: -3px;
   right: -3px;
   background: var(--secondary);
   height: 1px;
} */

.price-options .option .right .price {
	font-size: 2.5em;
	line-height: 1;
	font-weight: 600;
	padding-right: 10px;
	color: var(--secondary);
}

.price-options .option .right .price.coupon {
	padding: 0;
}

.price-options .option .right .price.coupon i {
	font-size: 1.2em;
	transform: rotate(-35deg);
	opacity: 0.8;
}

.price-options .option .right .annually {
	font-size: 0.9em;
	color: rgba(var(--rgb-primary), 0.8);
}

/* discount */
.price-options .option .right .price-info .discount {
	position: absolute;
	top: -0.5em;
	right: -1.5em;
	padding: 0.5em 3em 0.5em 1em;
	font-size: 1em;
	font-weight: 500;
	color: #fff;
	background: var(--primary);
	clip-path: polygon(100% 0, 84% 50%, 100% 100%, 0 100%, 0 0);
}

.price-options .option .left .enroll {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary);
	font-weight: 600;
	font-size: 1em;
	letter-spacing: 1px;
	border: 2px solid var(--secondary);
	padding: 0.625em 1.25em;
	margin-top: 1.875em;
	border-radius: 0.3125em;
	transition: 0.2s linear;
}

.price-options .option .left .enroll i {
	font-size: 1em;
	transition: 0.2s linear;
	margin-left: 10px;
}

.price-options .option .left .enroll:hover {
	background: var(--secondary);
	color: var(--body-color);
}

.price-options .option .left .enroll:hover i {
	transform: translate(5px);
}

.price-options .option .sale {
	position: absolute;
	right: -1.875em;
	top: -0.625em;
	padding: 0.625em 2.5em 0.625em 1.25em;
	background: var(--primary);
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	clip-path: polygon(0 0, 100% 0, 85% 46%, 100% 100%, 0 100%);
}

/* // payment */

.payment-methodes-holder {
	display: grid;
	grid-template: 1fr / 0.7fr 1fr;
	grid-gap: 30px;
}

.method {
	margin-bottom: 23px;
}

.method span {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.9em;
	color: rgba(var(--rgb-primary), 0.38);
}

.method .card {
	width: 100%;
	height: 10.3125em;
	border-radius: 0.5em;
	background: rgba(var(--rgb-secondary), 0.3);
	padding: 1.25em;
	position: relative;
	cursor: pointer;
	border: 0.1875em solid transparent;
	position: relative;
}

.method .card.coming-soon {
	overflow: hidden;
	border: none;
	filter: grayscale(100%);
}

.method .card.coming-soon::before {
	content: 'Uskoro';
	background: var(--secondary);
	position: absolute;
	width: 8.75em;
	transform: rotate(-45deg);
	z-index: 1;
	padding: 7px 5px;
	bottom: 1.25em;
	right: -2.1825em;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-weight: 600;
}

.method .card.active {
	border-color: var(--primary);
}

.method .card.active::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Pro';
	font-weight: bold;
	color: var(--body-color);
	position: absolute;
	top: -10px;
	right: -10px;
	width: 20px;
	height: 20px;
	background: var(--primary);
	font-size: 0.7em;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.method .card span {
	background: rgba(var(--rgb-secondary), 0.53);
	border-radius: 0.1875em;
	display: inline-block;
}

/* // Loading animation before strpe loads */

.loader,
.loader:before,
.loader:after {
	border-radius: 50%;
	width: 2.5em;
	height: 2.5em;
	animation-fill-mode: both;
	animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader-holder {
	display: flex;
	display: none;
	justify-content: center;
	align-items: center;
	height: 40px;
}

.loader {
	color: var(--secondary);
	font-size: 7px;
	position: relative;
	text-indent: -9999em;
	transform: translateZ(0);
	animation-delay: -0.16s;
}

.loader:before,
.loader:after {
	content: '';
	position: absolute;
	top: 0;
}

.loader:before {
	left: -3.5em;
	animation-delay: -0.32s;
}

.loader:after {
	left: 3.5em;
}

@keyframes bblFadInOut {
	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em;
	}
	40% {
		box-shadow: 0 2.5em 0 0;
	}
}

/* // Stipe error handler */
.form-level-error {
	margin-bottom: 10px;
	margin-top: -40px;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
}

.form-level-error.show {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}

.form-level-error .holder {
	background: var(--red-light);
	color: var(--red-dark);
	display: flex;
	align-items: center;
	padding: 15px;
	border-radius: 6px;
	font-size: 0.9em;
}

.form-level-error .holder .ico-holder {
	margin-right: 10px;
}

.method .card.credit-card form {
	overflow: hidden;
}

.method .card.credit-card .strip {
	height: 2em;
	position: absolute;
	top: 1.25em;
	left: 0;
	right: 0;
	border-radius: 0;
	background: rgba(var(--rgb-secondary), 0.53);
}

.method .card.credit-card .strip::before {
	content: '';
	height: 0.125em;
	position: absolute;
	bottom: -0.8125em;
	left: 0;
	right: 0;
	border-radius: 0;
	background: rgba(var(--rgb-secondary), 0.53);
}

.method .card.credit-card .text {
	margin-top: 3.125em;
	background: transparent;
}

.method .card.credit-card span {
	height: 0.625em;
}

.method .card.credit-card .text > span:nth-child(1) {
	width: 2.3125em;
}

.method .card.credit-card .text > span:nth-child(2) {
	width: 3.75em;
}

.method .card.credit-card .text .grid {
	display: flex;
	justify-content: space-between;
}

.method .card.credit-card .text .grid .left {
	display: flex;
	flex-direction: column;
}

.method .card.credit-card .text .grid .left span {
	width: 2.6875em;
}

.method .card.credit-card .text .grid .left span:first-child {
	width: 3.5625em;
	margin-bottom: 0.375em;
}

.method .card.credit-card .text .grid .right span {
	width: 3.25em;
	height: 100%;
}

.method .card.credit-card .more-info {
	margin-top: 0.625em;
}

.method .card.credit-card .more-info span {
	width: 2.75em;
	height: 0.875em;
}

.method .card.credit-card .more-info span:first-child {
	margin-right: 0.3125em;
}

/* // Discount stuff */

.discount-input {
	display: none;
}

.discount-input:checked + .discount-code i {
	transform: rotate(180deg);
}

.discount-input:checked ~ .discount-holder {
	display: block;
}

.discount-code {
	font-size: 1em;
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px solid var(--border-color);
	cursor: pointer;
	user-select: none;
	opacity: 0.7;
	font-weight: 500;
}

.discount-code i {
	margin-right: 0.4em;
	transition: 3ms;
}

.discount-holder {
	margin: 20px 0;
	padding: 10px;
	border: 2px dashed var(--border-color);
	border-radius: 5px;
	display: none;
}

.discount-holder .discount-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.discount-holder .amount {
	font-size: 0.8em;
	padding: 2px 10px;
	border-radius: 4px;
	background: var(--green-light);
	color: var(--green-dark);
	transform: translateY(118%);
	z-index: -1;
	transition: 3ms ease;
}

.discount-holder .amount.show {
	transform: translateY(-110%);
	z-index: 1;
}

.discount-holder input.success {
	border-color: rgba(var(--green-dark-rgb), 0.5);
	background-color: var(--body-color);
	box-shadow: 0 0 0 4px var(--green-light);
}

/* // Method "Uplatnica" */

.method .uplatnica {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.method .uplatnica div:first-child {
	display: flex;
	flex-direction: column;
}

.method .uplatnica div:first-child span:first-child {
	width: 8em;
	height: 1.125em;
	margin-bottom: 0.625em;
}

.method .uplatnica div:first-child span:last-child {
	width: 4.75em;
	height: 0.875em;
}

.method .uplatnica div:last-child {
	display: flex;
	flex-wrap: wrap;
}

.method .uplatnica div:last-child span {
	height: 1em;
}

.method .uplatnica div:last-child span:first-child {
	flex: 0.5;
	margin-right: 0.625em;
}

.method .uplatnica div:last-child span {
	flex: 1;
}

.method .uplatnica div:last-child span:last-child {
	flex-basis: 100%;
	margin-top: 0.625em;
}

/* // Method: Coupon */

.method .coupon {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.method .coupon .top::after,
.method .coupon .top::before {
	content: '';
	width: 2.6875em;
	height: 2.6875em;
	background: var(--body-color);
	border-radius: 50%;
	position: absolute;
	border: 0.1875em solid transparent;
	position: absolute;
	transform-origin: center;
	top: 55%;
	z-index: 5;
}

.method .coupon .top::before {
	left: -0.1875em;
	transform: translate(-50%, -50%) rotate(315deg);
}

.method .coupon.active .top::before {
	border-color: transparent #111 #111 transparent;
}

.method .coupon .top::after {
	left: calc(100% + 0.1875em);
	transform: translate(-50%, -50%) rotate(315deg);
}

.method .coupon.active .top::after {
	border-color: #111 transparent transparent #111;
}

.method .coupon .top {
	display: flex;
	justify-content: space-between;
}

.method .coupon .top div:first-child span {
	display: block;
	height: 0.75em;
}

.method .coupon .top div:first-child span:first-child {
	width: 7.625em;
	margin-bottom: 0.625em;
}

.method .coupon .top div:first-child span:last-child {
	width: 3.9375em;
}

.method .coupon .top div:last-child span {
	width: 2.5em;
	height: 2.1875em;
}

.method .coupon .bottom::before {
	content: '';
	width: 100%;
	height: 0;
	border-top: 0.1875em dashed rgba(var(--rgb-secondary), 0.63);
	position: absolute;
	top: 55%;
}

.method .coupon .bottom span {
	height: 1.5625em;
	width: 100%;
}

/* // Methods forms */

.methods-froms > div {
	animation: fadeIn 1s;
}

/* // Credit card */

/* This brakes kupon kod input */

/* .payment-methodes-holder form input{
    margin-bottom: 10px;
} */

.credit-card form .button-holder {
	margin-top: 30px;
}

/* // Uplatnica */

.uplatnica-info .info-card {
	padding: 10px 0;
	border-bottom: 2px solid rgba(var(--rgb-primary), 0.1);
	margin-bottom: 5px;
}

.uplatnica-info .info-card .variable {
	font-size: 0.9em;
	color: rgba(var(--rgb-primary), 0.6);
	margin-bottom: 2px;
}

.uplatnica-info .info-card .value {
	font-weight: 600;
}

.uplatnica-info .secondary-btn {
	margin-top: 20px;
}

/* // Add image of "UPlatnica" */

.add-image > span {
	font-weight: 600;
	font-size: 0.9em;
}

/* ///////////////////////// */
.drop {
	display: grid;
	align-content: center;
	justify-content: center;
	width: 100%;
	height: 150px;
	margin-top: 10px;
	transition: all 0.3s;
	border: 3px dashed rgba(var(--rgb-secondary), 0.7);
	border-radius: 15px;
	text-align: center;
	transition: 300ms;
}

.drop:hover {
	border-color: var(--secondary);
}

.fileElem {
	display: none;
}

.drop-text {
	text-transform: uppercase;
}

.drag-btn {
	cursor: pointer;
	text-transform: uppercase;
	color: var(--secondary);
	border: none;
	font-weight: 500;
	text-decoration: underline;
	transition: 300ms;
}

.drag-btn:hover {
	color: var(--primary);
}

.droped-files {
	overflow-y: auto;
	overflow-x: hidden;
	height: 150px;
	display: flex;
	flex-direction: column;
	padding-top: 20px;
}

.droped-files .file {
	display: flex;
	margin-bottom: 20px;
}

.droped-files .file:last-child {
	margin-bottom: 0;
}

.droped-files .file .img-holder {
	margin-right: 10px;
	background: rgba(var(--rgb-primary), 0.06);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
}

.droped-files .file .img-holder img {
	width: 55px;
	height: 42px;
	border-radius: 4px;
	object-fit: cover;
	z-index: 2;
}

.droped-files .file .img-holder img:not([src]) {
	visibility: hidden;
}

.droped-files .file .info {
	flex: 1;
}

.droped-files .file .info .name {
	font-size: 0.9em;
	text-overflow: ellipsis;
	width: 185px;
	white-space: nowrap;
	overflow: hidden;
}

.droped-files .file .info .about-photo {
	font-size: 0.7em;
	color: rgba(var(--rgb-primary), 0.6);
}

.droped-files .file .ico-holder {
	cursor: pointer;
	opacity: 0.6;
	transition: 300ms;
	font-size: 0.9em;
}

.droped-files .file .ico-holder:hover {
	opacity: 1;
}

.droped-files .file .progress {
	position: relative;
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.droped-files .file .progress span {
	font-size: 0.5em;
	margin-left: 7px;
}

/* // Coupon entering */

.coupon form {
	margin-top: 20px;
}
/* // congratulations */

.congratulations {
	background: var(--body-color);
	width: 100%;
	max-width: 1600px;
	padding: 40px;
	margin: 0 auto;
}

.congratulations .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.log-out a {
	font-size: 0.9em;
	font-weight: 600;
	opacity: 0.6;
	transition: 300ms;
}

.log-out a:hover {
	opacity: 1;
	text-decoration: underline;
}

/* congratulations body */

.congratulations {
	animation: fadeIn 1s;
}

.congratulations .body {
	padding: 70px 0;
}

.congratulations .body .text {
	text-align: center;
}

.congratulations .body .button {
	text-align: center;
	margin: 50px 0 50px;
}

.congratulations .body .button a {
	background: var(--primary);
	display: inline-flex;
	align-items: center;
	border-radius: 6px;
	color: var(--body-color);
	font-weight: 600;
	padding: 0 30px;
	height: 48px;
	transition: 300ms;
	border: 3px solid transparent;
}

.congratulations .body .button a:hover {
	background: var(--body-color);
	border-color: var(--primary);
	color: var(--primary);
}

.congratulations .body .text h2 {
	font-family: var(--lora);
	font-weight: 500;
	font-size: 2.3em;
	margin: 0;
}

.congratulations .body .text p {
	margin: 0;
	margin-top: 15px;
}

.congratulations .body .order-steps {
	border: none;
	max-width: 430px;
	width: 100%;
	margin: 40px auto;
	padding: 0;
}

.congratulations .body .order-steps .order-step {
	z-index: 2;
}

.congratulations .body .order-steps .order-step .ico-holder {
	margin: 0;
}

/* // TI dont know any way around */
.congratulations .body .order-steps .order-step .ico-holder.done {
	background: #f1e9fe;
}

.congratulations .body .order-steps .order-step .ico-holder {
	background: var(--surface-3);
}

.congratulations .body .order-steps::before,
.congratulations .body .order-steps::after {
	display: none;
}

.congratulations .body .order-steps .line {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	border-top: 3px dashed rgba(var(--rgb-primary), 0.26);
	z-index: 1;
}

.congratulations .body .order-steps .progress-line {
	height: 3px;
	background: var(--secondary);
	z-index: 1;
	margin-top: -3px;
	width: 78%;
	display: flex;
	align-items: center;
	position: relative;
}

.congratulations .body .order-steps .progress-line i {
	color: var(--secondary);
	margin-left: auto;
	margin-right: -3px;
	font-size: 1.5em;
}

.congratulations .body .order-steps .order-step .ico-holder.whaiting i {
	animation: 1s blinking infinite ease-in-out;
	animation-direction: alternate;
}

.congratulations .body .order-steps .order-step .ico-holder.whaiting::before,
.congratulations .body .order-steps .order-step .ico-holder.whaiting::after {
	content: '';
	position: absolute;
	background: rgba(var(--rgb-primary), 0.04);
	height: 50px;
	width: 50px;
	border-radius: 50%;
	z-index: -1;
	animation: 2s growAndFade infinite ease-in-out;
}

.congratulations .body .order-steps .order-step .ico-holder.whaiting::before {
	/* animation-delay: 1s; */
	animation-duration: 3s;
}

@keyframes growAndFade {
	to {
		opacity: 0;
		transform: scale(3);
	}
}

@keyframes blinking {
	to {
		color: rgba(var(--rgb-primary), 0.5);
	}
}

/* /// footer of congrratulations */

.congratulations .footer {
	background: rgba(var(--rgb-primary), 0.06);
	padding: 0 40px;
}

.congratulations .footer .grid {
	display: grid;
	grid-template: 1fr / repeat(5, 1fr);
}

.congratulations .footer .grid .book-holder {
	display: flex;
	height: 450px;
	justify-content: center;
	align-items: flex-start;
	margin-top: -60px;
}

.congratulations .footer .grid .book-holder .book {
	font-size: 1.1em;
	margin: 0 auto;
}

.congratulations .footer .grid .book-holder:nth-child(2n) .book {
	align-self: flex-end;
	margin-bottom: -60px;
}

h3 {
	font-family: var(--lora);
	margin: 0;
	margin-bottom: 20px;
}

label {
	display: block;
	font-size: 0.8em;
	margin: 4px 0;
}

/* // Select */

select {
	height: 48px;
	border: none;
	background: rgba(var(--rgb-primary), 0.06);
	padding: 0 10px;
	outline: none;
	border-radius: 6px;
	border: 2px solid transparent;
	cursor: pointer;
	font-family: 1em;
	font-size: inherit;
	display: block;
	list-style: none;
	opacity: 0.7;

	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	text-overflow: '';
}

select::-ms-expand {
	display: none;
}

select:focus {
	border-color: var(--primary);
	opacity: 1;
}

/* // Media */

@media screen and (max-width: 1250px) {
	body {
		font-size: 0.9rem;
	}

	main {
		grid-template: 1fr / 1fr 1fr;
	}

	.steps {
		padding: 0;
	}

	.steps .two-in-row {
		display: block;
	}

	.order-steps {
		padding: 0 40px;
		padding-bottom: 40px;
	}

	.basket > .body {
		padding: 0px 40px;
	}

	.payment-methodes {
		font-size: 0.8rem;
	}
}

@media screen and (max-width: 1000px) {
	body {
		font-size: 0.9rem;
	}

	main {
		display: block;
	}

	.basket-holder {
		height: 0;
		padding: 0;
	}

	.basket {
		display: none;
	}

	.congratulations .footer {
		font-size: 0.7rem;
	}

	.congratulations .footer .grid .book-holder {
		height: 380px;
	}

	.payment-methodes {
		font-size: 1rem;
	}

	.funtenjer {
		padding-bottom: 70px;
	}
}

[mobileOnly] {
	display: none;
}

@media screen and (max-width: 800px) {
	body {
		background: var(--body-color);
		font-size: 0.9em;
		overflow-x: hidden;
	}

	main {
		margin: 0;
		margin-bottom: auto;
	}

	.funtenjer {
		padding-bottom: 70px;
	}

	.steps {
		padding: 10px 0;
	}

	/* Removin circle from plan options */
	.price-options .choice .circle {
		display: none;
	}

	/* Payment choosing code */
	.payment-methodes-holder {
		display: block;
	}

	.payment-methodes {
		display: flex;
		font-size: 0.7rem;
		overflow-y: hidden;
		overflow-x: auto;
		margin: 20px 0;
		border-bottom: 2px solid var(--hairline);
	}

	.payment-methodes::-webkit-scrollbar {
		display: none;
	}

	.method .card {
		width: 180px;
		margin-right: 20px;
	}

	.method .card.active::before {
		top: -7.5px;
		right: -7.5px;
		width: 15px;
		height: 15px;
		font-size: 0.7em;
	}

	/* // Congratulations */

	.congratulations {
		display: flex;
		flex-direction: column;
		margin: 0;
	}

	.congratulations .body {
		margin: auto;
	}

	.congratulations .body .text h2 {
		font-size: 2em;
	}

	.congratulations .footer {
		display: none;
	}
}

@media screen and (max-width: 400px) {
	.price-options .option .right,
	.price-options .option .right .price {
		padding: 0;
	}
}

/* Mobile billing bar — shown at ≤1000px when .basket sidebar is hidden */

.mobile-billing-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--body-color);
	border-top: 2px solid rgba(var(--rgb-primary), 0.08);
	padding: 12px 20px;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.mobile-billing-bar .mobile-plan-label {
	font-size: 0.8em;
	color: rgba(var(--rgb-primary), 0.55);
	font-weight: 500;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
	margin-right: 12px;
}

.mobile-billing-bar .mobile-price-holder {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex-shrink: 0;
}

.mobile-billing-bar .mobile-price-desc {
	font-size: 0.7em;
	color: rgba(var(--rgb-primary), 0.45);
	margin-bottom: 1px;
}

.mobile-billing-bar .mobile-price-value {
	font-weight: 600;
	font-size: 1.05em;
	transition: 0.3s;
}

.mobile-billing-bar .mobile-price-value.discounted {
	background: var(--green-light);
	padding: 0 6px;
}

@media screen and (max-width: 1000px) {
	.mobile-billing-bar {
		display: flex;
	}
}

.iti {
	width: 100%;
}

.iti {
  position: relative;
  display: inline-block; }
  .iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .iti__hide {
    display: none; }
  .iti__v-hide {
    visibility: hidden; }
  .iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px; }
  .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555; }
    .iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }
  .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .iti__country-list--dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    @media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }
  .iti__flag-box {
    display: inline-block;
    width: 20px; }
  .iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }
  .iti__country {
    padding: 5px 10px;
    outline: none; }
  .iti__dial-code {
    color: #999; }
  .iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }
  .iti__flag-box, .iti__country-name {
    margin-right: 6px; }
  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }
  .iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }
    .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
  .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default; }
    .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
    .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
      background-color: transparent; }
  .iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px; }
  .iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .iti--container:hover {
      cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }
  .iti__flag.iti__be {
    width: 18px; }
  .iti__flag.iti__ch {
    width: 15px; }
  .iti__flag.iti__mc {
    width: 19px; }
  .iti__flag.iti__ne {
    width: 18px; }
  .iti__flag.iti__np {
    width: 13px; }
  .iti__flag.iti__va {
    width: 15px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }
  .iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }
  .iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }
  .iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }
  .iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }
  .iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }
  .iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }
  .iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }
  .iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }
  .iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }
  .iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }
  .iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }
  .iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }
  .iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }
  .iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }
  .iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }
  .iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }
  .iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }
  .iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }
  .iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }
  .iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }
  .iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }
  .iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }
  .iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }
  .iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }
  .iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }
  .iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }
  .iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }
  .iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }
  .iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }
  .iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }
  .iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url(007b2705c0a8f69dfdf6ea1bfa0341c9.png);
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url(9d5328fb490cddd43f6698012123404b.png); } }

.iti__flag.iti__np {
  background-color: transparent; }

