@import 'desktop.css';

* {margin:0;padding:0;font-family: 'Montserrat', sans-serif;}
body {overflow: hidden;}

a {
  margin-top: 20px;
  padding: 7px 10px;
  font-size: 10pt;
  color: white;
  background: rgba(34,189,27,0.8);
}

#container{
  width: 320px;
  height: 480px;
  position: absolute;
  top: 0;
  bottom:0;
  left:0;
  right: 0;
  margin: auto;
  background: rgba(14, 57, 85, 1);
  overflow: hidden;
  transition: all 1s;
}

#swipesurface {
  position: absolute;
  top: 0px; left: 0px;
  width: 100%; height: 100%;
  z-index: 1000;
}

#carousel {
  position: absolute;
  left: -80px;
  top: 200px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  z-index: 0;
  background: white;
  transition: transform 1s;
}

.carousel_item {
  position: absolute;
  text-align: center;
  /*Center contents*/
  top: 215px;
  left: 215px;
  width: 50px;
  height: 50px;
  font-size: 10pt;
  padding-top: 5px;
  font-weight: bold;
  background: rgba(255,255,255,0.9);
  z-index: 100;
}

/*Top*/
#item1 {top: -30px;}
/*Left*/
#item2 {left: -25px; transform: rotate(-90deg);}
/*Bottom*/
#item3 {top: 455px; transform: rotate(180deg);}
/*Right*/
#item4 {left: 455px; transform: rotate(90deg);}


.content {
  position: absolute;
  z-index: 2000;
  width: 100%;
  text-align: center;
  top: 285px;
  opacity: 0;
  transform: translate(0px,30px);
  transition: all 0.5s;
}

#content1 {opacity: 1;transform: translate(0px,0px);}
.text {padding-bottom: 20px;}

#next {
  position: absolute;
  right: 30px;
  top: 10px;
  padding: 7px;
  z-index: 5000;
  font-size: 10pt;
  background: rgba(255,255,255,0.9);
  box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
}

#legal {
  position: absolute;
  bottom: 20px;
  z-index: 100;
  width: 100%;
  color: rgba(0,0,0,0.25);
  text-align: center;
  -webkit-transform: translateZ(0);
  font-size: 8pt;
}