* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Valorant";
  src: url("../fonts/valorant.otf") format("opentype");
  font-weight: normal;
}

@font-face {
  font-family: "MarkPro";
  src: url("../fonts/mark-pro-bold.otf") format("opentype");
  font-weight: normal;
}

@font-face {
  font-family: "MarkPro";
  src: url("../fonts/mark-pro-black.otf") format("opentype");
  font-weight: bold;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "MarkPro", "Cairo", Arial;
  text-transform: uppercase;
  background-image: url('../png/background.jpg');
  background-position: right;
  background-size: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

.outer-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}

.wrapper {
  width: 100%;
}

.flex {
  display: flex;
}

.flex.h100 {
  height: 100%;
}

.flex.a-center {
  align-items: center;
}

.flex.j-center {
  justify-content: center;
}

.flex.s-b {
  justify-content: space-between;
}

.flex.s-a {
  justify-content: space-around;
}

.flex .f-1 {
  flex: 1;
}

.flex .f-2 {
  flex: 2;
}

.flex .f-3 {
  flex: 3;
}

.flex .f-4 {
  flex: 4;
}

.login-banner {
  height: 100%;
  background: #1b1851;
  padding: 20px;
}

.login-banner-photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.login-banner-photo img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.banner-text {
  width: 100%;
  position: absolute;
  bottom: 0;
  color: white;
  font-size: 20px;
  padding: 20px;
}

.input {
  position: relative;
  margin: 30px 0;
  background: #eee;
  padding: 17px 0 13px 0;
  border-radius: 5px;
  border: 2px solid transparent;
}

.input.long {
  position: relative;
  margin: 30px 0;
  background: #eee;
  padding: 17px 0 13px 0;
  border-radius: 5px;
  border: 2px solid transparent;
}
.input.bottom {
  position: bottom;

}



.input.half {
  margin: 0;
  width: calc(50% - 4px);
  display: inline-block;
}

.input.half+.input.half {
  margin-left: 3px;
}

.input.selected {
  border: 2px solid #000;
  background: #fff;
  box-sizing: border-box;
}

.input input, .input select, .input textarea {
  width: 100%;
  padding: 10px 20px;
  border: 0;
  font-size: 18px;
  background: transparent;
  outline: 0;
  position: relative;
  z-index: 2;
  transition: border .2s;
  font-family: "MarkPro";
  text-transform: uppercase;
}
textarea{
  height: 150px;
}
button{
border:none;
}
button:focus{
  outline: none;
  border:none;
}
.input.copy, .input.copy input, .input .copy textarea {
  color: #999;
  cursor: pointer;
}

.input select {
  width: calc(100% - 20px);
}

input[type="submit"] {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.m-form {
  position: relative;
  width: 600px;
  min-height: 800px;
  margin-bottom:100px;
  background: white;
  padding: 30px 40px;
  padding-top: 120px;
  width: 80%;
  float: right;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.note {
  font-size: 13px;
  color: #e0e0e0;
  margin-top: -10px;
  margin-bottom: 20px;
}

.input .placeholder {
  position: absolute;
  top: calc(50% + 3px);
  transform: translateY(-50%);
  left: 20px;
  color: #999;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  transition: top .4s, font-size .4s, transform .4s;
}

.input .placeholder.selected {
  top: 5px;
  font-size: 12px;
  transform: translateY(5px);
}

.t-center {
  text-align: center;
}

.note {
  color: #888;
}

.rel {
  position: relative;
}

.button {
  padding: 7px;
  border-radius: 5px;
  border: 2px solid #fff;
  color: #fff;
  text-align: center;
  transition: background-color .2s, color .2s;
  min-width: 100px;
}

.fl-right {
  float: right;
}

.button:hover {
  background: #fff;
  color: #000;
}

.next {
  width: 100px;
  height: 100px;
  background: #ea4653;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color .5s, border .5s;
}

.step {
  opacity: 1;
  transition: opacity .6s, transform .6s, max-height 2s;
}

.step.hide {
  opacity: 0;
  transform: translateY(30%);
  max-height: 0;
  overflow: hidden;
}

.next.disabled {
  background: transparent !important;
  border: 2px solid #e0e0e0;
  cursor: not-allowed !important;
}

.next.center {
  margin: 0 auto;
}
#preloadedImages
{
    width: 0px;
    height: 0px;
    display: inline;
    background-image: url('../svg/spinner.svg');

}
.xbutton.loading::after, .next.loading::after{
    position:absolute;
    content:"";
    width:200px;
    height:200px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background-image:url('../svg/spinner.svg');
    background-position:center;
    background-size:contain;
}
.xbutton {
  position: relative;
  font-family: "Valorant";
  display: table;
  padding: 15px 30px;
  min-width: 230px;
  background: #ea4653;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s, color .2s, border .3s;
}

.xbutton.bottom {
  position: absolute !important;
  bottom: 65px;
}

.xbutton.disabled {
  background: #e0e0e0 !important;
  color: #999;
  cursor: not-allowed !important;
}

.xbutton.disabled::before {
  border-color: #e0e0e0 !important;
}

.xbutton::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  background: transparent;
  border: 2px solid #ea4653;
}

.xbutton.center {
  margin: 0 auto;
}

.hide .xbutton.bottom.center {
  opacity: 0;
}

.xbutton.bottom.center {
  opacity: 1;
  transition: opacity 4s;
  left: 50%;
  transform: translateX(-50%);
}

.xbutton:hover {
  background: #ff4d5c;
}
.xbutton.loading, .next.loading{
    transition:none !important;
    background:none !important;
    border:0;
    position:relative;
    color: transparent;
}
#form-messages{
    font-size:12px;
    color:red;
}
.xbutton.loading::before, .next.loading::before{
    background:none;
    border:0;
}
.xbutton.loading img, .next.loading img{
display:none;
}
.f-wrap {
  flex-wrap: wrap;
}

