body {
  font-family: "Montserrat", sans-serif;
  background-color: #F5F8FF;
}
body nav a {
  font-weight: 500;
}
body .avatar {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #008080;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
body .has-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body .call-btn {
  color: #008080;
}
body .connecting-to-call {
  height: 450px;
  background-image: url("../images/call-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
body .connecting-to-call a {
  position: absolute;
  bottom: 25px;
  right: auto;
  left: auto;
  transform: translateX(-50%);
}
body .custom-file-input {
  width: 125px;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
}
body .custom-file-input:hover {
  background-color: #008080;
}
body .hidden {
  display: none;
}
body .text-primary {
  color: #008080 !important;
}
body .text-secondary {
  color: #BCBCBC !important;
}
body .btn, body .form-control, body .card {
  border-radius: 20px !important;
}
body .btn-primary {
  background-color: #008080;
  border-color: #008080;
}
body .btn-primary:hover {
  background-color: #008080;
  border-color: #008080;
}

body .btn-primary:disabled {
    background-color: #0b9191;
    border-color: #0b9191;
}

body .btn-back {
    position: absolute;
    top: 0;
    left: 0;
}

section#welcome {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}/*# sourceMappingURL=style.css.map */

.bounce {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    70% {
        transform: translateY(0%);
    }

    80% {
        transform: translateY(-15%);
    }

    90% {
        transform: translateY(0%);
    }

    95% {
        transform: translateY(-7%);
    }

    97% {
        transform: translateY(0%);
    }

    99% {
        transform: translateY(-3%);
    }

    100% {
        transform: translateY(0);
    }
}

.avatar-xl {
    height: 120px!important;
    width: 120px!important;
    margin: 10px auto;
}

