@charset "UTF-8";

/* CSS reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer,
header, hgroup, main, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
abbr, acronym {
	border: 0;
}
iframe::-webkit-scrollbar {
	display: none;
}
html {
  scroll-behavior: smooth;
}


/* General styles */ 

body {
	font-family: "Gilroy", Arial, san-serif;
	font-size: 100%;
	line-height: 1.25;
	color: #161717;
	background: #fff;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
/*	max-width: 100%;
	height: auto;*/
}
img.inline {
	vertical-align: middle;
}
h1, h2, h3, h4 {
	font-family: "Gilroy", Arial, san-serif;
	font-weight: 600;
	margin-bottom: .5em;
}
h1 {
	font-size: 3.75em;
}
h1 span {
	display: block;
}
h2 {
	font-size: 3.75em;
}
h3 {
	font-size: 2.5em;
}
h4 {
	font-size: 1.375em;
}
p {
	margin-bottom: 10px;
}
p.small {
  font-size: .85em;
  margin-top: 10px;
	margin-bottom: 35px;
}
span.small {
  font-size: .5em;
  font-weight: normal;
}
table p {
  margin-bottom: 0;
}
th, td {
  padding: 8px;
  text-align: center;
  font-size: .95em;
}
strong, b {
  font-weight: bold;
}
ul {
	margin-bottom: 20px;
}
ul li {
	position: relative;
	padding: 8px 0 8px 25px;
}
[dir=rtl] ul li {
	padding: 8px 25px 0 8px;
}
ul li::before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-right: 5px;
	background: url(../images/bullet.svg) center center / contain no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	top: 10px;
}

/* Brand styles */

.btn {
	display: inline-block;
	width: 100%;
	padding: 16px 42px;
	color: #fff;
	background: #13121B;
	/* background: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%);  red */
	/* background: linear-gradient(300deg, #09C6F9 17.81%, #045DE9 81.86%);  blue */
	font-size: 1.125em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	transition: all .3s;
	box-sizing: border-box;
	border-radius: 8px;
	margin: 30px 0 0;
}
@media (min-width: 581px) {
	.btn {
		width: fit-content;
	}
}
.btn:hover {
	opacity: .9;
}
.btn-small {
	margin-top: 0;
	margin-bottom: 10px;
	padding: 9px 15px;
	background: linear-gradient(300deg, #ff6770 17.81%, #ff4b55 81.86%);
	min-width: 150px;
	font-size: 1.125em;
}
.btn-small:hover {
	background: #13121b;
}
.markets-logo {
	display: inline-block;
}
.logo-x { 
	width: 200px;
	display: block;
}


/* Embedded video */

.video-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin-bottom: 0;
	margin-top: 40px;
}
.video-container iframe {
	width: 50%;
	height: 230px;
}


/* Layout styles */

section {
	padding: 20px 0;
}

.container {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 20px 0;
}
.container.narrow {
	max-width: 1150px;
}

