@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap);

/*
    font-family: 'Montserrat', sans-serif;
*/


/* general */

html {
    min-height: 100%;
    height: 100%;
    position: relative;
}
body {
    position: relative;
    min-height: 100%;
    height: 100%;
    background: #0e0e0e url(../images/bg.jpg) repeat center;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
}

.hidden {
  display: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, .4) inset !important;
}

::placeholder {
  color: white !important;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: white !important;
}

/* CONTENT */

.content {
    height: 100%;
    max-width: 606px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* step */

.active {
    display: block;
}

.stepbox {
    padding: 0 30px 0;
    margin: 130px 0 0;
    position: relative;
    z-index: 1;
    height: calc(100% - 160px);
    overflow-y: auto;
}

.stepbox::-webkit-scrollbar {
    width: 10px;
}

.stepbox::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px white; 
    border-radius: 10px;
}
 
.stepbox::-webkit-scrollbar-thumb {
    background: rgba(255, 79, 137, .6); 
    border-radius: 10px;
}

.stepbox::-webkit-scrollbar-thumb:hover {
    background: #b30000; 
}

#regForm {
    padding-top: 35px;
}

.steps {
    transform: translateX(-200%);
    overflow-x: hidden;
}

.steps::-webkit-scrollbar {
  display: none;
}

.steps {
  -ms-overflow-style: none;  
  scrollbar-width: none; 
}

.stepsMov {
    animation: stepTrans 0.75s normal forwards ease-in-out;
 }

 @keyframes stepTrans {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateY(0);
    }
 }

.step {
  display: block;
  padding: 0 30px 15px;
}

.step span {
    display: block;
    text-align: left;
    color: #fff;
    text-shadow: 0px 0px 3px #000;
    font-size: 18px;
    padding-left: 2px;
    padding-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.country {
  width: calc(30% - 10px);
}

.region {
  width: 70%;
}

.buttonnext {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

.video-girl {
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 50px;
    display: block;
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 700;
    width: 100%;
    height: 65px;
    line-height: 65px;
    float: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    text-align: center;
    border: none;
    text-decoration: none;
    outline: 0;
}
input,
select {
    background: rgba(0, 0, 0, .4);
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0 10px;
    outline: none;
    font-size: 18px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    margin: 0 0 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
 clear: both;
}
button {
    background-image: url(../images/background.jpg) !important;
    background-position: center;
    background-size: cover;
    background-color: transparent;
    color: #fff;
}

.terms {
    padding: 15px 0 0;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    line-height: 1.5em;
}

.terms a {
    color: #ff5f89;
    font-size: 12px;
    text-decoration: underline;
}

.finalcontent {
    padding: 0 30px;
}

#errors {
  display: none;
}

#errors {
background-color: #d40000;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 0;
  margin: -5px 0 20px;
}

.oauth-main {
    transform: scale(0);
}

.oauthInc {
    animation: oauthIncreasing 0.75s normal forwards ease-in-out;
 }

@keyframes oauthIncreasing {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.btn-con.oauth .btn.btn-google-oauth, 
.btn-con.oauth .btn.btn-microsoft-oauth,
.btn-con.oauth .btn.btn-yahoo-oauth {
    border-radius: 50px;
}

.btn-con.oauth .btn.btn-google-oauth span.icon-bg, 
.btn-con.oauth .btn.btn-microsoft-oauth span.icon-bg,
.btn-con.oauth .btn.btn-yahoo-oauth span.icon-bg {
    border-radius: 50%;
}

.btn-con.oauth .btn-oauth span:last-child,
.btn-con.oauth .btn.btn-microsoft-oauth span:last-child  {
    font-weight: bold !important;
}

.btn-con.oauth .btn.btn-google-oauth {
    background-color: rgba(66, 133, 244, .8) !important;
}

.btn-con.oauth .btn.btn-microsoft-oauth {
    background-color: rgba(47, 47, 47, .8) !important;
}

.btn-con.oauth .btn-oauth * {
  text-shadow: none !important;
  padding-top: 0 !important;
  text-transform: none;
}

.btn-con.oauth .btn.btn-microsoft-oauth {
  border: solid 1px #2f2f2f;
  background: #2f2f2f;
  color: #fff
}

.btn-con.oauth .btn.btn-microsoft-oauth span.icon-bg {
    border: 2px solid #2f2f2f;
}

.btn-con.oauth .btn.btn-microsoft-oauth i.icon {
  left: 12px;

}

.btn-con.oauth .btn.btn-microsoft-oauth span:last-child {
  font-weight: 300;
}

.btn-con.oauth .btn.btn-google-oauth, 
.btn-con.oauth .btn.btn-microsoft-oauth,
.btn-con.oauth .btn.btn-yahoo-oauth {
  width: 338px;
}

.cancel-oauth-wrap a.turn-back-yahoo {
    display: none;
}

.row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.country {
  width: calc(30% - 10px);
}
.region {
  width: 70%;
}
.full {
  width: 100%;
}

.link-back span {
    cursor: pointer;
    color: #720e9e;
}

.link-back span:hover {
    text-decoration: underline;
}


/* header */

.header {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #ffffff;
    z-index: 10;
    transition: 2s;
}
.headertransparent {
    background-color: transparent;
}
.headertransparentdec {
    animation: decreasing 1s normal forwards ease-in-out;
}
.header__logo {
    position: absolute;
    width: auto;
    height: 90px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 2s;
}
.header__logo__transparent {
    animation: decreasinglogo 2s normal forwards ease-in-out;
    filter: brightness(0) invert(1) drop-shadow(0px 0px 2px #000);
}

.autocomplete-items {
    margin-top: -15px;
    border-radius: 10px;
}

.autocomplete-items div {
    color: #000000;
}

.autocomplete-items div:first-child {
    border-radius: 10px 10px 0 0;
}

.autocomplete-items div:last-child {
    border-radius: 0 0 10px 10px;
}

.autocomplete-items div:only-child {
    border-radius: 10px;
}

@keyframes decreasing {
    0% {
        width: 100%;
        height: 100%;
    }
    100% {
        width: 100%;
        height: 120px;
    }
}

@keyframes decreasinglogo {
    0% {
        width: auto;
        height: 90px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        width: auto;
        height: 60px;
        top: 30px;
        transform: translate(-50%, 0);
    }
}


@media (max-width: 750px) {
    .header {
        padding-top: 20px;
    }
}

/* vegas */

.video-slide,
.video-slide-opt {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: hidden;
}

@media (max-width: 750px) {
    .content {
        max-width: 100%;
    }
    .title {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 500px) {
    @keyframes decreasing {
    0% {
            width: 100%;
            height: 100%;
        }
        100% {
            width: 100%;
            height: 110px;
        }
    }

    @keyframes decreasinglogo {
        0% {
            width: auto;
            height: 90px;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        100% {
            width: auto;
            height: 60px;
            top: 20px;
            transform: translate(-50%, 0);
        }
    }
    .stepbox::-webkit-scrollbar {
        width: 7px;
    }
    .stepbox {
        margin: 110px 0 0;
    }
    #regForm {
        padding-top: 20px;
    }
    .step {
       padding: 0 0 15px; 
    }
    .step span {
        font-size: 16px;
        padding-bottom: 10px;
    }
    input, select {
        height: 50px;
        line-height: 40px;
        margin: 0 0 5px;
        font-size: 16px;
    }
    .video-girl {
        height: 50px;
        line-height: 40px;
        font-size: 20px;
    }
    .finalcontent {
        padding: 0;
    }
    #errors {
      font-size: 14px;
    }
    .autocomplete-items {
        margin-top: -5px;
    }
}