/*
--- FONTS
*/

@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap");

/*
--- RESET
*/

@import url("../css/reset.css");

/*
--- VARIABLES
*/

:root {
	--primary-color: #fe6010;
	--primary-color-foreground: #ffffff;
	--background-color: #000;
	--background-color-foreground: #dadada;
	--card-color: #23252b;
	--card-color-foreground: #dadada;
	--contrast-color: white;
}

/*
---
*/

html {
	font-size: 12px;
}

html,
body {
	height: 100%;
}

body {
	background-color: var(--background-color);
	color: var(--background-color-foreground);
}

body,
button,
input,
select {
	font-family: "Source Sans Pro", sans-serif;
	letter-spacing: 0.9px;
}

/*
--- Container
*/

.page-aligner-1 {
	padding: 100px 0 40px 0;
}

body.has-retailer-brand .page-aligner-1 {
	padding: 130px 0 40px 0;
}

.page-aligner-2 {
	padding: 0 0 40px 0;
}

@media only screen and (max-width: 780px) {
	.page-aligner-1 {
		padding: 80px 0 24px 0;
	}

	body.has-retailer-brand .page-aligner-1 {
		padding: 110px 0 24px 0;
	}

	.page-aligner-2 {
		padding: 0 0 24px 0;
	}
}

/*
--- Banner top
*/

.banner-top {
	margin-bottom: 20px;
}

.banner-top img {
	max-width: 100%;
}

/*
--- Header
*/

