*, ::after, ::before { -webkit-box-sizing: border-box; box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; padding: 0; }
body { font-family: "Lato"; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

@media only screen and (min-width: 1400px){
	html { font-size: 17px; }
}

@media only screen and (max-width: 1400px){
	html { font-size: 16px; }
}

@media only screen and (max-width: 480px){
	html { font-size: 15px; }
}

.container {
  width: 100%;
  height: 100VH;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.redeal_redirect_wrapper {
  width: 95%;
  max-width: 500px;
  margin-bottom: 5rem;
  text-align: center;
  /*margin: 0 auto;*/
}

#redeal-modal-header-img { display: block; width: 100%; }

.redeal_redirect_text {
  width: 95%;
  max-width: 400px;
  margin: 0 auto;
}

#redeal-modal-header-title {
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 700; 
}

#redeal-modal-header-text {
  color: #777777;
  line-height: 1.75;
}

#redeal-redirect-link {
  display: none;
  max-width: 250px;
  margin: 1.5rem auto 0;
  height: 50px;
  font-size: 1rem;
  color: #C1C1C1;
  line-height: 1.25;
}

#redeal-redirect-link a { color: #51B77F }

.redeal_footer {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.powered-credentials {
  font-size: 12px;
  color: #999999;
  line-height: 14px;
  margin-right: 3px;
}


@media only screen and (max-width: 1024px){
	.container {
    display: block;
    width: 95%;
    max-width: 500px;
    height: auto;
    margin: 2.5% auto 0px;;
  }

  .redeal_redirect_wrapper {
    width: 100%;
    max-width: unset;
    margin-bottom: 0px;
  }
}

/* Loader */
#loader {
  margin: 1.5rem auto 0;
	height: 50px;
	width: 50px;
	-webkit-animation: loader-1 4.8s linear infinite;
	        animation: loader-1 4.8s linear infinite;
}
@-webkit-keyframes loader-1 {
	0%   { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes loader-1 {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
#loader span {
	display: block;
	position: absolute;
	top: 0; left: 0;
	bottom: 0; right: 0;
	margin: auto;
	height: 50px;
	width: 50px;
	clip: rect(0, 50px, 50px, 25px);
	-webkit-animation: loader-2 1.2s linear infinite;
	        animation: loader-2 1.2s linear infinite;
}
@-webkit-keyframes loader-2 {
	0%   { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(220deg); }
}
@keyframes loader-2 {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(220deg); }
}
#loader span::after {
	content: "";
	position: absolute;
	top: 0; left: 0;
	bottom: 0; right: 0;
	margin: auto;
	height: 50px;
	width: 50px;
	clip: rect(0, 50px, 50px, 25px);
	border: 3px solid #4CAF50;
	border-radius: 50%;
	-webkit-animation: loader-3 1.2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	        animation: loader-3 1.2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-3 {
	0%   { -webkit-transform: rotate(-140deg); }
	50%  { -webkit-transform: rotate(-160deg); }
	100% { -webkit-transform: rotate(140deg); }
}
@keyframes loader-3 {
	0%   { transform: rotate(-140deg); }
	50%  { transform: rotate(-160deg); }
	100% { transform: rotate(140deg); }
}