* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
}

.container {
  padding: 10px;
  display: flex;
  font-size: 20px;
  color: #1a1a1a;
  max-width: 500px;
  min-height: 100vh;
  margin: 0px auto;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  background-color: rgba(0, 0 , 0, 0);
  font-family: 'Montserrat-Bold', sans-serif;
}

.logo_img {
  width:5vw;
  margin: 0px auto;
  content: url(../imgs/logo.png);
}

#move_text {
  animation-duration: 1s;
  animation-name: fadeInUp;
  animation-fill-mode: both;
}

.container h3 {
  font-family: 'Montserrat', sans-serif;
}

h1,
p {
  margin: 0;
  padding: 5px;
}

h1 {
 margin-top: 10px;
}

#iframeContent {
  padding: 0px;
  display: none;
height: 100vh;
        width: 100vw; 
}

#error {
  display: none;
  color: #fff;
  padding: 10px;
  font-size: 14px;
  margin: 10px auto;
  background-color: red;
}

#error.show,
#iframeContent.show {
  display: block;
  animation-duration: 1s;
  animation-name: fadeInUp;
  animation-fill-mode: both;
}


.panel {
  width: 100%;
  display: none;
  margin: 10px 0;
  font-size: 20px;
  animation-duration: 1s;
  animation-name: fadeInUp;
  animation-fill-mode: both;
}

.panel h2{
  font-family: 'Montserrat', sans-serif;
}

.panel.active {
  display: block;
  font-size: 20px;
}

button {
  margin: 10px;
  border: none;
  color: #faf6f8;
  cursor: pointer;
  font-size: 35px;
  padding: 7px 50px;
  border-radius: 15rem ;
  background-color: #20BA7E;
  font-family: 'Montserrat-Bold', sans-serif;
}

button:hover {
  background-color: #1c996a;
}


button[data-action="no"] {
  background-color: #CBCBCB;
}



button[data-action="prev"] {
  background-color: #CBCBCB;
}

button[data-action="prev"]:hover {
  background-color: #666164;
}


.menbttn {
  color: #1a1a1a;
  /* border: 1px solid #0e0d0d; */
  background-color: #CBCBCB;
}

.menbttn:hover {
  background-color: #666164;
}

.dropDown {
  font-size: 1.438em;
}

.timer {
  font-size: 60px;
  font-weight: 500;
  font-family: 'Montserrat-Bold', sans-serif;
}


.backround_image {
 top: 0;
 left: 0;
 z-index: -1;
 position: fixed;
}

.slide {
 width: 100vw;
 height: 100vh;
 position: absolute;
 background-size: cover;
 background-repeat: no-repeat;
 background-position: top center;
}

.bg1 {
  background-image: url("../imgs/BG.png");
}

.bg2 {
  background-image: url("../imgs/BG-2.png");
}

.bg3 {
  background-image: url("../imgs/BG-3.png");
}

/* animation */
@keyframes fade-animation {
  0% {
    opacity:1;
  }
  20% {
    opacity:1;
  }
  33% {
    opacity:0;
  }
  87% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

.slide {
  animation-duration: 15s;
  animation-name: fade-animation;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.bg1 {
  animation-delay: 10s;
}

.bg2 {
  animation-delay: 5s;
}

.bg3 {
  animation-delay: 0s;
}


/* checkbox */

.bubble_check {
  margin: 10px;
  cursor: pointer;
  align-items: center;
  flex-direction: row;
  display: inline-flex;
  justify-content: center;
}

.bubble_check input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.bubble_check span {
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid #944f73;
}

.bubble_check input:checked ~ span {
  color: white;
  background-color: #944f73;
}

/* .fade {
 width: 100%;
 height: 100%;
 z-index: -1;
 position: absolute;
} */

#iframeContent {
  border: none;
  background-color: rgba(0, 0 , 0, 0);
}

.percentage_wrapper {
  display: none !important;
}


.wrapBar {
  bottom: 0;
  width: 100%;
  z-index: 1;
  height: 20px;
  position: fixed;
  background-color: #fff;
}

.percentage {
  line-height: 20px;
}

#textPercentage {
  width: 0%;
  height: 20px;
  float: left;
  color: white;
  padding: 0 10px;
  text-align: right;
  background-color: #944f73;
  transition: 400ms ease-in-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media only screen and ( max-width: 640px ) {

  .container {
    background-color: rgb(255, 255, 255, 0.50);
  }

  .bg1 {
    background-image: url("../imgs/Mobile\ BG-1.png");
  }
  .bg2 {
    background-image: url("../imgs/Mobile\ BG-2.png");
  }
  .bg3 {
    background-image: url("../imgs/Mobile\ BG-3.png");
  }

  #iframeContent {
    width: 100%;
    border: none;
    min-height: 810px;
  }

  .alignment {
    display: flex;
    padding: 7px 50px ;
    flex-direction: column-reverse;
  }

  .bubble_check {
    font-size: 30px;
  }
  
  
  
button[data-action="yes"] {
 padding: 7px 0px;
 text-align: center;
}


button[data-action="no"] {
  padding: 7px 0px;
  text-align: center;
}

  
}


/* .fade-in-image { animation: fadeIn 5s; }


@keyframes fade-in-image {
  0% { opacity: 0; }
  100% { opacity: 1; }
} */