.container > div {
	box-sizing: border-box;
	width: 100%;
}
.col-2, .col-3, .col-4 {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.col-2 > div, .col-3 > div, .col-4 > div {
	box-sizing: border-box;
}
 
@media (min-width: 1181px) {
  .col-2 > div {
    width: 50%;
  }
  .col-2 > div.wide {
    width: auto;
		flex-grow: 1;
  }
  .col-2 > div.narrow {
    width: auto;
  }
  .col-3 > div {
    width: 32%;
  }
  .col-4 > div {
    width: 23.141%;
  }
  .hidden-lg {
    display: none;
  }
}

@media (min-width: 581px) and (max-width: 1180px) {
  .col-2 > div {
    width: 100%;
  }
  .col-3 > div {
    width: 32%;
  }
  .col-4 > div {
    width: 49%;
  }	
  .hidden-sm {
    display: none;
  }
}

@media (max-width: 580px) {
  .col-2 > div {
    width: 100%;
  }
  .col-3 > div {
    width: 100%;
  }
  .col-4 > div {
    width: 100%;
  }	
  .hidden-sm {
    display: none;
  }
}



/* Page Styles */

body::after{
	position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
	content:url('../images/progress0.png') url('../images/progress1.png') url('../images/progress2.png') url('../images/progress3.png') url('../images/progress4.png') url('../images/progress5.png') url('../images/progress0-mob.png') url('../images/progress1-mob.png') url('../images/progress2-mob.png') url('../images/progress3-mob.png') url('../images/progress4-mob.png') url('../images/progress5-mob.png');
}

:target {
	scroll-margin-top: 40px;
	scroll-snap-margin-top: 40px;
}

.orange {
	background: linear-gradient(96.8deg, #F4C642 2.33%, #FF7D66 33.48%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.blue {
	background: linear-gradient(321.63deg, #265FE0 24.03%, #57C4F4 84.56%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.large, .larger, .largest {
	font-weight: 600;
}
.large {
	font-size: 1.375em;
}
.larger {
	font-size: 2.5em;
}
.largest {
	font-size: 3.75em;
}
.rw-custom {
	padding-top: 25px !important;
}


@media (max-width: 580px) {
	.largest {
		font-size: 2.5em;
	}
	.rw-custom {
		margin-bottom: 0;
		padding-bottom: 0 !important;
	}
}

.coin-1-container,
.coin-2-container,
.coin-3-container,
.coin-4-container,
.coin-5-container,
.coin-6-container {
	position: absolute;
}
.coin-1-container {
	top: 0;
	left: 35%;
	overflow: hidden;
}
.coin-2-container {
	top: 68px;
	right: 86px;
}
.coin-3-container {
	bottom: 0;
	left: 2%;
	line-height: 0;
}
.coin-4-container {
	bottom: -140px;
	right: -120px;
}
.coin-5-container {
	top: -440px;
	right: -50px;
}
.coin-6-container {
	bottom: -110px;
	right: 28%;
}
.coin {
  animation: float 2s 1s infinite alternate;
}


@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}

.progress-bar { 
	width: 726px !important; 
	height: 32px; 
	margin: 50px auto 40px;
	max-width: 100%;
	background-image: url('../images/progress0.png'); 
	background-repeat: no-repeat; 
	background-size: contain; 
	animation-name: progress-animation;
	animation-iteration-count: infinite;
	animation-duration: 4s !important;
}

@keyframes progress-animation {
	0% { background-image: url('../images/progress0.png'); }
	26% { background-image: url('../images/progress0.png'); }
	28% { background-image: url('../images/progress1.png'); } 
	32% { background-image: url('../images/progress2.png'); } 
	60% { background-image: url('../images/progress2.png'); } 
	62% { background-image: url('../images/progress3.png'); } 
	66% { background-image: url('../images/progress4.png'); } 
	68% { background-image: url('../images/progress5.png'); } 
	100% { background-image: url('../images/progress5.png'); } 
}

@keyframes progress-animation-mob {
	0% { background-image: url('../images/progress0-mob.png'); }
	26% { background-image: url('../images/progress0-mob.png'); }
	28% { background-image: url('../images/progress1-mob.png'); } 
	32% { background-image: url('../images/progress2-mob.png'); } 
	60% { background-image: url('../images/progress2-mob.png'); } 
	62% { background-image: url('../images/progress3-mob.png'); } 
	66% { background-image: url('../images/progress4-mob.png'); } 
	68% { background-image: url('../images/progress5-mob.png'); } 
	100% { background-image: url('../images/progress5-mob.png'); } 
}

@media (max-width: 580px) {
	.progress-bar { 
		width: 375px !important; 
		height: 40px; 
		animation-name: progress-animation-mob;
	}
}



#page-wrap {
	overflow: hidden;
	position: relative;
}

.top-wrap {
	position: relative;
}

#section-1 {
	background: linear-gradient(95.41deg, #F4C642 2.38%, #FF7D66 96.15%);
	color: #fff;
	border-radius: 0px 0px 48px 48px;
	position: relative;
	overflow: hidden;
}
.pill {
	border: 1px solid #fff;
	border-radius: 35px;
	padding: 8px 30px;
	width: fit-content;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 22px;
}
@media (min-width: 861px) {
	#section-1 {
		padding: 70px 0;
	}
	#section-2 {
		padding-top: 100px;
	}
	#section-1 .btn {
		font-size: 1.375em;
		padding: 21px 83px;
	}
}
@media (min-width: 581px) {
	#section-1 .btn {
		margin-right: 25px;
	}
}
@media (max-width: 860px) {
	.coin-1-container,
	.coin-2-container,
	.coin-3-container {
		display: none;
	}
	.coins-mob {
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: url(../images/coins-mob.png) center bottom / 100% auto no-repeat;
		z-index: 1;
	}
	#section-1 .container {
		position: relative;
		z-index: 2;
	}
}
@media (max-width: 580px) {
	#section-1 {
		text-align: center;
		margin-bottom: 70px;
	}
	#section-1 .btn {
		margin-right: 0;
		margin-bottom: 25px;
	}
}


.hero-phone {
	position: absolute;
	bottom: 0;
	left: calc(50% - 50px);
}

.hero-bag {
	position: absolute;
	left: calc(50% + 70px);
	top: 80px;
}

