
@font-face {
	font-display: swap;
	font-family: "skoda";
	font-weight: 700;
	font-style: normal;
	src: url(../fonts/SKODANextW05-Bold.woff2) format("woff2");
}
@font-face {
	font-display: swap;
	font-family: "skoda";
	font-weight: 400;
	font-style: normal;
	src: url(../fonts/SKODANextW05-Regular.woff2) format("woff2");
}
@font-face {
	font-display: swap;
	font-family: "skoda";
	font-weight: 300;
	font-style: normal;
	src: url(../fonts/SKODANextW05-Light.woff2) format("woff2");
}
:root {
	--blue-color: #2687FF;
	--strong-blue-color: #0081C9;
	--green-color: #1FC866;
	--olive-color: #83B000;
	--purple-color: #8900C9;
	--charcoal-color: #4A4A4A;
	--dark-green-color: #0E3A2F;
	--dark-cyan-color: #00271D;
	--grey-color: #EFF2F5;
	--font: 'skoda', tahoma, sans-serif;
}
* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
	-webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	outline: none !important;
}
*:before,
*:after {
	box-sizing: border-box;
}
html {
	display: flex;
}
body {
	font-family: var(--font);
	font-size: 20px;
	font-weight: 400;
	color: var(--charcoal-color);
	background-color: #FFFFFF;
	line-height: 1.2em;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	height: 100%;
	margin: 0;
}
main {
	flex: 1 1 auto;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
}
a {
	text-decoration: none;
	color: inherit;
	transition: color 750ms ease;
}
h1 {
	font-weight: 900;
	font-size: 70px;
	line-height: 1.2em;
}
strong {
	font-weight: 900;
	color: var(--green-color);
}

.footer {
	flex-shrink: 0;
	/* padding-bottom: 70px; */
	position: relative;
	background: var(--dark-cyan-color);
}
.container {
	width: 100%;
	max-width: 1430px;
	padding-right: 15px;
	padding-left: 15px;
	margin-left: auto;
	margin-right: auto;
}
.container .big {
	max-width: 1455px;
}
.container.small {
	max-width: 1320px;
}

.btn {
	cursor: pointer;
	border: none;
}
.btn {
	padding: 14px 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	color: #ffffff;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3em;
	text-decoration: none;
	transition: all .2s ease-in-out;
}
.btn:hover { transform: scale(1.1); }

.btn.black {
	background: #000000;
}
.btn.blue {
	background: var(--blue-color);
}
.btn.green {
	background: var(--green-color);
}
.btn.dark-green {
	background: var(--dark-green-color);
}

.btn svg {
	margin-left: 10px;
}
.ico {
	display: inline-block;
	font-size: inherit;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
	vertical-align: middle;
}
.img-responsive {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
}

.ico.logo-skoda {
	width: 169px;
	height: 24px;
}
.ico.logo-jorro-import {
	width: 140px;
	height: 26px;
}
.jorro-title {
	font-family: 'skoda', var(--font);
	font-size: 28px;
	color: #1D1D1B;
	margin: 0;
}
/* Grid Columns */
.grid-col-12 {
	grid-template-columns: repeat(12, 1fr);
}
.col-12 {
	grid-column: 12 span;
}
.col-10 {
	grid-column: 10 span;
}
.col-8 {
	grid-column: 8 span;
}
.col-6 {
	grid-column: 6 span;
}
.col-4 {
	grid-column: 4 span;
}
.col-3 {
	grid-column: 3 span;
}
.col-2 {
	grid-column: 2 span;
}

@media (max-width: 1156px) {
	.col-pad-12 {
		grid-column: 12 span;
	}
	.col-pad-10 {
		grid-column: 10 span;
	}
	.col-pad-8 {
		grid-column: 8 span;
	}
	.col-pad-6 {
		grid-column: 6 span;
	}
	.col-pad-4 {
		grid-column: 4 span;
	}
	.col-pad-2 {
		grid-column: 2 span;
	}
}
@media (max-width: 872px) {
	.col-12, .col-pad-12 {
		grid-column: 12 span;
	}
	.col-10, .col-pad-10 {
		grid-column: 12 span;
	}
	.col-8, .col-pad-8 {
		grid-column: 12 span;
	}
	.col-6, .col-pad-6 {
		grid-column: 12 span;
	}
	.col-4, .col-pad-4 {
		grid-column: 12 span;
	}
	.col-2, .col-pad-2 {
		grid-column: 12 span;
	}
}