.f-b-100 {
  flex-basis: 100px;
}

.f-b-200 {
  flex-basis: 200px;
}

.f-b-300 {
  flex-basis: 300px;
}

.f-b-400 {
  flex-basis: 400px;
}

.f-b-500 {
  flex-basis: 500px;
}

.sidebar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background: #000;
  color: white;
  background: #3a3a3a;
}

.sidebar .logo {
  height: 80px;
  padding: 27px 0;
  background: #333;
}

.sidebar .butt {
  width: 100%;
  padding: 15px 20px;
  background: #333;
  color: white;
  margin: 8px 0;
  display: flex;
  align-items: center;
}

.sidebar .butt.selected {
  border-left: 5px solid #a3a0fb;
  padding-left: 15px;
}

.sidebar .butt:hover {
  background: #2f2f2f;
}

.icon {
  margin: 0 10px;
  position: relative;
  display: inline-block;
}

.icon.small {
  width: 15px;
  height: 15px;
}

.icon.medium {
  width: 22px;
  height: 22px;
}

.icon.large {
  width: 30px;
  height: 30px;
}

.icon img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
}

.vert-sep {
  height: 50%;
  width: 2px;
  background: #999;
  margin: 0 20px;
}

#footer {
  width: 100%;
  background: white;
  height: 80px;
  position: absolute;
  bottom: 0;
  padding: 0 10%;
}

.val-gl {
  display: flex;
  position: absolute;
  top: 0;
  right: 150px;
  flex-direction: row-reverse;
  z-index: 11;
}

.val-gl a div {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0F1923;
  height: 90px;
  width: 100px;
  margin: 0 20px;
}

.val-gl a div img {
  width: 40%;
}

.val-gl a:nth-of-type(2) div {
  background: #ea4653;
}

.text-footer {
  margin-left: 10px;
  font-size: 12px;
  text-transform: uppercase;
  max-width: 60%;
}

.container-x {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.ch {
  position: absolute;
  width: 105%;
  height: 100%;
  top: 0;
  overflow: hidden;
  left: -5%;
}

.ch img {
  height: 100%;
  position: absolute;
  z-index: 10;
}

.form-head {
  text-align: center;
  width: 100%;
  height: 90px;
  background: #ea4653;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Valorant";
  /* padding: 0 120px; */
  font-size: 27px;
}

.terms-container {
  font-size: 15px;
  width: 90%;
  margin: 10px auto;
  background: #e0e0e0;
  padding: 20px 10px;
  height: 80%;
  overflow-y: scroll;
}

.terms-container h1 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 20px;
}

.terms-container .ar {
  text-align: right;
  font-family: "Cairo", "MarkPro", Arial;
}

.terms-container .lang-button {
  background: #0F1923;
  padding: 10px 6px;
  display: flex;
  align-items: center;
  width: 145px;
  font-size: 17px;
  color: white;
  margin-bottom: 20px;
}

.terms-container .lang-button:hover {
  background: #000;
}

.rtl {
  direction: rtl;
  text-align: right;
}

.terms-container .lang-button img {
  margin: 0 10px;
}

.copymessage {
  color: #888;
  margin: 0 auto;
  margin-top: 25px;
  width: 50%;
  height: 130px;
  text-align: center;
  opacity: 0;
}

.copymessage.hide {
  transition: opacity 2s;
}

.copymessage.show {
  opacity: 1;
  transition: opacity 0;
}