@media (max-width: 860px) {
	.pill {
		margin-left: auto;
		margin-right: auto;
		font-size: .75em;
	}
	.hero-phone {
		position: relative;
		bottom: -50px;
		left: -20%;
		width: 140%;
		height: auto;
	}
	.hero-bag-container {
		position: absolute;
		top: 470px;
		width: 100%;
		z-index: 5;
	}
	.hero-bag {
		position: absolute;
    left: 5%;
    top: 0;
    width: 93%;
    height: auto;
	}
}

#section-2 {
	text-align: center;
	background: url(../images/a.png) center top no-repeat;
}

.mid-wrap {
	background: url(../images/b.png) 0 300px no-repeat;
}
.bottom-wrap {
	background: url(../images/c.png) right center no-repeat;
}

@media (min-width: 581px) and (max-width: 860px) {
	.coin-4-container,
	.coin-5-container,
	.coin-6-container {
		display: none;
	}
}

@media (max-width: 580px) {
	#section-2 {
		background: url(../images/a-mob.png) center bottom / 100% auto no-repeat;
	}
	.mid-wrap {
		background: url(../images/b.png) 0 calc(50% + 220px) / 135% auto no-repeat;
	}
	.bottom-wrap {
		background: url(../images/c.png) right 70% / 150% auto no-repeat;
	}
	.coin-4-container {
		transform: scale(0.6);
    bottom: -140px;
    right: auto;
    left: -90px;
	}
	.coin-5-container {
		transform: scale(0.6);
		top: -310px;
	}
	.coin-6-container {
		transform: scale(0.6);
		top: 47%;
		right: auto;
		left: -90px;
	}
}

.box {
	padding: 30px;
	border: 1px solid #E6E6EF;
	border-radius: 12px;
	background-color: #fff;
	position: relative;
}
@media (min-width: 1181px) {
	#section-2 .col-4 {
		padding-top: 120px;
	}
	.box:nth-child(2) {
		transform: translateY(-20px);
		z-index: 20;
	}
	.box:nth-child(3) {
		transform: translateY(-40px);
	}
	.box:nth-child(4) {
		transform: translateY(-60px);
	}
}
@media (max-width: 1180px) {
	.box {
		margin-top: 2%;
	}
}
@media (max-width: 580px) {
	.box {
		margin-top: 10px;
		padding: 18px 26px 8px 26px;
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
		animation: none !important;
	}
}


.box p.grey {
	color: #969696;
}
.box hr {
	border: 0 none;
	border-bottom: 1px solid #E6E6EF;
	margin: 20px 0;
}

#section-2 .btn, 
#section-3 .btn, 
#section-5 .btn,
#section-6 .btn {
	margin-left: auto;
	margin-right: auto;
}

#section-3 {
	text-align: center;
}

.steps-img {
	margin: 50px auto 40px;
	max-width: 100%;
	height: auto;
}

#section-3 .col-3 {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 581px) {
	.icon {
		height: 145px;
	}
}
@media (max-width: 580px) {
	.icon img {
		margin-bottom: 10px;
		display: inline-block;
	}
	#section-3 .col-3 > div:not(:last-child) {
		margin-bottom: 30px;
	}
}

#section-4 {
	text-align: center;
}

#section-4 .container {
	background: linear-gradient(95.41deg, #F4C642 2.38%, #FF7D66 96.15%);
	color: #fff;
	border-radius: 32px;
	padding: 40px 5%;
	max-width: 1600px;
	width: 100%;
	position: relative;
}
.coins {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/coins.png) left bottom no-repeat;
	z-index: 1;
}