.main-header {
	width: 100%;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	background-color: color-mix(in srgb, var(--background-color) 80%, transparent);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.main-header::after {
	content: "";
	width: 100%;
	height: 2px;
	background: linear-gradient(70deg,
			var(--background-color) 30%,
			var(--primary-color) 100%);
	display: block;
}

.main-header .exchange-rate {
	background-color: #000;
	padding: 5px 30px;
	font-size: 13px;
}

.main-header .exchange-rate i {
	margin-right: 5px;
}

.main-header .align {
	max-width: 1500px;
	height: 100%;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.main-header .logo {
	padding: 10px 0;
}

.main-header .logo a {
	line-height: 0;
	display: block;
}

.main-header .logo img {
	max-width: 140px;
	max-height: 50px;
}

.main-header button {
	display: none;
	border: 1px solid #9c9c9c;
	border-radius: 3px;
	background-color: none;
	color: #fff;
	font-weight: bold;
	font-size: 11px;
	padding: 4px 10px;
	cursor: pointer;
}

.main-header nav ul {
	list-style: none;
	display: flex;
	align-items: center;
}

.main-header nav li {
	margin: 0 24px;
	position: relative;
}

.main-header nav li a {
	display: block;
}

.main-header nav li.link {
	padding: 0 0;
}

.main-header nav li.link>a {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	color: #d4d4d4;
	padding: 7px 9px;
	border-radius: 4px;
	display: block;
}

.main-header nav li.link .fa {
	font-size: 25px;
}

.main-header nav li.link>a:hover {
	background-color: var(--primary-color);
	color: var(--primary-color-foreground);
}

.main-header nav li.logo-nav {
	display: flex;
	margin: 0 5px;
}

.main-header nav li.logo-nav>a {
	line-height: 0;
}

.main-header nav li.logo-nav img {
	max-width: 140px;
	max-height: 50px;
}

@media only screen and (max-width: 1261px) {
	.main-header nav li {
		margin: 5px 10px;
	}

	.main-header nav li.logo-nav {
		margin: 20px 10px;
	}
}

.main-header nav li .sub-links {
	padding: 0 60px;
	position: absolute;
	top: 44px;
	left: -150px;
	width: 350px;
	border-radius: 3px;
	display: none;
	z-index: 10;
}

@media only screen and (max-width: 1260px) {
	.main-header nav li .sub-links {
		padding: 0;
		position: relative;
		top: initial;
		left: initial;
		width: 400px;
		border: 2px solid #ccc;
	}
}

.main-header nav li .sub-links>div {
	padding: 5px 0;
	background-color: #23252b;
	border-radius: 2px;
}

.main-header nav li .sub-links a {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	color: #ffffff;
	padding: 10px 15px;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-header nav li .sub-links a:hover {
	color: var(--primary-color);
}

.main-header nav li .sub-links a i {
	font-size: 16px !important;
}

.main-header nav li .sub-links .sub {
	display: none;
}

.main-header nav li .sub-links .sub a {
	justify-content: start;
	gap: 6px;
}

.main-header nav li .sub-links .sub a i {
	font-size: 12px !important;
	top: 1px;
	position: relative;
}

.main-header .retailer-brand {
	display: none;
	background-color: #f7e90f;
	color: #000;
	text-transform: uppercase;
	font-size: 17px;
	text-align: center;
	padding: 5px 5px;
	font-weight: bold;
}

body.has-retailer-brand .main-header .retailer-brand {
	display: block;
}

@media only screen and (max-width: 1260px) {
	.main-header .align {
		padding: 0 20px;
	}

	.main-header .logo img {
		max-width: 195px;
	}

	.main-header button {
		display: block;
	}

	.main-header nav {
		display: none;
		width: 100%;
		text-align: center;
		border-top: 1px solid #494949;
		margin-top: 15px;
		padding-top: 15px;
	}

	.main-header nav ul {
		flex-direction: column;
	}

	.main-header nav.menu-opened {
		background-color: rgba(0, 0, 0, 0.84);
		display: block;
		max-height: 100vh;
		overflow: scroll;
		padding-bottom: 40px;
	}
}

@media only screen and (max-width: 799px) {
	.main-header .logo img {
		max-height: 25px;
	}

	.main-header .retailer-brand {
		font-size: 14px;
	}
}

/*
--- Footer
*/

.main-footer {
	padding: 20px 15px;
	border-top: 1px solid color-mix(in srgb, var(--background-color) 90%, var(--contrast-color));
	;
}

.main-footer .social {
	list-style: none;
	text-align: center;
	border-bottom: 1px solid color-mix(in srgb, var(--background-color) 90%, var(--contrast-color));
	padding: 0 0 20px 0;
	display: flex;
	justify-content: center;
}

.main-footer .social li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 20px;
	border: 4px solid var(--primary-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
}

.main-footer .social li a {
	line-height: 0;
	font-size: 45px;
	color: #fff;
}

.main-footer .logo {
	text-align: center;
	margin: 15px 0 20px 0;
}

.main-footer .logo img {
	max-width: 180px;
	max-height: 110px;
}

.main-footer .infos {
	text-align: center;
	font-size: 14px;
	margin-top: 30px;
}

.main-footer .links {
	margin-top: 35px;
	text-align: center;
}

.main-footer .links ul {
	display: flex;
	justify-content: space-around;
	list-style: none;
}

.main-footer .links li {
	padding: 0 25px;
	flex: 1;
}

.main-footer .links li h3 {
	font-size: 14px;
	color: var(--background-color-foreground);
	margin-bottom: 20px;
	text-decoration: underline;
}

.main-footer .links li h3 a {
	color: var(--background-color-foreground);
}

.main-footer .links li .imgs {
	text-align: center;
}

.main-footer .links li .imgs img {
	max-width: 100px;
	max-height: 60px;
	vertical-align: middle;
}

.main-footer .copyright {
	text-align: center;
	font-size: 15px;
	padding-top: 20px;
}

@media only screen and (max-width: 799px) {
	.main-footer .social img {
		max-width: 50px;
	}

	.main-footer .links ul {
		flex-direction: column;
	}

	.main-footer .links li {
		padding: 5px ​25px;
	}

	.main-footer .copyright {
		font-size: 9px;
	}
}

/*
--- Button
*/

.btnd {
	background-color: #a5a5a5;
	color: #2e2e2e;
	font-weight: bold;
	font-size: 13px;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	padding: 10px 25px;
	text-align: center;
	cursor: pointer;
	text-transform: uppercase;
}

.btnd:hover {
	background-color: #6b6b6b;
}

.btnd.btnd-primary {
	background-color: var(--primary-color);
	color: var(--primary-color-foreground);
}

.btnd.btnd-secondary {
	background-color: #555555;
	color: #fff;
}

/*
--- Form Style
*/

.form-style .form-group {
	margin-bottom: 15px;
}

.form-style .form-group:last-child {
	margin-bottom: 0;
}

.form-style .form-groups {
	margin-bottom: 15px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-flow: row;
	-moz-flex-flow: row;
	-ms-flex-flow: row;
	-o-flex-flow: row;
	flex-flow: row;
}

.form-style .form-groups:last-child {
	margin-bottom: 0;
}

.form-style .form-groups .form-group {
	margin-bottom: 0;
	-webkit-flex: 1 1 auto;
	-moz-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	-o-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 0 5px;
}

.form-style .form-groups .form-group:first-child {
	padding-left: 0;
}

.form-style .form-groups .form-group:last-child {
	padding-right: 0;
}

.form-style .form-group input,
.form-style .form-group select,
.form-style .form-group textarea {
	width: 100%;
	background-color: color-mix(in srgb, var(--background-color) 90%, var(--contrast-color));
	border: 3px solid color-mix(in srgb, var(--background-color) 80%, var(--contrast-color));
	color: color-mix(in srgb, var(--background-color-foreground) 95%, var(--contrast-color));
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 2px;
	padding: 10px 20px;
	border-radius: 2px;
}

.form-style .form-group input::placeholder,
.form-style .form-group textarea::placeholder {
	color: color-mix(in srgb, var(--background-color-foreground) 60%, transparent);
}

.form-style .form-tip {
	font-size: 12px;
	padding: 7px 20px;
	background-color: #223c54;
	color: #fff;
}

.form-style ::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #999999;
}

.form-style :-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #999999;
	opacity: 1;
}

.form-style ::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #999999;
	opacity: 1;
}

