$hoverColor: rgba(0, 0, 0, 0.05) !default;
$greyText: #999 !default;
$greyBorder: #ccc !default;

$flagHeight: 15px !default;
$flagWidth: 20px !default;
$flagPadding: 8px !default;
$borderWidth: 1px !default;

$arrowHeight: 4px !default;
$arrowWidth: 6px !default;
$triangleBorder: 3px !default;
$arrowPadding: 6px !default;
$arrowColor: #555 !default;

$inputPadding: 6px !default;
$selectedFlagWidth: $flagWidth + (2 * $flagPadding) !default;
$selectedFlagArrowWidth: $flagWidth + $flagPadding + $arrowWidth + (2 * $arrowPadding) !default;

$flagsImagePath: '../img/intl-tel-input/' !default;
$flagsImageName: 'flags' !default;
$flagsImageExtension: 'png' !default;

$mobilePopupMargin: 30px !default;

.iti {
	position: relative;
	display: inline-block;

	* {
		box-sizing: border-box;
		-moz-box-sizing: border-box;
	}

	&__hide {
		display: none;
	}
	&__v-hide {
		visibility: hidden;
	}

	input,
	input[type='text'],
	input[type='tel'] {
		position: relative;
		z-index: 0;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-right: $selectedFlagWidth;
		margin-right: 0;
	}
	&__flag-container {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		padding: $borderWidth;
	}
	&__selected-flag {
		z-index: 1;
		position: relative;
		display: flex;
		align-items: center;
		height: 100%;
		padding: 0 $arrowPadding 0 $flagPadding;
	}

	&__arrow {
		margin-left: $arrowPadding;
		width: 0;
		height: 0;
		border-left: $triangleBorder solid transparent;
		border-right: $triangleBorder solid transparent;
		border-top: $arrowHeight solid $arrowColor;

		&--up {
			border-top: none;
			border-bottom: $arrowHeight solid $arrowColor;
		}
	}
	&__country-list {
		position: absolute;
		z-index: 2;
		list-style: none;
		text-align: left;
		&--dropup {
			bottom: 100%;
			margin-bottom: (-$borderWidth);
		}
		padding: 0;
		margin: 0 0 0 (-$borderWidth);
		box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
		background-color: white;
		border: $borderWidth solid $greyBorder;
		white-space: nowrap;
		@media (max-width: 500px) {
			white-space: normal;
		}

		max-height: 200px;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	&__flag-box {
		display: inline-block;
		width: $flagWidth;
	}
	&__divider {
		padding-bottom: 5px;
		margin-bottom: 5px;
		border-bottom: $borderWidth solid $greyBorder;
	}
	&__country {
		padding: 5px 10px;
		outline: none;
	}
	&__dial-code {
		color: $greyText;
	}
	&__country.iti__highlight {
		background-color: $hoverColor;
	}
	&__flag-box,
	&__country-name,
	&__dial-code {
		vertical-align: middle;
	}
	&__flag-box,
	&__country-name {
		margin-right: 6px;
	}
	&--allow-dropdown,
	&--separate-dial-code {
		input,
		input[type='text'],
		input[type='tel'] {
			padding-right: $inputPadding;
			padding-left: $selectedFlagArrowWidth + $inputPadding;
			margin-left: 0;
		}
		.iti__flag-container {
			right: auto;
			left: 0;
		}
	}

	&--allow-dropdown {
		.iti__flag-container:hover {
			cursor: pointer;
			.iti__selected-flag {
				background-color: $hoverColor;
			}
		}
		input[disabled] + .iti__flag-container:hover,
		input[readonly] + .iti__flag-container:hover {
			cursor: default;
			.iti__selected-flag {
				background-color: transparent;
			}
		}
	}

	&--separate-dial-code {
		.iti__selected-flag {
			background-color: $hoverColor;
		}
		.iti__selected-dial-code {
			margin-left: $arrowPadding;
		}
	}
	&--container {
		position: absolute;
		top: -1000px;
		left: -1000px;
		z-index: 1060;
		padding: $borderWidth;
		&:hover {
			cursor: pointer;
		}
	}
}

.iti-mobile .iti {
	&--container {
		top: $mobilePopupMargin;
		bottom: $mobilePopupMargin;
		left: $mobilePopupMargin;
		right: $mobilePopupMargin;
		position: fixed;
	}
	&__country-list {
		max-height: 100%;
		width: 100%;
	}
	&__country {
		padding: 10px 10px;
		line-height: 1.5em;
	}
}

.iti__flag {
	height: $flagHeight;
	box-shadow: 0px 0px 1px 0px #888;
	background-image: url('#{$flagsImagePath}#{$flagsImageName}.#{$flagsImageExtension}');
	background-repeat: no-repeat;
	background-color: #dbdbdb;
	background-position: $flagWidth 0;

	@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
		background-image: url('#{$flagsImagePath}#{$flagsImageName}@2x.#{$flagsImageExtension}');
	}
}
.iti__flag.iti__np {
	background-color: transparent;
}
@function retina-size($value) {
	@return floor($value / 2);
}
@mixin retina-bg-size($spriteWidth, $spriteHeight) {
	background-size: floor($spriteWidth / 2) floor($spriteHeight / 2);
}
.iti__flag {
	$item-width-maps: (
		ac: 20px,
		ad: 20px,
		ae: 20px,
		af: 20px,
		ag: 20px,
		ai: 20px,
		al: 20px,
		am: 20px,
		ao: 20px,
		aq: 20px,
		ar: 20px,
		as: 20px,
		at: 20px,
		au: 20px,
		aw: 20px,
		ax: 20px,
		az: 20px,
		ba: 20px,
		bb: 20px,
		bd: 20px,
		be: 18px,
		bf: 20px,
		bg: 20px,
		bh: 20px,
		bi: 20px,
		bj: 20px,
		bl: 20px,
		bm: 20px,
		bn: 20px,
		bo: 20px,
		bq: 20px,
		br: 20px,
		bs: 20px,
		bt: 20px,
		bv: 20px,
		bw: 20px,
		by: 20px,
		bz: 20px,
		ca: 20px,
		cc: 20px,
		cd: 20px,
		cf: 20px,
		cg: 20px,
		ch: 15px,
		ci: 20px,
		ck: 20px,
		cl: 20px,
		cm: 20px,
		cn: 20px,
		co: 20px,
		cp: 20px,
		cr: 20px,
		cu: 20px,
		cv: 20px,
		cw: 20px,
		cx: 20px,
		cy: 20px,
		cz: 20px,
		de: 20px,
		dg: 20px,
		dj: 20px,
		dk: 20px,
		dm: 20px,
		do: 20px,
		dz: 20px,
		ea: 20px,
		ec: 20px,
		ee: 20px,
		eg: 20px,
		eh: 20px,
		er: 20px,
		es: 20px,
		et: 20px,
		eu: 20px,
		fi: 20px,
		fj: 20px,
		fk: 20px,
		fm: 20px,
		fo: 20px,
		fr: 20px,
		ga: 20px,
		gb: 20px,
		gd: 20px,
		ge: 20px,
		gf: 20px,
		gg: 20px,
		gh: 20px,
		gi: 20px,
		gl: 20px,
		gm: 20px,
		gn: 20px,
		gp: 20px,
		gq: 20px,
		gr: 20px,
		gs: 20px,
		gt: 20px,
		gu: 20px,
		gw: 20px,
		gy: 20px,
		hk: 20px,
		hm: 20px,
		hn: 20px,
		hr: 20px,
		ht: 20px,
		hu: 20px,
		ic: 20px,
		id: 20px,
		ie: 20px,
		il: 20px,
		im: 20px,
		in: 20px,
		io: 20px,
		iq: 20px,
		ir: 20px,
		is: 20px,
		it: 20px,
		je: 20px,
		jm: 20px,
		jo: 20px,
		jp: 20px,
		ke: 20px,
		kg: 20px,
		kh: 20px,
		ki: 20px,
		km: 20px,
		kn: 20px,
		kp: 20px,
		kr: 20px,
		kw: 20px,
		ky: 20px,
		kz: 20px,
		la: 20px,
		lb: 20px,
		lc: 20px,
		li: 20px,
		lk: 20px,
		lr: 20px,
		ls: 20px,
		lt: 20px,
		lu: 20px,
		lv: 20px,
		ly: 20px,
		ma: 20px,
		mc: 19px,
		md: 20px,
		me: 20px,
		mf: 20px,
		mg: 20px,
		mh: 20px,
		mk: 20px,
		ml: 20px,
		mm: 20px,
		mn: 20px,
		mo: 20px,
		mp: 20px,
		mq: 20px,
		mr: 20px,
		ms: 20px,
		mt: 20px,
		mu: 20px,
		mv: 20px,
		mw: 20px,
		mx: 20px,
		my: 20px,
		mz: 20px,
		na: 20px,
		nc: 20px,
		ne: 18px,
		nf: 20px,
		ng: 20px,
		ni: 20px,
		nl: 20px,
		no: 20px,
		np: 13px,
		nr: 20px,
		nu: 20px,
		nz: 20px,
		om: 20px,
		pa: 20px,
		pe: 20px,
		pf: 20px,
		pg: 20px,
		ph: 20px,
		pk: 20px,
		pl: 20px,
		pm: 20px,
		pn: 20px,
		pr: 20px,
		ps: 20px,
		pt: 20px,
		pw: 20px,
		py: 20px,
		qa: 20px,
		re: 20px,
		ro: 20px,
		rs: 20px,
		ru: 20px,
		rw: 20px,
		sa: 20px,
		sb: 20px,
		sc: 20px,
		sd: 20px,
		se: 20px,
		sg: 20px,
		sh: 20px,
		si: 20px,
		sj: 20px,
		sk: 20px,
		sl: 20px,
		sm: 20px,
		sn: 20px,
		so: 20px,
		sr: 20px,
		ss: 20px,
		st: 20px,
		sv: 20px,
		sx: 20px,
		sy: 20px,
		sz: 20px,
		ta: 20px,
		tc: 20px,
		td: 20px,
		tf: 20px,
		tg: 20px,
		th: 20px,
		tj: 20px,
		tk: 20px,
		tl: 20px,
		tm: 20px,
		tn: 20px,
		to: 20px,
		tr: 20px,
		tt: 20px,
		tv: 20px,
		tw: 20px,
		tz: 20px,
		ua: 20px,
		ug: 20px,
		um: 20px,
		un: 20px,
		us: 20px,
		uy: 20px,
		uz: 20px,
		va: 15px,
		vc: 20px,
		ve: 20px,
		vg: 20px,
		vi: 20px,
		vn: 20px,
		vu: 20px,
		wf: 20px,
		ws: 20px,
		xk: 20px,
		ye: 20px,
		yt: 20px,
		za: 20px,
		zm: 20px,
		zw: 20px
	);
	$standard-country: 'ac';
	width: map-get($item-width-maps, $standard-country);

	@each $key, $width in $item-width-maps {
		@if $width != map-get($item-width-maps, $standard-country) {
			&.iti__#{$key} {
				width: $width;
			}
		}
	}

	@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
		background-size: 5652px 15px;
	}

	&.iti__ac {
		height: 10px;
		background-position: 0px 0px;
	}
	&.iti__ad {
		height: 14px;
		background-position: -22px 0px;
	}
	&.iti__ae {
		height: 10px;
		background-position: -44px 0px;
	}
	&.iti__af {
		height: 14px;
		background-position: -66px 0px;
	}
	&.iti__ag {
		height: 14px;
		background-position: -88px 0px;
	}
	&.iti__ai {
		height: 10px;
		background-position: -110px 0px;
	}
	&.iti__al {
		height: 15px;
		background-position: -132px 0px;
	}
	&.iti__am {
		height: 10px;
		background-position: -154px 0px;
	}
	&.iti__ao {
		height: 14px;
		background-position: -176px 0px;
	}
	&.iti__aq {
		height: 14px;
		background-position: -198px 0px;
	}
	&.iti__ar {
		height: 13px;
		background-position: -220px 0px;
	}
	&.iti__as {
		height: 10px;
		background-position: -242px 0px;
	}
	&.iti__at {
		height: 14px;
		background-position: -264px 0px;
	}
	&.iti__au {
		height: 10px;
		background-position: -286px 0px;
	}
	&.iti__aw {
		height: 14px;
		background-position: -308px 0px;
	}
	&.iti__ax {
		height: 13px;
		background-position: -330px 0px;
	}
	&.iti__az {
		height: 10px;
		background-position: -352px 0px;
	}
	&.iti__ba {
		height: 10px;
		background-position: -374px 0px;
	}
	&.iti__bb {
		height: 14px;
		background-position: -396px 0px;
	}
	&.iti__bd {
		height: 12px;
		background-position: -418px 0px;
	}
	&.iti__be {
		height: 15px;
		background-position: -440px 0px;
	}
	&.iti__bf {
		height: 14px;
		background-position: -460px 0px;
	}
	&.iti__bg {
		height: 12px;
		background-position: -482px 0px;
	}
	&.iti__bh {
		height: 12px;
		background-position: -504px 0px;
	}
	&.iti__bi {
		height: 12px;
		background-position: -526px 0px;
	}
	&.iti__bj {
		height: 14px;
		background-position: -548px 0px;
	}
	&.iti__bl {
		height: 14px;
		background-position: -570px 0px;
	}
	&.iti__bm {
		height: 10px;
		background-position: -592px 0px;
	}
	&.iti__bn {
		height: 10px;
		background-position: -614px 0px;
	}
	&.iti__bo {
		height: 14px;
		background-position: -636px 0px;
	}
	&.iti__bq {
		height: 14px;
		background-position: -658px 0px;
	}
	&.iti__br {
		height: 14px;
		background-position: -680px 0px;
	}
	&.iti__bs {
		height: 10px;
		background-position: -702px 0px;
	}
	&.iti__bt {
		height: 14px;
		background-position: -724px 0px;
	}
	&.iti__bv {
		height: 15px;
		background-position: -746px 0px;
	}
	&.iti__bw {
		height: 14px;
		background-position: -768px 0px;
	}
	&.iti__by {
		height: 10px;
		background-position: -790px 0px;
	}
	&.iti__bz {
		height: 14px;
		background-position: -812px 0px;
	}
	&.iti__ca {
		height: 10px;
		background-position: -834px 0px;
	}
	&.iti__cc {
		height: 10px;
		background-position: -856px 0px;
	}
	&.iti__cd {
		height: 15px;
		background-position: -878px 0px;
	}
	&.iti__cf {
		height: 14px;
		background-position: -900px 0px;
	}
	&.iti__cg {
		height: 14px;
		background-position: -922px 0px;
	}
	&.iti__ch {
		height: 15px;
		background-position: -944px 0px;
	}
	&.iti__ci {
		height: 14px;
		background-position: -961px 0px;
	}
	&.iti__ck {
		height: 10px;
		background-position: -983px 0px;
	}
	&.iti__cl {
		height: 14px;
		background-position: -1005px 0px;
	}
	&.iti__cm {
		height: 14px;
		background-position: -1027px 0px;
	}
	&.iti__cn {
		height: 14px;
		background-position: -1049px 0px;
	}
	&.iti__co {
		height: 14px;
		background-position: -1071px 0px;
	}
	&.iti__cp {
		height: 14px;
		background-position: -1093px 0px;
	}
	&.iti__cr {
		height: 12px;
		background-position: -1115px 0px;
	}
	&.iti__cu {
		height: 10px;
		background-position: -1137px 0px;
	}
	&.iti__cv {
		height: 12px;
		background-position: -1159px 0px;
	}
	&.iti__cw {
		height: 14px;
		background-position: -1181px 0px;
	}
	&.iti__cx {
		height: 10px;
		background-position: -1203px 0px;
	}
	&.iti__cy {
		height: 14px;
		background-position: -1225px 0px;
	}
	&.iti__cz {
		height: 14px;
		background-position: -1247px 0px;
	}
	&.iti__de {
		height: 12px;
		background-position: -1269px 0px;
	}
	&.iti__dg {
		height: 10px;
		background-position: -1291px 0px;
	}
	&.iti__dj {
		height: 14px;
		background-position: -1313px 0px;
	}
	&.iti__dk {
		height: 15px;
		background-position: -1335px 0px;
	}
	&.iti__dm {
		height: 10px;
		background-position: -1357px 0px;
	}
	&.iti__do {
		height: 14px;
		background-position: -1379px 0px;
	}
	&.iti__dz {
		height: 14px;
		background-position: -1401px 0px;
	}
	&.iti__ea {
		height: 14px;
		background-position: -1423px 0px;
	}
	&.iti__ec {
		height: 14px;
		background-position: -1445px 0px;
	}
	&.iti__ee {
		height: 13px;
		background-position: -1467px 0px;
	}
	&.iti__eg {
		height: 14px;
		background-position: -1489px 0px;
	}
	&.iti__eh {
		height: 10px;
		background-position: -1511px 0px;
	}
	&.iti__er {
		height: 10px;
		background-position: -1533px 0px;
	}
	&.iti__es {
		height: 14px;
		background-position: -1555px 0px;
	}
	&.iti__et {
		height: 10px;
		background-position: -1577px 0px;
	}
	&.iti__eu {
		height: 14px;
		background-position: -1599px 0px;
	}
	&.iti__fi {
		height: 12px;
		background-position: -1621px 0px;
	}
	&.iti__fj {
		height: 10px;
		background-position: -1643px 0px;
	}
	&.iti__fk {
		height: 10px;
		background-position: -1665px 0px;
	}
	&.iti__fm {
		height: 11px;
		background-position: -1687px 0px;
	}
	&.iti__fo {
		height: 15px;
		background-position: -1709px 0px;
	}
	&.iti__fr {
		height: 14px;
		background-position: -1731px 0px;
	}
	&.iti__ga {
		height: 15px;
		background-position: -1753px 0px;
	}
	&.iti__gb {
		height: 10px;
		background-position: -1775px 0px;
	}
	&.iti__gd {
		height: 12px;
		background-position: -1797px 0px;
	}
	&.iti__ge {
		height: 14px;
		background-position: -1819px 0px;
	}
	&.iti__gf {
		height: 14px;
		background-position: -1841px 0px;
	}
	&.iti__gg {
		height: 14px;
		background-position: -1863px 0px;
	}
	&.iti__gh {
		height: 14px;
		background-position: -1885px 0px;
	}
	&.iti__gi {
		height: 10px;
		background-position: -1907px 0px;
	}
	&.iti__gl {
		height: 14px;
		background-position: -1929px 0px;
	}
	&.iti__gm {
		height: 14px;
		background-position: -1951px 0px;
	}
	&.iti__gn {
		height: 14px;
		background-position: -1973px 0px;
	}
	&.iti__gp {
		height: 14px;
		background-position: -1995px 0px;
	}
	&.iti__gq {
		height: 14px;
		background-position: -2017px 0px;
	}
	&.iti__gr {
		height: 14px;
		background-position: -2039px 0px;
	}
	&.iti__gs {
		height: 10px;
		background-position: -2061px 0px;
	}
	&.iti__gt {
		height: 13px;
		background-position: -2083px 0px;
	}
	&.iti__gu {
		height: 11px;
		background-position: -2105px 0px;
	}
	&.iti__gw {
		height: 10px;
		background-position: -2127px 0px;
	}
	&.iti__gy {
		height: 12px;
		background-position: -2149px 0px;
	}
	&.iti__hk {
		height: 14px;
		background-position: -2171px 0px;
	}
	&.iti__hm {
		height: 10px;
		background-position: -2193px 0px;
	}
	&.iti__hn {
		height: 10px;
		background-position: -2215px 0px;
	}
	&.iti__hr {
		height: 10px;
		background-position: -2237px 0px;
	}
	&.iti__ht {
		height: 12px;
		background-position: -2259px 0px;
	}
	&.iti__hu {
		height: 10px;
		background-position: -2281px 0px;
	}
	&.iti__ic {
		height: 14px;
		background-position: -2303px 0px;
	}
	&.iti__id {
		height: 14px;
		background-position: -2325px 0px;
	}
	&.iti__ie {
		height: 10px;
		background-position: -2347px 0px;
	}
	&.iti__il {
		height: 15px;
		background-position: -2369px 0px;
	}
	&.iti__im {
		height: 10px;
		background-position: -2391px 0px;
	}
	&.iti__in {
		height: 14px;
		background-position: -2413px 0px;
	}
	&.iti__io {
		height: 10px;
		background-position: -2435px 0px;
	}
	&.iti__iq {
		height: 14px;
		background-position: -2457px 0px;
	}
	&.iti__ir {
		height: 12px;
		background-position: -2479px 0px;
	}
	&.iti__is {
		height: 15px;
		background-position: -2501px 0px;
	}
	&.iti__it {
		height: 14px;
		background-position: -2523px 0px;
	}
	&.iti__je {
		height: 12px;
		background-position: -2545px 0px;
	}
	&.iti__jm {
		height: 10px;
		background-position: -2567px 0px;
	}
	&.iti__jo {
		height: 10px;
		background-position: -2589px 0px;
	}
	&.iti__jp {
		height: 14px;
		background-position: -2611px 0px;
	}
	&.iti__ke {
		height: 14px;
		background-position: -2633px 0px;
	}
	&.iti__kg {
		height: 12px;
		background-position: -2655px 0px;
	}
	&.iti__kh {
		height: 13px;
		background-position: -2677px 0px;
	}
	&.iti__ki {
		height: 10px;
		background-position: -2699px 0px;
	}
	&.iti__km {
		height: 12px;
		background-position: -2721px 0px;
	}
	&.iti__kn {
		height: 14px;
		background-position: -2743px 0px;
	}
	&.iti__kp {
		height: 10px;
		background-position: -2765px 0px;
	}
	&.iti__kr {
		height: 14px;
		background-position: -2787px 0px;
	}
	&.iti__kw {
		height: 10px;
		background-position: -2809px 0px;
	}
	&.iti__ky {
		height: 10px;
		background-position: -2831px 0px;
	}
	&.iti__kz {
		height: 10px;
		background-position: -2853px 0px;
	}
	&.iti__la {
		height: 14px;
		background-position: -2875px 0px;
	}
	&.iti__lb {
		height: 14px;
		background-position: -2897px 0px;
	}
	&.iti__lc {
		height: 10px;
		background-position: -2919px 0px;
	}
	&.iti__li {
		height: 12px;
		background-position: -2941px 0px;
	}
	&.iti__lk {
		height: 10px;
		background-position: -2963px 0px;
	}
	&.iti__lr {
		height: 11px;
		background-position: -2985px 0px;
	}
	&.iti__ls {
		height: 14px;
		background-position: -3007px 0px;
	}
	&.iti__lt {
		height: 12px;
		background-position: -3029px 0px;
	}
	&.iti__lu {
		height: 12px;
		background-position: -3051px 0px;
	}
	&.iti__lv {
		height: 10px;
		background-position: -3073px 0px;
	}
	&.iti__ly {
		height: 10px;
		background-position: -3095px 0px;
	}
	&.iti__ma {
		height: 14px;
		background-position: -3117px 0px;
	}
	&.iti__mc {
		height: 15px;
		background-position: -3139px 0px;
	}
	&.iti__md {
		height: 10px;
		background-position: -3160px 0px;
	}
	&.iti__me {
		height: 10px;
		background-position: -3182px 0px;
	}
	&.iti__mf {
		height: 14px;
		background-position: -3204px 0px;
	}
	&.iti__mg {
		height: 14px;
		background-position: -3226px 0px;
	}
	&.iti__mh {
		height: 11px;
		background-position: -3248px 0px;
	}
	&.iti__mk {
		height: 10px;
		background-position: -3270px 0px;
	}
	&.iti__ml {
		height: 14px;
		background-position: -3292px 0px;
	}
	&.iti__mm {
		height: 14px;
		background-position: -3314px 0px;
	}
	&.iti__mn {
		height: 10px;
		background-position: -3336px 0px;
	}
	&.iti__mo {
		height: 14px;
		background-position: -3358px 0px;
	}
	&.iti__mp {
		height: 10px;
		background-position: -3380px 0px;
	}
	&.iti__mq {
		height: 14px;
		background-position: -3402px 0px;
	}
	&.iti__mr {
		height: 14px;
		background-position: -3424px 0px;
	}
	&.iti__ms {
		height: 10px;
		background-position: -3446px 0px;
	}
	&.iti__mt {
		height: 14px;
		background-position: -3468px 0px;
	}
	&.iti__mu {
		height: 14px;
		background-position: -3490px 0px;
	}
	&.iti__mv {
		height: 14px;
		background-position: -3512px 0px;
	}
	&.iti__mw {
		height: 14px;
		background-position: -3534px 0px;
	}
	&.iti__mx {
		height: 12px;
		background-position: -3556px 0px;
	}
	&.iti__my {
		height: 10px;
		background-position: -3578px 0px;
	}
	&.iti__mz {
		height: 14px;
		background-position: -3600px 0px;
	}
	&.iti__na {
		height: 14px;
		background-position: -3622px 0px;
	}
	&.iti__nc {
		height: 10px;
		background-position: -3644px 0px;
	}
	&.iti__ne {
		height: 15px;
		background-position: -3666px 0px;
	}
	&.iti__nf {
		height: 10px;
		background-position: -3686px 0px;
	}
	&.iti__ng {
		height: 10px;
		background-position: -3708px 0px;
	}
	&.iti__ni {
		height: 12px;
		background-position: -3730px 0px;
	}
	&.iti__nl {
		height: 14px;
		background-position: -3752px 0px;
	}
	&.iti__no {
		height: 15px;
		background-position: -3774px 0px;
	}
	&.iti__np {
		height: 15px;
		background-position: -3796px 0px;
	}
	&.iti__nr {
		height: 10px;
		background-position: -3811px 0px;
	}
	&.iti__nu {
		height: 10px;
		background-position: -3833px 0px;
	}
	&.iti__nz {
		height: 10px;
		background-position: -3855px 0px;
	}
	&.iti__om {
		height: 10px;
		background-position: -3877px 0px;
	}
	&.iti__pa {
		height: 14px;
		background-position: -3899px 0px;
	}
	&.iti__pe {
		height: 14px;
		background-position: -3921px 0px;
	}
	&.iti__pf {
		height: 14px;
		background-position: -3943px 0px;
	}
	&.iti__pg {
		height: 15px;
		background-position: -3965px 0px;
	}
	&.iti__ph {
		height: 10px;
		background-position: -3987px 0px;
	}
	&.iti__pk {
		height: 14px;
		background-position: -4009px 0px;
	}
	&.iti__pl {
		height: 13px;
		background-position: -4031px 0px;
	}
	&.iti__pm {
		height: 14px;
		background-position: -4053px 0px;
	}
	&.iti__pn {
		height: 10px;
		background-position: -4075px 0px;
	}
	&.iti__pr {
		height: 14px;
		background-position: -4097px 0px;
	}
	&.iti__ps {
		height: 10px;
		background-position: -4119px 0px;
	}
	&.iti__pt {
		height: 14px;
		background-position: -4141px 0px;
	}
	&.iti__pw {
		height: 13px;
		background-position: -4163px 0px;
	}
	&.iti__py {
		height: 11px;
		background-position: -4185px 0px;
	}
	&.iti__qa {
		height: 8px;
		background-position: -4207px 0px;
	}
	&.iti__re {
		height: 14px;
		background-position: -4229px 0px;
	}
	&.iti__ro {
		height: 14px;
		background-position: -4251px 0px;
	}
	&.iti__rs {
		height: 14px;
		background-position: -4273px 0px;
	}
	&.iti__ru {
		height: 14px;
		background-position: -4295px 0px;
	}
	&.iti__rw {
		height: 14px;
		background-position: -4317px 0px;
	}
	&.iti__sa {
		height: 14px;
		background-position: -4339px 0px;
	}
	&.iti__sb {
		height: 10px;
		background-position: -4361px 0px;
	}
	&.iti__sc {
		height: 10px;
		background-position: -4383px 0px;
	}
	&.iti__sd {
		height: 10px;
		background-position: -4405px 0px;
	}
	&.iti__se {
		height: 13px;
		background-position: -4427px 0px;
	}
	&.iti__sg {
		height: 14px;
		background-position: -4449px 0px;
	}
	&.iti__sh {
		height: 10px;
		background-position: -4471px 0px;
	}
	&.iti__si {
		height: 10px;
		background-position: -4493px 0px;
	}
	&.iti__sj {
		height: 15px;
		background-position: -4515px 0px;
	}
	&.iti__sk {
		height: 14px;
		background-position: -4537px 0px;
	}
	&.iti__sl {
		height: 14px;
		background-position: -4559px 0px;
	}
	&.iti__sm {
		height: 15px;
		background-position: -4581px 0px;
	}
	&.iti__sn {
		height: 14px;
		background-position: -4603px 0px;
	}
	&.iti__so {
		height: 14px;
		background-position: -4625px 0px;
	}
	&.iti__sr {
		height: 14px;
		background-position: -4647px 0px;
	}
	&.iti__ss {
		height: 10px;
		background-position: -4669px 0px;
	}
	&.iti__st {
		height: 10px;
		background-position: -4691px 0px;
	}
	&.iti__sv {
		height: 12px;
		background-position: -4713px 0px;
	}
	&.iti__sx {
		height: 14px;
		background-position: -4735px 0px;
	}
	&.iti__sy {
		height: 14px;
		background-position: -4757px 0px;
	}
	&.iti__sz {
		height: 14px;
		background-position: -4779px 0px;
	}
	&.iti__ta {
		height: 10px;
		background-position: -4801px 0px;
	}
	&.iti__tc {
		height: 10px;
		background-position: -4823px 0px;
	}
	&.iti__td {
		height: 14px;
		background-position: -4845px 0px;
	}
	&.iti__tf {
		height: 14px;
		background-position: -4867px 0px;
	}
	&.iti__tg {
		height: 13px;
		background-position: -4889px 0px;
	}
	&.iti__th {
		height: 14px;
		background-position: -4911px 0px;
	}
	&.iti__tj {
		height: 10px;
		background-position: -4933px 0px;
	}
	&.iti__tk {
		height: 10px;
		background-position: -4955px 0px;
	}
	&.iti__tl {
		height: 10px;
		background-position: -4977px 0px;
	}
	&.iti__tm {
		height: 14px;
		background-position: -4999px 0px;
	}
	&.iti__tn {
		height: 14px;
		background-position: -5021px 0px;
	}
	&.iti__to {
		height: 10px;
		background-position: -5043px 0px;
	}
	&.iti__tr {
		height: 14px;
		background-position: -5065px 0px;
	}
	&.iti__tt {
		height: 12px;
		background-position: -5087px 0px;
	}
	&.iti__tv {
		height: 10px;
		background-position: -5109px 0px;
	}
	&.iti__tw {
		height: 14px;
		background-position: -5131px 0px;
	}
	&.iti__tz {
		height: 14px;
		background-position: -5153px 0px;
	}
	&.iti__ua {
		height: 14px;
		background-position: -5175px 0px;
	}
	&.iti__ug {
		height: 14px;
		background-position: -5197px 0px;
	}
	&.iti__um {
		height: 11px;
		background-position: -5219px 0px;
	}
	&.iti__un {
		height: 14px;
		background-position: -5241px 0px;
	}
	&.iti__us {
		height: 11px;
		background-position: -5263px 0px;
	}
	&.iti__uy {
		height: 14px;
		background-position: -5285px 0px;
	}
	&.iti__uz {
		height: 10px;
		background-position: -5307px 0px;
	}
	&.iti__va {
		height: 15px;
		background-position: -5329px 0px;
	}
	&.iti__vc {
		height: 14px;
		background-position: -5346px 0px;
	}
	&.iti__ve {
		height: 14px;
		background-position: -5368px 0px;
	}
	&.iti__vg {
		height: 10px;
		background-position: -5390px 0px;
	}
	&.iti__vi {
		height: 14px;
		background-position: -5412px 0px;
	}
	&.iti__vn {
		height: 14px;
		background-position: -5434px 0px;
	}
	&.iti__vu {
		height: 12px;
		background-position: -5456px 0px;
	}
	&.iti__wf {
		height: 14px;
		background-position: -5478px 0px;
	}
	&.iti__ws {
		height: 10px;
		background-position: -5500px 0px;
	}
	&.iti__xk {
		height: 15px;
		background-position: -5522px 0px;
	}
	&.iti__ye {
		height: 14px;
		background-position: -5544px 0px;
	}
	&.iti__yt {
		height: 14px;
		background-position: -5566px 0px;
	}
	&.iti__za {
		height: 14px;
		background-position: -5588px 0px;
	}
	&.iti__zm {
		height: 14px;
		background-position: -5610px 0px;
	}
	&.iti__zw {
		height: 10px;
		background-position: -5632px 0px;
	}
}