:root {
  --main-font: SF UI Text --main-color: #000000;
}

@font-face {
  font-family: 'untitled-font-3';
  src: url('../font/stores/fontRuler/fonts/untitled-font-3.woff');
  font-weight: normal;
  font-style: normal;
}

#szb-vfr-recommendation {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 13px;
  color: var(--main-color);
  font-family: var(--main-font);
  margin-bottom: 10px;
  margin-top: 10px;
}

#szb-vfr-recommendation b {
  display: contents;
  font-weight: bold;
}

.vfr__container {
  width: 104%;
}

.szb-vfr-btns {
  justify-content: center;
  margin-top: 2rem;

}

.vfr__button--clean,
.vfr__button--clean-icon {
  padding: 10px 14px;
  border: 1px solid #999;
  line-height: normal;
  text-transform: uppercase;
  font-size: 12px;
  white-space: inherit;
  position: relative;
  z-index: 1;
  border-radius: 100px;
  margin-bottom: 20px;
  margin-top: 10px;
  box-shadow: none !important;
  outline: 0;
  letter-spacing: 0;
  width: 100%;
  justify-content: center;
  background-color: #e9e9e9;
}

.vfr__button--clean-icon:hover,
.vfr__button--clean:hover {
  text-decoration: none;
}


button#szb-vfr-button:before {
  background: url(https://szb-tenants-production.s3.amazonaws.com/2392/rainbow_icon.svg) center center / 100% 100% no-repeat;
  margin-top: -4px;
  display: flex;
  height: 20px;
  width: 20px;
  content: '';
  margin-right: 5px;
  margin-bottom: -2%;
  animation: sway 1s ease-in-out infinite alternate;
}

button#szb-measurements-button:before {
  background: url(https://szb-tenants-production.s3.amazonaws.com/2392/kite_icon.svg) center center / 100% 100% no-repeat;
  display: flex;
  height: 20px;
  width: 20px;
  content: '';
  margin-right: 5px;
  font-weight: 700;
}

button#szb-vfr-button:after {
  content: 'new';
  color: white;
  background: black;
  font-size: 12px;
  margin-left: 9px;
  text-transform: uppercase;
  padding: 4px;
  border-radius: 4px;
}


@media screen and (max-width: 768px) {
  #szb-vfr-recommendation {
    font-size: 13px !important;
    margin-top: 2rem;
    margin-bottom: -1rem;

  }

  .vfr__container {
    margin-left: -5px;
  }

  .vfr__button--clean,
  .vfr__button--clean-icon {
    margin: 0px 0px 0px 0px !important;
    padding: 0px !important;
    font-size: 10px !important;
    width: 100%;
    justify-content: center;
  }

  button#szb-vfr-button {
    margin-right: 10px !important;
  }

  button#szb-vfr-button:after {
    content: 'new';
    color: white;
    background: black;
    font-size: 9px !important;
    margin-left: 9px;
    text-transform: uppercase;
    padding: 4px;
    border-radius: 4px;
  }


}

div.vfr__container--backdrop.szb-modal-open,
iframe#szb-modal {
  z-index: 99999999999999999 !important;
}

@keyframes sway {
  from {
    transform: rotate(-10deg);
  }

  to {
    transform: rotate(10deg);
  }
}