.form-style :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #999999;
}

.form-style .form-group .error-message {
	font-size: 13px;
	color: #f34242;
	padding: 6px 6px 0 6px;
}

.form-style .form-group .link {
	padding-left: 5px;
	font-size: 13px;
	color: inherit;
	text-decoration: none;
}

.form-style .form-group .link:hover {
	text-decoration: underline;
}

.form-style hr {
	border-color: color-mix(in srgb, var(--background-color) 20%, transparent);
	margin: 15px 5px;
}

.form-style label {
	width: 100%;
	display: block;
	font-family: "Source Sans Pro", sans-serif;
	font-weight: bold;
	font-size: 15px;
	padding: 5px 0;
}

.form-style label a {
	color: var(--primary-color);
}

.form-style .form-tt {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #2b2b2b;
}

.form-style .form-tt:last-child {
	border-bottom: none;
}

.form-style .form-tt input {
	width: auto;
	margin-right: 8px;
}

@media only screen and (max-width: 600px) {
	.form-style .form-groups {
		display: block;
	}

	.form-style .form-groups .form-group {
		padding: 0;
		margin-bottom: 15px;
	}
}

/*
--- DIVIDER
*/

.divider {
	border-color: #555;
}

/*
--- NOTIFICATION
*/

.notification {
	background-color: #ccc;
	padding: 8px 18px;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #171717;
}

.notification.green {
	background-color: #468642;
	color: #fff;
}

.notification.orange {
	background-color: #d2892f;
	color: #fff;
}

.notification.red {
	background-color: #d22f2f;
	color: #fff;
}

/*
--- NOTIFICATION ALERT
*/

.notification-alert {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.81);
	z-index: 10001;
}

.notification-alert.active {
	display: block;
}

.notification-alert .nt-box {
	position: fixed;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 100%;
	width: 400px;
}

.notification-alert .btn-close {
	padding-bottom: 15px;
	text-align: center;
}

.notification-alert .btn-close button {
	border: none;
	background-image: url(../img/icons/icon-close-1.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: transparent;
	width: 48px;
	height: 48px;
	cursor: pointer;
}

.notification-alert .nt-message {
	background-color: #191b20;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1px;
	text-align: center;
	color: #fff;
	padding: 30px;
	border-radius: 3px;
}

/*
--- MAIN LOADING
*/

.main-loading {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.81);
	z-index: 10001;
}

.main-loading.active {
	display: block;
}

