.fmgVwCalc {
  padding: 20px;
  margin: 0;
  max-width: 800px;
  text-align: left;
}

.fmgVwCalc__section {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Removes space above the calculators */
#vwRoiCalcTsbForm, #vwRoiCalcDebForm {
  margin-top: -45px !important;
}
/* Hides Cost Calculator Text and Icon*/
.fmgVwCalc__row.fmgVwCalc--flexCenter.fmgVwCalc--mb20 {
  display: none;
}

.fmgVwCalc__bigText {
  display: block;
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
}

.fmgVwCalc h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 0;
}

.fmgVwCalc p {
  font-size: 16px !important;
  line-height: 24px;
  margin: 2px 0;
}

.fmgVwCalc__calcContainer {
  padding: 0;
  margin: 0;
  /* Set pad/margin/bg color in surrounding page code */
 }

.fmgVwCalc__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fmgVwCalc__col3 {
  width: 33.33%;
}

.fmgVwCalc__col2 {
  width: 50%;
}

.fmgVwCalc label {
  font-size: 16px !important;
  display: block;
  font-weight: 700;
}

.fmgVwCalc.fmgVwCalc input {
  max-width: 200px;
  width: 100%;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  font-size: 15px;
  line-height: 15px;
  border: 1px solid #c7c7c7;
}

.fmgVwCalc__inputIcon {
  position: relative;
}

.fmgVwCalc__inputIcon>i {
  position: absolute;
  display: block;
  bottom: 18px;
  left: 10px;
  font-size: 15px !important;
  line-height: 15px;
  pointer-events: none;
  text-align: center;
  font-style: normal;
}

.fmgVwCalc .fmgVwCalc__inputIcon input {
  padding-left: 26px;
}

.fmgVwCalc input.fmgVwCalc__total {
  background-color: #FFD5C8;
}

.fmgVwCalc input[name="grand_total_loss"].fmgVwCalc__total {
  background-color: #9eefa5;
}

.fmgVwCalc__costIcon {
  display: inline-block;
  margin-right: 12px;
  width: 40px;
  height: 40px;
}

.fmgVwCalc__email {
  text-align: left;
}

.fmgVwCalc__email input#vwRoiEmail {
  padding: 15px 20px;
  max-width: 300px;
}

.fmgVwCalc__submitContainer {
  position: relative;
  display: flex;
  align-items: center;
}

.fmgVwCalc__submit {
  margin: 20px 0;
}

.fmgVwCalc__spinner {
  display: inline-block;
  width: 70px;
  height: 70px;
  transform: scale(-.3);
  display: none;
}

.fmgVwCalc__spinner div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #cb1c00;
  border-radius: 50%;
  animation: roi-spinner 1.2s linear infinite;
}

.fmgVwCalc__spinner div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.fmgVwCalc__spinner div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.fmgVwCalc__spinner div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.fmgVwCalc__spinner div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.fmgVwCalc__spinner div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.fmgVwCalc__spinner div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.fmgVwCalc__spinner div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.fmgVwCalc__spinner div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.fmgVwCalc__spinner div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.fmgVwCalc__spinner div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.fmgVwCalc__spinner div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.fmgVwCalc__spinner div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes roi-spinner {

  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

@media (max-width: 700px) {
  .fmgVwCalc__col3 {
    width: 100%;
  }

  .fmgVwCalc input {
    margin-bottom: 15px;
    max-width: 90%;
  }

  .fmgVwCalc__inputIcon>i {
    bottom: 24px;
  }
}

/* UTILITIES */
.fmgVwCalc--tu {
  text-transform: uppercase !important;
}

.fmgVwCalc--mb20 {
  margin-bottom: 20px !important;
}

.fmgVwCalc--mb40 {
  margin-bottom: 40px !important;
}

.fmgVwCalc--mt40 {
  margin-top: 40px !important;
}

.fmgVwCalc--flexCenter {
  justify-content: center !important;
}

.fmgVwCalc--green {
  color: #316E22 !important;
}


.fmgVwCalc span.tooltiptext {
  position: absolute;
  width: 200px;
  background-color: #AAF0D1 ;
  padding: 10px;
  font-size: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  transition: visibility 0.2s, opacity 0.2s ease-in-out;
  z-index: 1000;
}

