/* CSS Document */
/* Variables */ :root {
  --heading-font: 'Roboto Slab', serif;
  --dark-red: #AD171c;
  --header-height: 58px;
}
/*General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
    font-size: 17px;
}
body{
    max-height: 100vh;
    overflow: hidden;
}
a{
    text-decoration: none;
}
img{
    display: block;
}
header{
    margin: 10px;
    background: #fff;
    z-index: 10;
}
header a{
    color: #ed1e24;
}
.small-text{
    font-size: 0.6em;
}
.content{
    
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeb86b",endColorstr="#000000",GradientType=1);
    border-radius: 10px 10px 0 0;
    min-height: calc(100vh - 39.5px);
    color: #fff;
    position: relative;
    background: rgb(238,184,107);
    background: -moz-linear-gradient(0deg, rgba(238,184,107,1) 35%, rgba(70,145,173,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(238,184,107,1) 35%, rgba(70,145,173,1) 100%);
    background: linear-gradient(0deg, rgba(238,184,107,1) 35%, rgba(70,145,173,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeb86b",endColorstr="#4691ad",GradientType=1);
}
.content-bg{
    min-height: calc(100vh - 39.5px);
    background-image: url("assets/lover-cast.png");
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
}
.center{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.x-center{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.glass-screen{
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    text-align: center;
    max-width: 400px;
    margin: auto;
}
.button{
    cursor: pointer;
    color: #000;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #cecece;
    margin-bottom: 10px;
    display: block;
    padding: 10px;
}
.button:first-of-type{
    margin-top: 10px;
}
#ls-title{
    margin-bottom: 20px;
}
#ls-title img{
    margin-left: auto;
    margin-right: auto;
}
#registration-screen, .question-screen, #registration-loading, #result{
    padding: 20px;
    position: relative;
    top: 0px;
}
#score{
    padding: 10px;
    font-size: 32px;
    font-weight: 800;
}
.time-clock{
    font-weight: 800;
    font-size: 36px;
    text-align: center;
    padding: 10px;
    background: #fff;
    color: #000;
    margin: 10px auto 10px auto;
    display: block;
    position: relative;
}
.time-clock-bar{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: red;
    height: 5px;
}
.title{
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}
input{
    display: block;
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #cecece;
}
label{
    text-align: left !important;
    margin-bottom: 2px;
}
label:first-of-type{
    margin-top: 10px;
}
.form-error{
    background: rgba(230,93,96,1.00);
}
.error-text{
    margin: 5px 0;
    background: #fff;
    border-left: 5px solid red;
    padding: 5px;
    display: none;
    color:black;
}
.height-limited{
    height: calc(100vh - 179.5px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

@media only screen and (min-width: 300px) {
    #landing-screen{
        width: 100%;
        padding: 20px;
        position: relative;
    }
    .glass-screen{
        padding: 10px;
    }
}