.calc-container {
	background: rgba(255,255,255,.9);
	backdrop-filter: blur(32px);
	border: 1px solid #E6E6EF;
	border-radius: 24px;
	color: #13121B;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
.deposit-wrap, .award-wrap {
	width: 40%;
}
.slider-wrap {
	width: 100%;
	padding: 30px;
}
.calc-container label {
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
}
.calc-container input {
	background: rgba(255, 255, 255, 0.64);
	border: 1px solid #E6E6EF;
	border-radius: 8px;
	padding: 10px 20px;
	box-sizing: border-box;
	max-width: 100%;
	width: 100%;
	text-align: center;
	font-weight: 600;
	font-family: "Gilroy", Arial, san-serif;
	font-size: 1em;
	height: 38px;
}
.calc-container input:focus {
  background: linear-gradient(white, white) padding-box,
              linear-gradient(96.8deg, #F4C642 2.33%, #FF7D66 33.48%) border-box;
  border: 1px solid transparent;
	outline: none;
}

.award-wrap input {
	background: linear-gradient(321.63deg, #265FE0 24.03%, #57C4F4 84.56%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	position: relative;
	z-index: 20;
}
.award-wrap {
	position: relative;
}
.award-wrap::after {
	content: "";
	display: block;
	width: 100%;
	height: 38px;
	background: rgba(255, 255, 255, 0.64);
	position: absolute;
	bottom: 0;
	z-index: 1;
	border-radius: 8px;
}

.ui-widget {
	font-family: "Gilroy", Arial, san-serif;
}
.ui-slider-horizontal {
	height: 0.5em;
}
.ui-widget-content {
	background: #E6E6EF;
	border: 0 none;
}
.ui-widget-header {
	background: linear-gradient(96.8deg, #F4C642 2.33%, #FF7D66 33.48%);
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	border-radius: 35px;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(96.8deg, #F4C642 2.33%, #FF7D66 33.48%) border-box;
  border-radius: 50em;
  border: 2px solid transparent;
}
.ui-slider .ui-slider-handle {
	line-height: 80px;
	width: 1em;
	height: 1em;
	text-indent: -1em;
}

.min-deposit {
	margin-bottom: 20px;
	margin-top: 0;
	font-size: 1em;
	font-weight: 600;
	width: 100%;
	text-align: initial;
}

@media (min-width: 1181px) {
	#section-4 .container {
		padding: 70px 5% 90px;
	}
	.min-deposit {
		margin-bottom: 0;
		margin-top: 20px;
	}
	.calc-container {
		position: relative;
		padding: 60px 42% 60px 60px;
		margin-top: 125px;
		margin-left: auto;
		margin-right: auto;
		max-width: 1280px;
		z-index: 20;
	}
	.deposit-wrap {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.deposit-wrap label {
		font-size: 2.5em;
	}
	.deposit-wrap label::before {
		content: "";
		display: inline-block;
		width: 31px;
		height: 31px;
		margin-right: 16px;
		background: url(../images/wallet.svg) center center / contain no-repeat;
		border-radius: 50px;
	}
	.deposit-wrap input {
		max-width: 187px;
		font-size: 1.375em;
		padding: 26px;
	}
	.award-wrap {
		position: absolute;
		top: calc(50% - 240px);
		right: 7%;
		width: 320px;
		height: 480px;
		padding: 220px 40px 40px;
		box-sizing: border-box;
		background: #fff url(../images/award-bkgr.png) center center / cover no-repeat;
		border: 1px solid #E6E6EF;
		box-shadow: 0px 4px 240px 16px rgba(0, 0, 0, 0.04);
		border-radius: 24px;
	}
	.award-wrap label {
		font-size: 1.375em;
	}
	.award-wrap input {
		font-size: 3.75em;
		height: 88px;
		width: 238px;
		border-radius: 24px;
	}
	.award-wrap::after {
		display: none;
	}
	.slider-wrap {
		background: #FFFFFF;
		border: 1px solid #E6E6EF;
		border-radius: 16px;
		padding-bottom: 60px;
		padding-left: 45px;
		padding-right: 45px;
		margin-top: 25px;
	}
	.calc-icon {
		position: absolute;
		right: 15%;
		top: -30px;
	}
	.calc-container .btn {
		position: absolute;
		right: 10.45%;
		top: 290px;
		width: 238px;
	}
	
	#section-4 .rw-custom {
		text-align: initial;
		width: 100%;
		max-width: 1280px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media (min-width: 1281px) {
	.calc-container {
		padding-left: 80px;
	}
}
@media (max-width: 1180px) {
	.calc-container {
		margin-top: 30px;
		position: relative;
		z-index: 20;
	}
	.slider-wrap {
		margin-bottom: 36px;
	}
}
@media (max-width: 580px) {
	.calc-container {
		padding: 30px 20px;
		justify-content: space-between;
		align-items: flex-end;
	}
	.deposit-wrap, .award-wrap {
		width: 47.5%;
	}
	.calc-icon {
		margin: 0 auto 10px;
	}
	.calc-container .btn {
		width: fit-content;
	}
	.break {
		width: 100%;
	}
}

.il-pc {
	max-width: 100%;
	height: auto;
}

@media (min-width: 1181px) {
	#section-5 {
		padding: 70px 0;
	}
	#section-5 .container {
		background: #F4F4F5;
		border-radius: 16px;
		padding: 26px;
		position: relative;
	}
	#section-5 .content {
		background: #FFFFFF;
		border-radius: 8px;
		padding: 60px 65px;
	}
	#section-5 .il {
		position: absolute;
		left: calc(-50% - 260px);
		top: calc(50% - 250px);
	}
}

@media (max-width: 1180px) {
	#section-5 {
		text-align: center;
	}
	#section-5 ul {
		text-align: initial;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 580px) {
	#section-5 h4, #section-5 .rw-custom {
		text-align: center;
	}
}