/* Header */
.header {
	color: white;
	position: relative;
	overflow: hidden;
}
.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 25px;
	padding-bottom: 25px;
}
.header-logo {
	display: flex;
	align-items: center;
}
.header-logo .line {
	margin-right: 27px;
	margin-left: 27px;
	border-left: 2px solid var(--green-color);
	height: 44px;
}
.header-logo .ico.logo-skoda {
	color: var(--dark-green-color);
}
.header-logo .ico.logo-jorro-import {
	color: #1D1D1B;
}
.header-locations {
	font-family: var(--font);
	font-weight: 300;
	color: var(--dark-green-color);
	font-size: 22px;
	line-height: 26px;
}
.header-locations strong {
	font-weight: 900;
	color: var(--dark-green-color);
}
@media (max-width: 872px) {
	.header-top {
		flex-direction: column;
	}
	.header-locations {
		margin-top: 15px;
		text-align: center;
	}
}
@media (max-width: 446px) {
	.header-logo {
		flex-direction: column;
	}
	.header-logo .line {
		margin-top: 10px;
		margin-bottom: 10px;
		border-top: 2px solid var(--green-color);
		width: 100%;
		height: 2px;
	}
	.header-locations {
		font-size: 18px;
		line-height: 22px;
	}
}
.banner {
	background-image:
		linear-gradient(0deg, rgba(13, 113, 88, 0.8), rgba(13, 113, 88, 0.8)),
		url(../img/banner.jpg);
	width: 100%;
	background-size: cover;
	background-position: center center;
	color: white;
	padding-top: 73px;
	padding-bottom: 110px;
	position: relative;
}
.banner::after {
	content: " ";
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	background-image: url(../svg/line_effect_banner.svg);
	background-size: cover;
	background-position: bottom left;
	background-repeat: no-repeat;
	width: 100%;
	height: 76px;
	z-index: 1;
}
.header-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 400;
	font-size: 32px;
	line-height: 1.375em;
}
.header-title h1 {
	margin: 0;
}
.fidelity-name {
	text-transform: capitalize;
}
@media (max-width: 772px) {
	.banner {
		padding-top: 53px;
	}
	.header-title {
		font-size: 26px;

		margin-top: 35px;
		margin-bottom: 55px;
	}
	h1 {
		font-size: 55px;
	}
}
@media (max-width: 664px) {
	.header-title {
		font-size: 18px;
		margin-top: 25px;
		margin-bottom: 25px;
	}
	h1 {
		font-size: 40px;
	}
}
@media (max-width: 385px) {
	.header-title {
		font-size: 14px;
		margin-top: 25px;
		margin-bottom: 25px;
	}
	h1 {
		font-size: 32px;
	}
}

/* Intro */
.intro {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 79px;
	margin-top: 105px;
	text-align: center;
}
.intro h2 {
	font-weight: 300;
	font-size: 36px;
	line-height: 1.2em;
	margin: 0;
}
@media (max-width: 1172px) {
	.intro {
		margin-bottom: 69px;
		margin-top: 76px;
	}
	.intro h2 {
		font-size: 30px;
	}
}
@media (max-width: 664px) {
	.intro {
		margin-bottom: 49px;
		margin-top: 14px;
	}
	.intro h2 {
		font-size: 26px;
	}
}
@media (max-width: 464px) {
	.intro h2 {
		font-size: 20px;
	}
}

/* Mean */
.mean {
	position: relative;
	display: flex;
	margin-bottom: 74px;
}
.mean-txt {
	flex: 0 0 49%;
	padding: 96px 106px;
	background: var(--grey-color);
	font-size: 20px;
	line-height: 1.35em;
	position: relative;
}
.mean-txt p:last-child {
	margin-bottom: 0;
}
.mean-fidelity {
	margin: 0;
}
.mean-thanks {
	font-weight: 400;
	font-size: 30px;
	line-height: 1.2em;
	color: var(--green-color);
	margin-top: 16px;
}
.mean-thanks span {
	color: var(--charcoal-color);
}
.mean-img {
	flex: 0 0 51%;
	display: flex;
	flex-direction: column;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-image: url(../img/what-are.jpg);
}
@media (max-width: 1430px) {
	.mean {
		flex-direction: column;
	}
	.mean-txt {
		width: 100%;
		padding: 65px 55px;
	}
	.mean-img {
		width: 100%;
		height: 320px;
		flex-basis: 320px;
	}
}
@media (max-width: 664px) {
	.mean-txt {
		padding: 50px 35px;
		font-size: 16px;
	}
	.mean-thanks {
		font-size: 22px;
		margin-top: 10px;
	}
}
@media (max-width: 464px) {
	.mean-txt {
		padding: 30px 20px;
		font-size: 14px;
	}
	.mean-thanks {
		font-size: 18px;
	}
}
/* END Mean */

