.hidden {
        display: none;
}

.dots-cont {
  position: relative;
}

.dot {
  width: 4px;
  height: 4px;
  background: #22303e;
  display: inline-block;
  border-radius: 50%;
  right: 0px;
  bottom: 0px;
  margin: 0px 1px;
  position: relative;
  animation: jump 1s infinite;
}

.dots-cont .dot-1 {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}

.dots-cont .dot-2 {
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}

.dots-cont .dot-3 {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

@keyframes jump {
    0%   {bottom: 0px;}
    20%  {bottom: 5px;}
    40%  {bottom: 0px;}
}

@-moz-keyframes jump {
    0%   {bottom: 0px;}
    20%  {bottom: 5px;}
    40%  {bottom: 0px;}
}

@-webkit-keyframes jump {
    0%   {bottom: 0px;}
    20%  {bottom: 5px;}
    40%  {bottom: 0px;}
}

@-o-keyframes jump {
    0%   {bottom: 0px;}
    20%  {bottom: 5px;}
    40%  {bottom: 0px;}
}

@-ms-keyframes jump {
    0%   {bottom: 0px;}
    20%  {bottom: 5px;}
    40%  {bottom: 0px;}
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

.label {
    font-weight: bold;
    font-size: 18px;
}

.important-txt {
    font-weight: normal;
    font-size: 15px;
}

.required-field {
    color: red;
}

.sms-form__button {
    background-color: #ffffff !important;
    border: 2px solid #ffc709;
    border-radius: 0px;
    color: black;
    padding: 10px 40px 10px 30px;
    text-transform: uppercase;
    text-decoration: none;
    transition: border 0.5s ease-in-out, background-color 0.25s ease-in-out;
}

.sms-form__button:hover {
    color: black !important;
    background-color: #ffc709 !important;
    border: 2px solid black;
}

.sms-form__button:focus {
    color: black !important;
    background-color: #ffc709 !important;
    border: 2px solid black;
}

.sms-form__button:active {
    color: black !important;
    background-color: #c4b47f !important;
}
