* {
  font-family: "YB";
}

@font-face {
  font-family: "YB";
  src: url("https://support.baziket.com/YekanBakhRegular.ttf");
}
body {
  overflow-x: hidden;
}

.homeHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 20rem;
  width: 100vw;
  background-color: #e34246;
}
.homeHeader img {
  margin-top: 2rem;
  width: 150px;
  height: 150px;
}
.homeHeader .subtitle {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 0;
  width: 100vw;
  height: 50px;
  background-color: #eee;
  transform: translate(0, 100%);
}
.homeHeader .subtitle h2 {
  margin: calc((50px - 2rem) / 2) 0;
}

.homeHeaderFix {
  position: relative;
  margin: 0;
  margin-top: calc(20rem + 50px);
  flex-grow: 1;
}

.footer {
  bottom: 0;
  margin-top: 2rem;
  padding: 1rem 20rem;
  margin-left: 50%;
  transform: translateX(-50%);
  background-color: #ddd;
  width: 100vw;
}
@media screen and (max-width: 1199px) {
  .footer {
    padding: 1rem 15rem;
  }
}
@media screen and (max-width: 991px) {
  .footer {
    padding: 1rem 10rem;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 1rem 5rem;
  }
}
@media screen and (max-width: 565px) {
  .footer {
    padding: 1rem 3rem;
  }
}

.progressBar {
  position: fixed;
  background-color: #fff;
  height: 2px;
  top: 0;
  left: 0;
  z-index: 2;
}

.progressBarStart {
  -webkit-animation: progressGo 500ms;
          animation: progressGo 500ms;
}

@-webkit-keyframes progressGo {
  0% {
    width: 0%;
    opacity: 1;
  }
  60% {
    width: 100%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes progressGo {
  0% {
    width: 0%;
    opacity: 1;
  }
  60% {
    width: 100%;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.alert {
  margin-bottom: 0;
}

.formLoading {
  width: 3rem;
  height: 3rem;
}
.formLoading i {
  font-size: 1.3rem;
  -webkit-animation: formLoadingAnimation 2s infinite linear;
          animation: formLoadingAnimation 2s infinite linear;
}
@-webkit-keyframes formLoadingAnimation {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes formLoadingAnimation {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

.back {
  left: 2rem;
  top: 2rem;
  transition: 300ms opacity ease-in-out;
}

.type-btn-container,
.type-btns {
  width: 7em;
  height: 5em;
}

.type-btn {
  cursor: pointer;
  border: 1px solid #e0e0e2;
  border-radius: 0.5rem;
  padding: 1rem 0.75rem;
  width: 30rem;
  margin: 0.5rem;
}
.type-btn i:not(.fa-chevron-left) {
  color: #ef4056;
  font-size: 1.3rem;
  margin: 0.5rem 1.3rem;
}
.type-btn i.fa-chevron-left {
  margin-left: 0.5rem;
}

.type-btns:not(:active) {
  box-shadow: 3px 3px 2px #ff7c7c !important;
}

.w-90 {
  width: 90%;
}

input.form-control {
  transform: translateY(-0.4rem);
}