/* Best offers */
.best-offers {
	margin-bottom: 108px;
}
.offer-title {
	color: var(--green-color);
	font-weight: 900;
	font-size: 40px;
	line-height: 1.2em;
}
.offer-subtitle {
	display: block;
	margin-bottom: 14px;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.2em;
	color: var(--charcoal-color);
}
.offer-subtitle strong {
	color: var(--charcoal-color);
}
@media (max-width: 772px) {
	.best-offers-container {
		padding-left: 0px;
		border-left: none;
	}
	.offer-title {
		margin-bottom: 22px;
		font-size: 32px;
	}
}
@media (max-width: 564px) {
	.offer-title {
		font-size: 24px;
	}
}
@media (max-width: 464px) {
	body {
		font-size: 14px;
	}
	.offer-title {
		font-size: 18px;
	}
}
/* END Best offers */

.link-oferta {
	display: block;
	transition: transform .25s;
}
.link-oferta:hover {
	transform: scale3d(1.06,1.06,1.06);
}
.link-oferta img {
	margin: 0 auto;
}

/* Cards */
.cards-group {
	position: relative;
	width: 100%;
	margin-bottom: 124px;
}
.cards-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 51px;
}
.discount-date {
	width: 100%;
	text-align: center;
	margin-top: 22px;
}
.card {
	margin: 0;
	color: #ffffff;
	display: flex;
	flex-direction: column;
}
.card.purple {
	background: var(--purple-color);
	fill: var(--purple-color);
}
.card.purple .card-icon .ico {
	width: 86px;
	height: 66px;
	color: #D16EFF;
}
.card.green {
	background: var(--olive-color);
	fill: var(--olive-color);
}
.card.green .card-icon .ico {
	width: 86px;
	height: 66px;
	color: #C0FF0E;
}
.card.blue {
	background: var(--strong-blue-color);
	fill: var(--strong-blue-color);
}
.card.blue .card-icon .ico {
	width: 86px;
	height: 66px;
	color: #7ED0FF;
}
.card-top {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	padding: 31px 30px 50px;
}
.card-img {
	flex: 1 1 50%;
}
.card-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.card-icon {
	display: flex;
	justify-content: space-between;
}
.card-title {
	margin-top: 30px;
}
.card-discount {
	display: block;
	font-weight: 900;
	font-size: 66px;
	line-height: 1.1em;
}
.card-subtitle {
	display: block;
	font-weight: 700;
	font-size: 40px;
	line-height: 1em;
}
.card-description {
	display: block;
	font-weight: 400;
	font-size: 28px;
	line-height: 1.1em;
}
.card-clarification {
	display: block;
	font-weight: 400;
	font-size: 28px;
	line-height: 1.36em;
}
.card-bot {
	display: flex;
	width: 100%;
	position: relative;
	background: var(--grey-color);
	padding: 25px 30px 34px;
}
.cards-group .card-bot::before {
	content: " ";
	display: block;
	position: absolute;
	left: 0;
	top: -14px;
	background-image: url(../svg/line_effect_cards.svg);
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 15px;
	z-index: 1;
}
.card-bot h3 {
	margin: 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.1em;
	color: var(--green-color);
}
.card-bot h4 {
	margin: 0;
	margin-bottom: 12px;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.1em;
	color: var(--green-color);
}
.card-bot a.card-tel {
	display: block;
	margin-bottom: 12px;
	font-weight: 900;
	font-size: 20px;
	line-height: 24px;
	color: var(--charcoal-color);
}
.card-bot a.card-tel:hover {
	color: var(--green-color);
}
.card-bot a.card-direction {
	display: block;
	font-size: 18px;
	line-height: 24px;
	color: #0D73F0;
	text-decoration-line: underline;
}
.card-bot a.card-direction:hover {
	text-decoration-line: none;
}
@media (max-width: 1320px) {
	.cards-container {
		gap: 25px;
	}
}
@media (max-width: 859px) {
	.cards-group {
		margin-bottom: 104px;
	}
}
@media (max-width: 424px) {
	.card-mid {
		margin-bottom: 5px;
	}
	.card-percent {
		font-size: 40px;
	}
	.card-title {
		font-size: 30px;
	}
	.card-subtitle {
		font-size: 20px;
	}
	.ico.car {
		font-size: 50px;
	}
	.ico.wheel {
		font-size: 38px;
	}
	.ico.oil {
		font-size: 41px;
	}
}
/* END Cards */

