

.callback {
  width: 450px;
  padding: 10px;
}

input {
  margin-bottom: 5px;
  width: 100%;
}

.bot {
  position: relative;
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: center;
  margin-top: 6px;
  margin-bottom: 10px;
}
.bot p {
  color: rgba(0, 0, 0, 0.4);
  border: 0px solid rgba(255, 255, 255, 0.5);
  background: #fff;
  overflow: hidden;
  display: inline-block;
  width: 150px;
  height: 32px;
  white-space: nowrap;
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
}

.bot .fa {
  font-size: 32px;
  vertical-align: middle;
  transform: rotate(90deg);
  transition: all 0.4s;
  color: rgba(0, 0, 0, 0.4);
  background-color: #fff;
  margin-left: 3px;
  line-height: 32px;
}
.bot span {
  padding-left: 10px;
  font-size: 12px;
  font-family: "Tahoma", sans-serif;
  text-transform: uppercase;
  line-height: 32px;
}

.bot:hover p, .bot:hover .fa {
  color: rgba(0, 0, 0, 0.7);
}

.bot:hover .fa {
  background-color: #fff;
}

.bot .fa-check-circle {
  color: rgba(0, 0, 0, 0.7);
  transform: rotate(0deg);
}

.bot .chk {
  height: 32px;
  width: 32px;
  background: transparent;
  border: none;
}
.bot .chk .fa {
  margin: auto;
  width: 32px;
  height: 32px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}

.shake {
  transform-origin: center;
  animation-name: shake;
  animation-duration: 400ms;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

@keyframes shake {
  0% {
    transform: none;
  }
  12.5% {
    transform: translateX(-6px) rotateY(-5deg);
  }
  37.5% {
    transform: translateX(5px) rotateY(4deg);
  }
  62.5% {
    transform: translateX(-3px) rotateY(-3deg);
  }
  87.5% {
    transform: translateX(2px) rotateY(2deg);
  }
  100% {
    transform: none;
  }
}
.alert.hidden {
  display: none !important;
}

.alert,
.alert-warning,
.alert-danger {
  width: auto;
  text-align: center;
  text-transform: uppercase;
  margin: auto;
  font-size: 14px;
  font-family: "Tahoma", sans-serif;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0);
  border: none;
  white-space: nowrap;
  padding: 0;
  border-radius: 5px;
  transition: all 0.4s;
  animation-name: pulse;
  animation-iteration-count: infinite;
  animation-duration: 0.6s;
}

@keyframes pulse {
  0% {
    color: rgba(0, 0, 0, 0.4);
  }
  25% {
    color: rgba(0, 0, 0, 0.9);
  }
  50% {
    color: rgba(0, 0, 0, 0.9);
  }
  100% {
    color: rgba(0, 0, 0, 0.4);
  }
}
.success {
  display: none;
}

.button {
  display: block;
  position: relative;
  width: 140px;
  height: 44px;
  cursor: pointer;
  margin: auto;

  border-radius: 4px;

  font-size: 16px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;

  outline: none;
}
.button:hover {
  cursor: pointer;
}
.button:after {
  content: "";
  display: block;
  position: absolute;
  width: 92%;
  height: 10%;
  border-radius: 50%;

  opacity: 0.4;
  bottom: -10px;
}

.selectize-dropdown-content {
  font-size: 16px;
}
.selectize-dropdown-content .active {
  background: gray;
  color: white;
}
.selectize-dropdown-content .item:hover {
  background: gray;
  color: white;
}

.selectize-control.single .selectize-input,
.selectize-control input {
  font-size: 16px;
}