#section-6 {
	padding-bottom: 120px;
	text-align: center;
}

#section-6 h2 {
	margin-bottom: 1.25em;
}

.trustpilot-widget-wrap {
	position: relative;
}
.trustpilot-widget-wrap::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 20px;
	right: 20px;
	background: #F4F4F5;
	border-radius: 16px;
	z-index: 1;
}
.trustpilot-widget {
	background: #FFFFFF;
	border: 1px solid #F4F4F5;
	border-radius: 16px;
	padding: 40px 15px;
	position: relative;
	z-index: 2;
}

@media (max-width: 580px) {
	.trustpilot-widget-wrap::after {
		top: 10px;
		right: 10px;
	}
}


/* Desktop View */

@media (min-width: 1181px) {
	header {
		padding: 10px 0;
	}
	section {
		padding: 40px 0;
	}
}


/* Small Desktop View */

@media (max-width:1180px) {

}


@media (orientation:landscape) and (max-height:740px) {
	body {
		line-height: 1.25;
	}
	h1 {
		font-size: 3em;
	}
	#section-1 {
		padding-top: 0;
	}
	#section-1 ul {
		font-size: 1em;
	}
}

/* Mobile View */

@media (max-width:580px) {
	h1, h2, h3 {
		font-size: 2em;
		font-size: 8vw;
		text-align: center;
	}
	h4 {
		font-size: 1em;
	}
	p.large {
		font-size: 1em;
	}
	.markets-logo {
		width: 190px;
		height: 23px;
	}
	.btn {
		margin: 20px auto 0;
		max-width: 100%;
	}
}



/* Footer */

footer {
	background-color: #161717;
	color: #acafaf;
	padding-top: 30px;
	padding-bottom: 90px;
	border-radius: 24px 24px 0px 0px;
	margin-top: -25px;
}

footer .container {
  font-size: .75em;
}
footer a {
	color: #09C6F9;
}
footer p {
  margin-bottom: 10px;
}
.awards {
  padding-bottom: 20px;
}
.awards img {
  display: inline-block;
  margin: 15px 10px;
  vertical-align: middle;
}
.awards img.logo-footer {
	margin-right: 14px;
	margin-left: 0;
}
[dir=rtl] .awards img.logo-footer {
	margin-right: 0;
	margin-left: 14px;
}

.disclaimer .title {
	text-transform: uppercase;
}

.disclaimer strong {
	color: #fff;
	font-family: "Gilroy", Arial, san-serif !important;
	font-weight: 700;
}

.rw-fixed {
	position: fixed;
	width: 100%;
	margin: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #e4e4e4;
	color: #3a424c;
	box-sizing: border-box;
	padding: 10px 0 8px;
	font-size: 14px;
	text-align: center;
	z-index: 1000;
}

.rw-fixed .container {
	padding: 0;
}

@media (min-width: 1181px) {
  footer {
		padding-top: 50px;
	}
	footer .col-2 > div.wide {
    width: 65%;
  }
  footer .col-2 > div.narrow {
    width: 25%;
  }
	.disclaimer .title {
		font-size: 14px;
	}
  .awards img {
    margin: 10px 20px;
  }
  .awards br {
    display: none;
  }
}

@media (max-width: 580px) {
	.awards img.logo-footer {
		width: 190px;
		height: auto;
	}
}


div.rw-custom, div.rw-custom span {
	color: #a2a2a2 !important;
}

.rw-custom img {
	display: none !important;
}

.country_at .rw-custom img {
	display: inline-block !important;
}

.pdf-wrapper{
	position: fixed;
	top: 0; left: 0;
	height: 100vh; 
	width: 100vw;
	background: #fff;
	z-index: 500;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	visibility: hidden;
}
.pdf-wrapper .modal-body{
width: 100%; box-sizing: border-box; height: calc(100vh - 30px);
}
.pdf-wrapper .pdf-frame iframe{
width: 100%; border: none; height: calc(100vh - 30px);
}
.pdf-wrapper .modal-header{
position: absolute; top: 0; left: 0; width: 100%;
display: flex; justify-content: flex-end; box-sizing: border-box; padding-right: 6px; align-items: center;
}
.pdf-wrapper .modal-header .icon-close {
height: 30px; width: 30px;
background: url(../../../pdfjs/web/images/icon-close-light.html) no-repeat center center;
background-size: 18px;
cursor: pointer; 
}
.noscroll{
height: 100%; width: 100%; overflow: hidden;
}
