
/* ----------------- */
 .verify-otp-input {
    display: none;
 }
 .verify-otp-button {
  display: flex;
 }
 .Mora_settings_icon {
  display: none;
    animation-name: rotate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    width: 30px;
    height: 30px;
    margin: 7px;
 }
 .verify-otp-input > div {
  display: flex;
  margin: 10px;
 }
 @keyframes rotate {
   from {
     transform: rotate(0deg);
   }

   to {
     transform: rotate(360deg);
   }
 }
@media only screen and (min-width: 1024px) {

}

/*  Phone  : 767px   ----   */
@media only screen and (max-width: 767px) {

}

/*  Phone  : 480px   ----   */
@media only screen and (max-width: 767px) and (min-width: 480px) {}

/* Phone  : 320px */
@media only screen and (max-width: 479px) {}
