body {
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  line-height: 1.45rem;
  color: #444;
}

body.freeze {
  pointer-events: none;
}

h1 {
  margin: 0;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: normal;
  line-height: 2.2rem;
}

.section {
  max-width: 800px;
  padding: 3rem;
  min-height: 200px;

  overflow: hidden;
  margin: 5vh auto 0 auto;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


.form-instructions {
  font-size: 1.5em;
  text-align: center;
}



.btn {
  color: #fff;
  background-color: #0bcc6c;
  padding: .8rem;
  font-size: 1.2rem;
  line-height: 1.2rem;
  border-radius: 5px;
  border: 2px solid transparent;
  min-width: 45px !important;
}

.btn:hover,
.btn.hover {
  color: #fff;
  background-color: #1fe080;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  -webkit-transition: .2s;
  transition: .2s;
}

.btn:active,
.btn.active {
  color: #fff;
  background-color: #00b858;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
  outline: 2px solid #0bcc6c;
}

.btn:focus,
.btn.focus {
  color: #fff;
  outline: 2px solid #0bcc6c;
  outline-offset: 2px;
}

.btn:active:focus,
.btn.active.focus {
  outline: 4px solid #0bcc6c;
}

.btn.hover,
.btn.active {
  outline: none;
}

.btn-alt {
  background-color: transparent;
  color: #0bcc6c;
  border: 2px solid #0bcc6c;
}

.btn-alt:hover,
.btn-alt.hover {
  background-color: transparent;
  color: #00a444;
  border-color: #00a444;
  text-shadow: none;
}

.btn-alt:focus,
.btn-alt.focus {
  color: #00b858;
}

.btn-alt:active,
.btn-alt.active {
  color: #fff;
  background-color: #0bcc6c;
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.btn-alt.hover,
.btn-alt.active {
  outline: none;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.buttons .btn {
  margin-right: 15px;
}

form .btn {
  display: inline-block;
  width: 100%;
  max-width: 220px;
  margin: 4rem auto 0 auto;
}

[data-step="4"] button.btn {
  display: block;
  margin: 0 auto;
}

.form-progress-container {
  position: relative;
  margin-top: 3em;
  width: 100%;
  height: 50px;
}

.form-progress {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -60px;
  max-width: 300px;
  width: 100%;
}

progress {
  display: block;
  position: relative;
  top: 5px;
  right: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #3098e8;
  width: 100%;
  height: 10px;
  background: none;
  -webkit-transition: 1s;
  transition: 1s;
  will-change: contents;
}

progress::-webkit-progress-bar {
  background-color: #ddd;
}

progress::-webkit-progress-value {
  background-color: #0bcc6c;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.form-progress-indicator {
  position: absolute;
  top: -20px;
  left: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  background: white;
  border: 5px solid #ddd;
  border-radius: 50%;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  will-change: transform;
}



.form-progress-indicator.one {
  right:  0;
}

.form-progress-indicator.two {
  right: 50%;
}

.form-progress-indicator.three {
  right: 100%;
}

.form-progress-indicator.active {
  -webkit-animation: bounce .5s forwards;
  animation: bounce .5s forwards;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  border-color: blue;
}

.form-progress-indicator.complete {
  border-color: green;
}

.animation-container {
  position: relative;
  width: 100%;
  -webkit-transition: .3s;
  transition: .3s;
  will-change: padding;
  overflow: hidden;
}

.form-step {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  will-change: transform, opacity;
}

.form-step.leaving {
  -webkit-animation: left-and-out .5s forwards;
  animation: left-and-out .5s forwards;
}

.form-step.waiting {
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}

.form-step.coming {
  -webkit-animation: right-and-in .5s forwards;
  animation: right-and-in .5s forwards;
}

@-webkit-keyframes left-and-out {
  100% {
    opacity: 0;
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px);
  }
}

@keyframes left-and-out {
  100% {
    opacity: 0;
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px);
  }
}

@-webkit-keyframes right-and-in {
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes right-and-in {
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes bounce {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounce {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none;
}


.dates {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-content: space-around;
  max-width: 800px;
  min-height: 300px;
  max-height: 1000px;
  left: 0;
  right: 0;
  margin: 50px auto 5em auto;
}

.calendar {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  width: 150px;
  height: 160px;
  position: relative;
  border-radius: 15px 15px 5px 5px;
  perspective: 400px;
  cursor: pointer;
}



.straps {
  position: absolute;
  height: 50px;
  background: red;
  top: -20px;
  z-index: 3;
}



.month {
  border-radius: 10px 10px 0 0;
  position: absolute;
  width: 150px;
  z-index: 1;
  height: 40px;
  color: #555;
  font-size: 1.2em;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background: rgb(150, 190, 250);
  z-index: -199;

}


.date {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 6em;
  font-weight: 700;
  text-align: center;
  line-height: 200px;
  color: #333;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
}

.top .date {
  top: -60%;
}

.bottom .date {
  bottom: 205%;
}

.top {

  position: absolute;
  bottom: 35%;
  left: 0;
  right: 0;
  width: 95%;
  height: 45%;
  margin: auto;
  border-radius: 10px 10px 0 0;
  transform: rotateX(-30deg);
  border: 1px solid rgb(150, 150, 150);
  border-bottom: 1px solid rgb(200, 200, 200);
  background: #ddd;
  transform-origin: center bottom;
  will-change: transform;
  text-align: center;
  overflow: hidden;
  transition: 2s ease;

}

.bottom {

  position: absolute;
  top: 64%;
  left: 0;
  right: 0;
  margin: auto;
  width: 95%;
  height: 35%;
  border-radius: 0 0 10px 10px;
  transform: rotateX(20deg);
  border: 1px solid rgb(150, 150, 150);
  border-top: 1px solid rgb(200, 200, 200);
  transform-origin: center top;
  will-change: transform;
  background: #eee;
  text-align: center;
  overflow: hidden;
  transition: 1s ease;
}



.back-top {
  position: absolute;
  width: 100%;
  bottom: 40%;
  right: 0;
  left: 0;
  height: 50%;
  background: #ddd;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  -o-transform-origin: center bottom;
  transform-origin: center bottom;
  will-change: transform;
  z-index: 99;
  transform-origin: center bottom;
  transform: rotateX(-87.7deg);
  transition: 1s ease;
}

.back-top:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.back-bottom {
  position: absolute;
  right: 0;
  top: 60%;
  left: 0;
  height: 50%;
  background: #eee;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
  -webkit-transform-origin: center top;
  -moz-transform-origin: center top;
  -ms-transform-origin: center top;
  -o-transform-origin: center top;
  transform-origin: center top;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  -o-transform: rotateX(90deg);
  transform: rotateX(0deg);
  will-change: transform;
}


.back-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.day {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  height: 100%;
  top: 20px;
  text-align: center;
  line-height: 200px;
  font-weight: 100;
  line-height: 40px;
  font-size: 1.4em;
  color: #333;
}




.circ {
  opacity: 0;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.tick {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  -webkit-transition: stroke-dashoffset 1s 0.5s ease-out;
  -moz-transition: stroke-dashoffset 1s 0.5s ease-out;
  -ms-transition: stroke-dashoffset 1s 0.5s ease-out;
  -o-transition: stroke-dashoffset 1s 0.5s ease-out;
  transition: stroke-dashoffset 1s 0.5s ease-out;
}

.drawn svg .path {
  opacity: 1;
  stroke-dashoffset: 0;
}

.back {
  position: absolute;
  width: 100%;
  height: 90%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  border: 2px solid red;
}

.done {
  width: 70%;
  height: 70%;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 999;

}




.button-container {
  position: relative;
  border: 2px solid white;
  margin: auto;
  margin-top: 1em;
  z-index: 999;
  display: block;
  max-width: 600px;
  height: 500px;
}


.button {
  position: relative;
  display: block;
  width: 250px;
  height: 70px;
  background: linear-gradient(to bottom, #02b3e4 100%, rgba(0, 0, 0, 0.7));
  text-align: center;
  line-height: 70px;
  color: white;
  font-size: 1.4em;
  letter-spacing: .2em;
  border-radius: 7px 7px 4px 4px;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.3);
  margin-top: 1em;
  margin-bottom: 1em;
  user-select: none;
  cursor: pointer;
  margin: 2em auto;
  transition: 0.5s ease;
  z-index: -9;

}

.button:before {
  content: '';
  position: absolute;
  width: 99%;
  top: 90%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -9;
  height: 5px;
  border-bottom: 8px solid rgba(100, 100, 100, 0.5);
  border-radius: 15px;
  transition: 0.5s ease;
  transition-delay: 0.05s;
  opacity: 0;
}



.text {
  z-index: -99;
  transition: 0.5s ease;
}

.button-inner {
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
}

.button:hover .text {
  opacity: 0;
  transform: translateX(-50px);

}

.button:hover:before {
  opacity: 1;

}

.book {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99;
  transition: 0.5s ease;
  opacity: 0;
  overflow: hidden;
  transform: translateX(70px);
  transition: 0.5s ease;
}

.button:hover {
  transform: translateY(-5px);
}

.button:hover .book {
  transform: translateX(0px);
  opacity: 1;

}

.button:hover {
  background: linear-gradient(to bottom, #02b3e4 85%, rgba(0, 0, 0, 0.7));
}

.button:active:before {
  opacity: 0;
}

.button:active {
  transform: translateY(5px);
  z-index: -9;
}


.loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;

  -webkit-animation: loader .1s linear infinite;
  animation: loader .45s linear infinite;
  opacity: 0;
  display: none;
  transition: 1s ease;
}

.loader-small {
  border-radius: 50px;
  border: 5px solid white;
  height: 40px;
  width: 40px;
  border-right: 5px solid transparent;
}

.loader-big {
  border-radius: 100px;
  border: 5px solid white;
  height: 120px;
  width: 120px;
  border-right: 5px solid rgba(150, 150, 150, 0.7);
}

@keyframes loader {
  0% {
    transform: rotateZ(0);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

.button-done {
  width: 100%;
  height: 100%;
  background: #02ccba;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}


.buttondone-effect {
  position: absolute;
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: 2s ease;
  z-index: -99;
  filter: blur(0);
  top: -10%;
  left: 30%;
  transform-origin: 50%;
  opacity: 0;
}

.buttondone-success {
  box-shadow: 0 0 1px 15px rgba(0, 255, 0, 1), 0 0 1px 30px rgba(0, 255, 0, 0.7), 0 0 1px 45px rgba(0, 255, 0, 0.5);
}

.buttondone-fail {
  box-shadow: 0 0 1px 15px rgba(255, 0, 0, 1), 0 0 1px 30px rgba(255, 0, 0, 0.7), 0 0 1px 45px rgba(255, 0, 0, 0.5);
}


.buttondone-effect.done-effect {
  opacity: 1;
  filter: blur(2px);
  transform: scale(3);
  box-shadow: 0 0 1px 15px transparent, 0 0 1px 30px transparent, 0 0 1px 45px transparent;
}







.info {
  /* Just to center the form on the page */
  margin: 0 auto;
  width: 400px;
  /* To see the outline of the form */
  padding: 1em;
  padding-top: 5em;
  border: none;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  background: #50a3a2;
  background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%);
  background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%);
  color: #fff;
  border-radius: 5px;

}

.info legend {
  position: absolute;
  top: -17px;
  left: 0;
  font-size: 1em;
  padding: 0 10px;
  left: 20px;
  line-height: 30px;
  background: rgb(50, 120, 100);
  border-radius: 5px;
  border: 1px solid white;
}

.info input {
  transition: 0.3s ease;
}

.info div+div {
  margin-top: 1em;
}



.label-top {
  font-size: 1em !important;
  transform: translateY(-15px);
  line-height: 30px !important;
  background: rgb(50, 120, 100) !important;
  border-radius: 5px !important;
  border: 1px solid white;
}



.info label {
  /* To make sure that all labels have the same size and are properly aligned */
  position: absolute;
  top: 0;
  left: 20px;
  text-align: right;
  background: transparent;
  line-height: 50px;
  font-size: 1.2em;
  padding: 0 10px;
  font-weight: 300;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}




.info input[type=text],
.info input[type=number],
.info input[type=email],
.info input[type=tel] {
  /* To make sure that all text fields have the same font settings
     By default, textareas have a monospace font */
  font: 1em sans-serif;
  height: 50px;
  /* To give the same size to all text fields */
  width: 250px;
  box-sizing: border-box;
  /* To harmonize the look & feel of text field border */
  color: white;
  border: 1px solid white;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0 10px 0px;
  border-radius: 5px;

}




.info input[type=text]:focus,
.info input[type=number]:focus,
.info input[type=email]:focus,
.info input[type=tel]:focus {
  /* To give a little highlight on active elements */
  border-color: #000;
  border-bottom: 3px solid #888;
  outline-color: #aaa;
}

.input-height {
  height: 70px !important;
}


.info fieldset {
  position: relative;
  margin-top: 2em;
  margin-bottom: 2em;
  width: 220px;
  border: 1px solid white;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.info fieldset ul {
  position: relative;
  left: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  min-height: 100px;
}

.info fieldset li {
  position: relative;
  display: block;
  padding: 20px 0;
  width: 150px;
  display: inline-block;
}

.info fieldset label {
  line-height: 0px;
}


.info fieldset input {
  position: relative;
  top: 5px;
  width: 20px;
  height: 20px;
  line-height: 0px;
}

.info .info-button {
  /* This extra margin represent roughly the same space as the space
     between the labels and their text fields */

  /* margin-left: .5em;*/
  color: white;
  border-radius: 15px;
  position: relative;
  left: 0;
  right: 0;
  width: 100px;
  height: 50px;
  -webkit-box-shadow:
    inset 0 0 16px rgba(0, 0, 0, 0.1),
    0 0 16px rgba(0, 0, 0, 0.1);
  -moz-box-shadow:
    inset 0 0 8px rgba(0, 0, 0, 0.1),
    0 0 16px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 0 16px rgba(0, 0, 0, 0.1),
    0 0 32px rgba(0, 0, 0, 0.3);
  margin: 2em auto;
  background: transparent;
  /*margin: 0 0 10px 0;*/
  cursor: pointer;


}

.info .info-button:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}


.info-button button {
  position: absolute;
  border-radius: 15px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  background: transparent;
}

.info .field {
  position: relative;
  left: 70px;
}

.info .amount {
  font-size: 1.4em;
  letter-spacing: 0.2em;
  position: relative;
  left: 130px;


}



input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.warning {
  width: 450px;
  min-height: 80px;
  max-height: 300px;

  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  top: 30px;
  right: 25px;
  text-align: center;
  color: white;
  font-size: 1.2em;
  border-radius: 5px;
  opacity: 0;
  transition: 0.5s ease;
  transform: translateY(-50px);
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  align-content: space-around;
}




.warning:before {
  content: '';
  width: 15px;
  height: 15px;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotateZ(45deg);
  top: -7px;
  overflow: hidden;

}

.warning-icon {
  min-width: 80px;
  min-height: 100%;
  position: relative;
  top: 0;
  right: -9px;
  font-size: 15px;
  border-radius: 5px 0 0 5px;
}

.warning-icon span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.warning .warning-icon {
  background: rgb(230, 170, 40);
}

.warning-text {
  padding: 10px;
  height: 100%;
  min-height: 60px;
  max-height: 300px;
  width: 350px;
  position: relative;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-around;
  font-size: 1.2em;

}

.bottom-links {
  display: inline-block;
  padding: 20px;
  position: absolute;
  bottom: 0;
}

.bottom-links a {
  padding: 0 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 9;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  transition: all 0.5s ease;
  background: rgba(150, 150, 150, 0.7);
}


.form-progress .done {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
}

.main-instruction {
  font-size: 1.1em;
  line-height: 2;
}


.main-title {
  text-align: center;
  font-size: 3em;
  font-weight: 700;
}

.selected-date {
  font-weight: 700;
}

.chosen-ones {
  font-size: 1.5em;
  text-align: center;
  position: relative;
  top: -20px;
}








@media (max-width:870px) {

  .main-title {
    font-size: 2.2em;
  }

  .section {
    padding-top: 2rem;

  }

  .form-instructions {
    font-size: 1.2em;
  }

  .main-instruction {
    font-size: 1.2em;
  }

  .calendar {
    width: 130px;
    height: 140px;
  }


  .straps:before {
    left: 15px;
  }

  .straps:after {
    left: 105px;
  }

  .month {
    width: 130px;
    font-size: 1em;
    line-height: 35px;
  }


  .top .date {
    top: -75%;
  }

  .bottom .date {
    bottom: 220%;
  }




  .top {
    bottom: 40%;
  }

  .bottom {
    top: 59%;
  }

  .date {
    font-size: 5em;
  }

  .day {
    top: 15px;
    font-size: 1.2em;
  }

  .back-top {
    bottom: 40%;
    height: 53%;
    transform: rotateX(-88.1deg);
  }



  .back-bottom {
    top: 52%;
    height: 50%;
  }






  .button {
    width: 180px;
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
  }

  .loader-small {
    border: 3px solid white;
    height: 30px;
    width: 30px;
    border-right: 3px solid transparent;
  }

}

@media (max-width:770px) {
  .section {
    padding: 4rem 0em;
  }
}


@media (max-width:630px) {

  .animation-container {
    top: -20px;
  }

  .dates {
    max-width: 370px;
    top: -30px;
    flex-wrap: wrap;
    height: 350px !important;
    min-height: 350px !important;
  }

  .button-container {
    max-width: 500px;
  }

}


@media (max-width:420px) {
  .section {
    padding-top: 1em;

  }

  .main-title {
    font-size: 1.6em;
  }

  .form-progress-container {
    top: -20px;
  }

  .dates {
    max-width: 250px;
    top: -40px;
    height: 250px !important;
    min-height: 250px !important;
  }

  .form-progress-indicator {
    position: absolute;
    border-width: 3px;
    width: 30px;
    height: 30px;
    top: -10px;

  }

  .form-progress {
    max-width: 200px !important;
    left: -35px;

  }

  .animation-container {
    top: -60px;
  }

  progress {
    height: 7px;
  }

  .main-instruction {
    font-size: 1.2em;

  }

  .form-instructions {
    font-size: 1em;
    text-align: center;
  }



  .calendar {
    width: 90px;
    height: 100px;
  }

  .straps {
    position: absolute;
    height: 20px;
    background: red;
    top: -12px;
    z-index: 3;
  }

  .straps:before {
    position: absolute;
    top: 0;
    border: 1px solid white;
    left: 10px;
    width: 7px;
    height: 15px;
    background: black;
    content: '';
  }

  .straps:after {
    position: absolute;
    top: 0;
    border: 1px solid white;
    left: 72px;
    width: 7px;
    height: 15px;
    background: black;
    content: '';
  }

  .month {
    width: 90px;
    font-size: .9em;
    line-height: 23px;
  }


  .top .date {
    top: -135%;
  }

  .bottom .date {
    bottom: 310%;
  }


  .top {
    bottom: 40%;
  }

  .bottom {
    top: 57%;
  }

  .date {
    font-size: 4em;
  }

  .day {
    top: 5px;
    font-size: .9em;
  }

  .back-top {
    bottom: 40%;
    height: 53%;
    transform: rotateX(-88.3deg);
  }



  .back-bottom {
    top: 52%;
    height: 50%;
  }





  .button-container {
    max-width: 200px;

  }



  .button {
    width: 130px;
    height: 40px;
    line-height: 40px;
    font-size: .8em;
  }


  .button:before {
    height: 1px !important;
  }


  .button {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }
}

.info legend{
  position: static;
}
.info .field{
  left: 0;
}
.info label{
  right: 20px;
}