body, html{
    height: 100%;
    margin:0;
    padding:0;
}

.screen{
    justify-content: center;
    width: 414px;
	height: 736px;
	margin: 0 auto;
	position: relative;
}

.screen img{
    height: 100%;
    position: absolute;
    pointer-events: none;
}

.hide {
    display: none;
}

.show {
    display: flex;
}

.btn-next, textarea,.sliders, p{
    position: absolute;
}

.sliders{
    width: 80%;
    margin-left: 0%;
}
.btn-next{
    background: transparent;
    border: none !important;
    cursor: pointer
}
:focus {
    outline: 0;
}

textarea{
    font-family: 'Futura Std';
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    
    color: #434040;
    border: none;
    padding-left: 16px;
    padding-top: 16px;
    resize: none;
}

input[type=range] {
    -webkit-appearance: none;
    -moz-apperance: none;
    border-radius: 6px;
    height: 4px;
    width: 100%;
    background-image: -webkit-gradient(linear,
        left top, 
        right top, 
        color-stop(50%, #391197),
        color-stop(50%, #E6E6E6));
    
    background-image: -moz-linear-gradient(left center,
        #391197 0%, #391197 50%,
        #E6E6E6 50%, #E6E6E6 100%);
  }
  input[type=range]:focus {
    outline: none;
  }

  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
  }
  
  input[type=range]:focus {
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
  }
  
  input[type=range]::-ms-track {
    width: 100%;
  
    /* Hides the slider so custom styles can be added */
    background: transparent; 
    border-color: transparent;
    color: transparent;
  }
  
  input[type="range"]::-moz-range-track {
    border: none;
    background: none;
    outline: none;
}
  /* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
    cursor: pointer;
    -webkit-appearance: none;
    border: 1px solid #000000;
    height: 20px;
    width: 14px;
    background: #FFFFFF;
    border: 0.5px solid rgba(94, 94, 94, 0.3);
    box-sizing: border-box;
    /*box-shadow: 0px 6px 26px rgba(99, 99, 99, 0.15);*/
    border-radius: 20px;/* Add cool effects to your sliders! */
    box-shadow: 0px 6px 26px rgba(99, 99, 99, 0.15);
    content: '•';
  }
  
  /* All the same stuff for Firefox */
  input[type=range]::-moz-range-thumb {
    height: 36px;
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
    background: #FFFFFF;
    border: 0.5px solid rgba(94, 94, 94, 0.3);
    box-sizing: border-box;
    box-shadow: 0px 6px 26px rgba(99, 99, 99, 0.15);
    border-radius: 20px;/* Add cool effects to your sliders! */
  }





  .sliderticks {
    display: flex;
    justify-content: space-between;
    width:100%;
  }
  
  .sliderticks p {
    font-family: Futura Std;
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    line-height: 10px;

    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 0px;
    margin: 7px 0 0px 0;
    color: #B6B5B5;
  }