/* Other brand */
.more-fidelity {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 74px;
}
.more-fidelity:nth-child(2n + 2) {
	flex-direction: row-reverse;
}
.more-fidelity-img {
	flex: 0 0 451px;
	height: 340px;
	display: flex;
	flex-direction: column;
}
.more-fidelity-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.more-fidelity-txt {
	flex: 0 1 100%;
	padding: 90px 148px;
	background: var(--grey-color);
	font-size: 20px;
	line-height: 1.35em;
	position: relative;
}
.more-fidelity:nth-child(2n + 2) .more-fidelity-txt {
	padding-top: 82px;
}
.more-fidelity-txt p:last-child {
	margin-bottom: 0;
}
.more-fidelity-title {
	margin: 0;
	color: var(--green-color);
	font-weight: 900;
	font-size: 30px;
	line-height: 36px;
}
.more-fidelity-desc {
	font-size: 20px;
	line-height: 24px;
	color: var(--charcoal-color);
	margin-top: 16px;
}
.more-fidelity-btn {
	display: flex;
}
@media (max-width: 1430px) {
	.more-fidelity {
		flex-direction: column;
	}
	.more-fidelity:nth-child(2n + 2) {
		flex-direction: column;
	}
	.more-fidelity-txt {
		width: 100%;
		padding: 65px 55px;
	}
	.more-fidelity-img {
		width: 100%;
	}
}
/* END Other brand */

/* Locations */
.locations {
	margin-bottom: 115px;
}
.locations .cards-container {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}
.locations .card {
	height: auto;
	background: var(--grey-color);
}
.locations .card::before {
	content: "";
	border-top: 14px solid var(--green-color);
	width: 100%;
}
.locations .card-img {
	flex: 0 1 auto;
}
.locations .card-bot {
	flex-direction: column;
	flex: 0 1 41%;
}
.locations .card-bot h3 {
	color: var(--green-color);
}
.locations .card-bot span {
	color: var(--charcoal-color);
}
.locations-title {
	color: var(--green-color);
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2em;
	margin: 0 0 30px 0;
}
/* END Locations */

/* Mounth Offer */
.mounth-offer {
	margin-bottom: 146px;
}
.mounth-offer p {
	margin: 0;
}
.mounth-offer strong {
	color: var(--charcoal-color);
}
@media (max-width: 764px) {
	body {
		font-size: 16px;
	}
	.mounth-offer {
		margin-bottom: 96px;
	}
}
@media (max-width: 564px) {
	body {
		font-size: 14px;
	}
	.mounth-offer {
		margin-bottom: 56px;
	}
}