.main-loading img {
	position: fixed;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/*
--- MESSAGE BOX
*/

.message-box {
	background-color: var(--card-color);
	color: var(--card-color-foreground);
	border: 1px solid color-mix(in srgb, var(--card-color) 82%, var(--contrast-color));
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 16px color-mix(in srgb, var(--contrast-color) 7%, transparent);
	padding: 25px 15px;
}

.message-box .align {
	max-width: 500px;
	height: 100%;
	margin: 0 auto;
}

.message-box .icon-e {
	text-align: center;
}

.message-box .icon-e i {
	font-size: 45px;
}

.message-box .title-e {
	text-align: center;
	text-transform: uppercase;
	font-size: 19px;
	letter-spacing: 2px;
	padding: 20px 0;
}

.message-box .desc-e {
	font-size: 15px;
	text-align: center;
	padding: 0 0 20px 0;
}

.message-box .link-home {
	text-align: center;
	padding: 13px 0;
}

.message-box .link-home a {
	background-color: var(--primary-color);
	color: var(--primary-color-foreground);
	border-radius: 30px;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	text-align: center;
	padding: 15px 50px;
	cursor: pointer;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 100%;
}

/*
--- TITLE SECTION
*/

.title-section {
	padding: 8px 30px 35px 30px;
	color: var(--background-color-foreground);
	text-align: center;
	text-transform: uppercase;
	font-size: 25px;
	letter-spacing: 2px;
}

.title-section strong {
	color: var(--background-color-foreground);
}

.title-section span {
	display: block;
	font-size: 12px;
	color: var(--background-color-foreground);
}

@media only screen and (max-width: 760px) {
	.title-section {
		font-size: 20px;
	}
}

/*
--- TABLE STYLE
*/

.table-style {
	width: 100%;
	font-size: 13px;
	border-width: 1px;
	border-color: #666666;
	border-collapse: collapse;
}

.table-style th {
	border-width: 1px;
	padding: 8px;
	border-style: solid;
	border-color: #272a31;
	background-color: #272a31;
	color: #b9b9b9;
}

.table-style td {
	border-width: 1px;
	padding: 8px;
	border-style: solid;
	border-color: #3c3f44;
	background-color: #3c3f44;
	color: #ccc;
}

.table-style td .subinfo {
	display: block;
	margin-top: 4px;
	font-size: 11px;
	color: #afafaf;
}

.table-style td a {
	color: var(--primary-color);
}

@media only screen and (max-width: 760px) {
	.table-style.responsive thead {
		display: none;
	}

	.table-style.responsive tbody tr {
		display: flex;
		flex-direction: column;
		margin-bottom: 26px;
	}

	.table-style.responsive tbody td {
		border-bottom: 1px solid #636363;
	}

	.table-style.responsive tbody td:last-child {
		border-bottom: none;
	}
}

/*
--- PAGINATION
*/

.pagination {
	padding: 15px 0 0 0;
}

.pagination ul {
	list-style: none;
	padding: 10px 0;
}

.pagination ul li {
	display: inline;
}

.pagination ul li a {
	font-size: 12px;
	color: #cecece;
	text-decoration: none;
	padding: 8px 13px;
	margin-right: 6px;
	border-radius: 3px;
	background-color: #1b1d23;
}

.pagination ul li.active a {
	font-weight: bold;
	color: var(--primary-color);
}

.pagination ul li.disabled a {
	color: #4e4747;
	cursor: default;
}

/*
--- Text group
*/

.text-group {
	max-width: 830px;
	margin: 0 auto;
	padding: 0 15px;
	color: var(--background-color-foreground);
	font-size: 16px;
	text-align: justify;
}

.text-group strong {
	color: #ece9e9;
}

.text-group.justify {
	text-align: justify;
}

.text-group p {
	margin-bottom: 10px;
}

.text-group p:last-child {
	margin-bottom: 0;
}

.text-group a {
	color: var(--primary-color);
}

.text-group ul {
	padding: 0 0 0 25px;
}

.text-group ul a {
	line-break: anywhere;
}

/*
--- Selector radios
*/

.selector-radios {
	margin-top: 32px;
	padding: 32px 8px;
	background-color: #23252b;
	display: flex;
	justify-content: center;
}

.selector-radios .block {
	max-width: 390px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.selector-radios label {
	background-color: #ececec;
	padding: 10px 15px;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	text-transform: uppercase;
	color: #000;
}

.selector-radios label:not(:last-child) {
	margin-bottom: 8px;
}

.selector-radios label input[type="radio"] {
	margin: 0 8px 4px 0;
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

.selector-radios label .high {
	font-size: 13px;
	font-weight: bold;
	color: var(--primary-color);
}

.selector-radios label .more-info {
	text-transform: initial;
	font-size: 14px;
	text-align: justify;
	border-top: 1px dashed #969696;
	margin-top: 7px;
	padding-top: 7px;
}

/*
--- Action buttons
*/

.action-btns {
	margin-top: 32px;
	text-align: center;
}

.action-btns a {
	margin: 0 16px;
}

/*
--- COUNTRY SELECTOR
*/

.country-selector {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.81);
	z-index: 10001;
}

.country-selector.active {
	display: block;
}

.country-selector .btn-close {
	padding-bottom: 15px;
	text-align: center;
}

.country-selector .btn-close button {
	border: none;
	background-image: url(../img/icons/icon-close-1.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: transparent;
	width: 48px;
	height: 48px;
	cursor: pointer;
}

.country-selector .nt-box {
	position: fixed;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 100%;
	width: 400px;
}

.country-selector .nt-content {
	background-color: #191b20;
	padding: 20px;
}

.country-selector .nt-title {
	font-size: 16px;
	letter-spacing: 1px;
	text-align: center;
	color: #fff;
	border-radius: 3px;
	margin-bottom: 15px;
}

.country-selector .form-style .form-group select {
	font-size: 15px;
}

/*
--- COOKIE WARNING
*/

.cookie-warning {
	position: fixed;
	left: 20px;
	bottom: 20px;
	width: 300px;
	font-size: 12px;
	padding: 15px;
	background-color: rgb(255 255 255 / 85%);
	border-radius: 10px;
	color: #000;
}

.cookie-warning p {
	margin-bottom: 10px;
}

.cookie-warning p:last-child {
	margin-bottom: 0;
}

.cookie-warning button {
	font-size: 13px;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	background-color: var(--primary-color);
	color: var(--primary-color-foreground);
	padding: 6px 15px;
	cursor: pointer;
}

.cookie-warning button:hover {
	background-color: #383838;
}

/* Intl Tel Input */

.iti {
	width: 100%;
	color: #000;
}