/* Custom CheckBox START */
/* Customize the label (the container) */
.container {
  display: block;
  position: absolute;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  bottom: 130px;
  left: 50%;
  color: #888;
  transform: translateX(-50%);
  width: 370px;
  opacity: 1;
  transition: opacity 5s;
}

.hide .container {
  opacity: 0;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #d1d1d1;
}

/* On mouse-over, add a grey background color */
.container:hover input~.checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked~.checkmark {
  background-color: #ea4653;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: -5px;
  top: -5px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 2px solid #ea4653;
}

.back-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-overlay.hide {
  display: none;
}

.back-overlay .thank-card {
  width: 700px;
  min-height: 500px;
  max-height: 60vw;
  max-width: 100%;
  position: relative;
}

.back-overlay .thank-card>img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  left: 50%;
  transform: translate(-50%);
}

.back-overlay .thank-card {
  position: relative;
  z-index: 10;
  transform: translateY(0);
  transition: 1s;
}

.thank-card.hide {
  transform: translateY(2000px);
}

.back-overlay .thank-card .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  padding: 20px;
}

.highlight {
  font-family: 'Valorant';
  color: #ea4653;
  margin: 10px 0;
}

.nomargin {
  margin: 0;
}

.back-overlay .thank-card .content .flex {
  justify-content: space-around;
  width: 50%;
  margin: 0 auto;
  margin-top: 10px;
}

.back-overlay .thank-card .content .flex img {
  width: 40px;
}

.back-overlay .thank-card .content .input {
  margin: 5px 0 15px 0;
}

.back-overlay .thank-card .content .input input {
  text-align: center;
}

/* Custom CheckBox END */

#info-tagline{
position:absolute; top:50%; right:10px; transform:translateY(-50%); width:25px; height:25px;z-index:9999;
}

#info-tagline > img{
width:100%;
}
#info-tagline #info{
display:none;
width:440px;
height:230px;
background:white;
left:calc(100% + 90px);
z-index:9999;
position:absolute;
top:50%;
transform:translateY(-50%);
}
#info-tagline #info::after{
content:"";
width:0;
height:0;
position:absolute;
border: 20px solid transparent;
border-right:20px solid #fff;
right:100%;
top:50%;
transform: translateY(-50%);
}
#info-tagline:hover > #info{
display:block;
}
#info-tagline #info .content{
width:100%;
height:100%;
padding:20px;
font-size:9px;
line-height:14px;
display:flex;
flex-direction:column;
justify-content:space-between;
color: #333;
}
#info-tagline #info .flex{
height:calc(50% - 10px);
}
#info-tagline #info img{
margin:0 5px;
}

.t-align-r{
text-align:right;
}
@media only screen and (max-width: 1400px) {
  .form-head {
    font-size: 17px;
  }

  .input input, .input select {
    font-size: 14px;
  }

  .input .placeholder {
    font-size: 14px;
  }

  .text-footer {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .m-form {
    width: 100%;
  }

  .container {
    max-width: 90%;
  }
}

@media only screen and (max-width: 900px) {

    #info-tagline #info{
left:inherit;
right:-20px;
max-width:90vw;
height:300px;
z-index:9999;
position:absolute;
top:calc(100% + 50px);
transform:translateY(0);
border:1px solid #333;
}
    #info-tagline #info img{
        height:70px;
    }
    #info-tagline #info::after{
        display:none;
    }

  .m-form {
    width: 80%;
    margin: 0 auto;
    float: inherit;
  }

  .val-gl {
    position: static;
  }

  .val-gl a div {
    right: 10%;
    position: absolute;
    margin: 0;
  }

  .val-gl a:nth-of-type(2) div {
    left: 10%;
  }

  .flex .m-f-0 {
    flex: 0;
  }

  .m-p-0 {
    padding: 0;
  }

  .ch {
    display: none;
  }

  .m-rel-0 {
    position: static;
  }

  .form-head {
    padding: 0 100px;
  }

  #footer {
    height: auto;
    padding: 20px 0;
  }

  #footer .vert-sep {
    height: 30px;
  }

  #footer .text-footer {
    margin: 20px 0;
    max-width: 80%;
  }

  .f-wrap-m {
    flex-wrap: wrap;
    justify-content: center;
  }

  .outer-wrapper {
    padding-bottom: 180px;
  }
}

@media only screen and (max-width: 500px) {
  .m-form {
    width: 100%;
  }

  .m-hide {
    display: none;
  }

  .val-gl a div {
    right: 0;
    width: 80px;
  }

  .val-gl a:nth-of-type(2) div {
    left: 0;
  }
}