/* Form */
.contact-section {
	position: relative;
	width: 100%;
	background: var(--dark-green-color);
	color: #ffffff;
	padding: 44px 0px 66px;
}
.contact-section::after {
	content: " ";
	display: block;
	position: absolute;
	left: -1px;
	top: -84px;
	background-image: url(../svg/line_effect_contact.svg);
	background-size: 100%;
	background-position: bottom center;
	background-repeat: no-repeat;
	width: 101%;
	height: 86px;
	z-index: 1;
}
.contact-section strong {
	color: #ffffff;
}
.contact-text {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.37em;
	margin-bottom: 38px;
}
.contact-form {
	width: 100%;
	display: grid;
	gap: 20px;
}
.contact-form-column {
	position: relative;
}
.contact-form-input {
	width: 100%;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.375em;
	padding: 22px 18px 14px 18px;
	color: #000;
	border: 1px solid #cacacd;
	border-radius: 6px;
}
.contact-form-input:focus ~ .contact-form-label,
.contact-form-input:not(:placeholder-shown) ~ .contact-form-label  {
	top: 4px;
	left: 20px;
	font-size: 11px;
	color: var(--charcoal-color);
	opacity: 1;
}
.contact-form-label {
	position: absolute;
	pointer-events: none;
	left: 20px;
	top: 16px;
	color: #000000;
	transition: 0.2s ease all;
}
.has-success .contact-form-input {
	border: 1px solid #168b3f;
	outline: 1px solid #168b3f;
}
.has-danger .contact-form-input {
	border: 1px solid #dc1d34;
	outline: 1px solid #dc1d34;
}
.form-group .text-help {
	color: #dc1d34;
}
.contact-form-column .pristine-error {
	display: block;
	position: absolute;
	top: 19px;
	right: 15px;
}
.contact-form-end .pristine-error {
	position: absolute;
	left: -15px;
	top: 15px;
}
.contact-form-input:focus {
	border: 1px solid var(--blue-color);
	outline: 1px solid var(--blue-color);
}
.contact-form-textarea {
	height: 205px;
	resize: none;
}
.contact-form-end {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
.contact-form-info {
	font-size: 13px;
	line-height: 1.385em;
}
.contact-form-info ul {
	list-style: none;
	margin-block-start: 0px;
	margin-block-end: 23px;
	padding-inline-start: 0px;
}
.contact-form-info strong {
	font-weight: 700;
}
.contact-form-captcha {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
}
.contact-form-privacity {
	display: flex;
	align-items: center;
	margin-right: 15px;
	position: relative;
}
input#privacity {
	width: 27px;
	height: 27px;
	margin-right: 8px;
	border-radius: 3px;
}
input#privacity:hover {
	cursor: pointer;
}
.contact-form-privacity-label {
	font-size: 13px;
	line-height: 1.385em;
}
.contact-form-privacity-label:hover {
	cursor: pointer;
}
.contact-form a {
	font-weight: 700;
}
.contact-form a:hover {
	color: var(--green-color);
}
.contact-form-btn-submit {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.375em;
}
.form-end {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
@media (max-width: 564px) {
	.contact-section {
		padding: 41px 0px 51px;
	}
	.contact-text {
		margin-bottom: 37px;
	}
	.contact-form-privacity {
		margin-right: 0px;
		margin-bottom: 25px;
	}
	.contact-form-privacity .pristine-error {
		top: 8px;
	}
	.form-end {
		flex-direction: column;
	}
	.form-end .btn {
		margin: 0 auto;
	}
}

/* Legal */
.legal-info {
	width: 100%;
	background-color: var(--dark-green-color);
	padding: 18px 0;
	border-top: 1px solid var(--green-color);
}
.legal-info-menu {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
}
.legal-info-menu li {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	color: #fff;
}
.legal-info-menu li + li::before {
	content: " - ";
}
.legal-info-menu li a {
	text-decoration: underline;
}
/* Footer */
.footer {
	padding: 35px 0px;
}
.footer-container {
	display: flex;
	justify-content: space-between;
}
.footer-logo {
	display: flex;
	align-items: center;
}
.footer-logo .line {
	margin-right: 27px;
	margin-left: 27px;
	border-left: 2px solid var(--green-color);
	height: 44px;
}
.footer-logo .ico.logo-skoda {
	color: #ffffff;
}
.footer-logo .jorro-title {
	color: #ffffff;
}
.footer-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: #FFFFFF;
	font-size: 18px;
	line-height: 22px;
}
.footer-row.whatsapp {
	margin-top: 12px;
	justify-content: flex-start;
}
.footer-row svg {
	margin-right: 12px;
	font-size: 26px;
	color: var(--green-color);
}
.footer-row strong {
	color: #FFFFFF;
}
.footer-row a:hover {
	color: var(--green-color);
}
.footer-tel:not(:last-child)::after {
	content: " ";
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid var(--green-color);
}

@media (max-width: 1430px) {
	.footer-container {
		height: auto;
	}
	.footer-container {
		flex-direction: column;
	}
	.footer-logo {
		align-self: center;
	}
	.footer-row {
		position: relative;
		flex-direction: column;
		align-items: baseline;
		margin-top: 30px;
		padding-top: 30px;
		border-top: 1px solid #fff;
	}
	.footer-row.whatsapp {
		border: none;
		margin-top: 0;
	}
	.footer-info-item {
		width: 100%;
		position: relative;
	}
	.footer-icon {
		margin: 0px auto;
	}
	.footer-tel:not(:last-child)::after {
		content: " ";
		display: none;
	}
	.footer-tel {
		margin: 12px auto 0px;
	}
}

/* Modal */
.modal-info {
	display: contents;
}
.modal {
	display: none;
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.7);
	align-items: center;
}
.modal.modal-open {
	overflow: auto;
}
.modal-content {
	background-color: var(--grey-color);
	margin: 15% auto;
	padding: 20px 40px;
	border: 1px solid #888;
	border-radius: 15px;
	max-width: 90%;
}
.modal-body {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.modal-text p {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--charcoal-color);
}
.modal-text p svg {
	margin-right: 5px;
}
.modal-accept {
	display: flex;
}
/* End Modal */
/* Loader Spinner */
.loader-spinner {
	display: none;
	position: relative;
	width: 80px;
	height: 80px;
}
.loader-spinner div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #fff;
	border-radius: 50%;
	animation: loader-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #fff transparent transparent transparent;
}
.loader-spinner div:nth-child(1) {
	animation-delay: -0.45s;
}
.loader-spinner div:nth-child(2) {
	animation-delay: -0.3s;
}
.loader-spinner div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes loader-spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}