.btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 0.0625rem solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: #2a2d37;
  line-height: 1.5;
  -webkit-appearance: none;
  border-radius: 0;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out; }

.btn:hover {
  text-decoration: none; }

.btn:focus,
button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.button:disabled,
.btn:disabled,
.btn.disabled {
  opacity: 0.65;
  pointer-events: none; }

.btn-profile {
  color: #222222;
  background-color: transparent;
  border-color: #222222;
  min-height: 42px; }
  .btn-profile:hover {
    color: #fff;
    background-color: #222222;
    border-color: #222222; }
  .btn-profile:focus, .btn-profile.focus {
    box-shadow: 0 0 0 0.2rem rgba(20, 20, 20, 0.5); }

.btn-dark {
  color: #fff;
  background-color: #222222;
  border-color: #222222;
  min-height: 38px; }
  .btn-dark:hover {
    color: #fff;
    background-color: #2a2d37;
    border-color: #2a2d37; }
  .btn-dark:focus, .btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(20, 20, 20, 0.5); }
  .btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #c2c2c2;
    border-color: #c2c2c2; }

.btn-yellow,
.btn-warning {
  color: #fff;
  background-color: #efa603;
  border-color: #efa603;
  min-height: 38px; }
  .btn-yellow:hover,
  .btn-warning:hover {
    color: #fff;
    background-color: #ffc107;
    border-color: #ffc107; }
  .btn-yellow:focus, .btn-yellow.focus,
  .btn-warning:focus,
  .btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 203, 16, 0.5); }
  .btn-yellow.disabled, .btn-yellow:disabled,
  .btn-warning.disabled,
  .btn-warning:disabled {
    color: #fff;
    background-color: #c2c2c2;
    border-color: #c2c2c2; }

.btn-account,
.btn-terms {
  border: 0;
  margin-top: -0.375rem; }
  .btn-account:hover,
  .btn-terms:hover {
    text-decoration: underline; }
  .btn-account:focus, .btn-account.focus,
  .btn-terms:focus,
  .btn-terms.focus {
    box-shadow: none; }

.btn-account {
  color: #efa603;
  background-color: transparent;
  border-color: transparent; }

.btn-terms {
  color: #016eff;
  background-color: transparent;
  border-color: transparent; }
  .btn-terms:hover {
    color: #016eff; }

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  -webkit-appearance: none;
  border-radius: 0;
  background-color: #fff;
  text-overflow: ellipsis;
  background-clip: padding-box;
  border: 0.0625rem solid #caced3;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out; }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus {
    color: #464646;
    background-color: #fff;
    border-color: #efa603;
    outline: 0; }
    .form-control:focus ::placeholder {
      opacity: 0; }
  .form-control::-webkit-input-placeholder {
    color: #8d8d8d;
    opacity: 1;
    font-weight: 500; }
  .form-control::-moz-placeholder {
    color: #8d8d8d;
    opacity: 1;
    font-weight: 500; }
  .form-control:-ms-input-placeholder {
    color: #8d8d8d;
    opacity: 1;
    font-weight: 500; }
  .form-control::-ms-input-placeholder {
    color: #8d8d8d;
    opacity: 1;
    font-weight: 500; }
  .form-control::placeholder {
    color: #8d8d8d;
    opacity: 1;
    font-weight: 500; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #e9ebee;
    opacity: 1;
    font-weight: 500; }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield; }

.field {
  display: flex;
  flex-flow: column; }
  .field input {
    font-size: 1rem;
    min-height: 4.5rem;
    padding: 2.2rem 1.5rem 1.25rem; }
  .field label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #8d8d8d; }
  .field label,
  .field input {
    transition: all 0.2s;
    touch-action: manipulation; }
  .field input:placeholder-shown + label {
    position: absolute;
    width: max-content;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: left bottom;
    transform: translate(1.5rem, 1.5rem) scale(1.3); }
  .field ::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit; }
  .field :-moz-placeholder {
    opacity: 0;
    transition: inherit; }
  .field ::-moz-placeholder {
    opacity: 0;
    transition: inherit; }
  .field :-ms-input-placeholder {
    opacity: 0;
    transition: inherit; }
  .field ::-ms-input-placeholder {
    opacity: 0;
    transition: inherit; }
  .field input:focus::-webkit-input-placeholder {
    opacity: 1; }
  .field input:focus:-moz-placeholder {
    opacity: 1; }
  .field input:focus::-moz-placeholder {
    opacity: 1; }
  .field input:focus:-ms-input-placeholder {
    opacity: 1; }
  .field input:focus::-ms-input-placeholder {
    opacity: 1; }
  .field input:not(:placeholder-shown) + label,
  .field input:focus + label {
    position: absolute;
    max-width: max-content;
    transform: translate(1.5rem, 0.5rem) scale(1);
    pointer-events: none; }

.dropdown.dropdown-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.btn-cc {
  width: 75px;
  height: 35px;
  padding: 0.5rem 0.3rem;
  border: 0.0625rem solid #caced3;
  white-space: nowrap;
  background-image: url("/assets/images/chev-black.svg");
  background-position: 85% 49%;
  background-repeat: no-repeat;
  cursor: pointer; }

.dropdown-list {
  position: relative;
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 0px; }

.dropdown-list li {
  display: flex;
  font-size: 12px;
  padding: 5px 15px;
  cursor: pointer;
  font-weight: 400; }

.dropdown-list li:hover {
  background-color: rgba(0, 0, 0, 0.05);
  transition: 0.5s all ease; }

.menu {
  position: absolute;
  top: 40px;
  left: 0;
  width: 200px;
  height: 200px;
  overflow: auto;
  z-index: 3;
  background: #fff;
  background-clip: padding-box;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
  max-height: 0;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */ }
  .menu.showDD {
    max-height: 200px;
    transition: all 0.15s ease-in-out; }
  .menu.hideDD {
    pointer-events: none;
    transition: all 0.25s ease-in-out; }
  .menu::-webkit-scrollbar {
    width: 0.375rem; }
  .menu::-webkit-scrollbar-track {
    background: transparent; }
  .menu::-webkit-scrollbar-thumb {
    background: #dee0e8;
    border-radius: 0.5rem; }
  .menu::-webkit-scrollbar-thumb:hover {
    background: #555; }

.c-phone {
  display: inline-flex;
  width: 40px;
  color: #8d8d8d; }

.c-name {
  display: inline-flex;
  width: 7.5rem;
  color: #222222; }

.c-srh {
  width: 10rem !important;
  margin: 0.625rem 0.938rem; }

.cc-srh {
  position: sticky;
  top: 0px;
  padding: 0.125rem 0 0.063rem;
  background-color: #fff;
  z-index: 1020; }

.loader,
.loader:after {
  border-radius: 50%;
  width: 3rem;
  height: 3rem; }

.loader {
  margin: 25% auto;
  font-size: 0.625rem;
  position: relative;
  text-indent: -9999em;
  border-top: 0.3rem solid rgba(245, 214, 79, 0.2);
  border-right: 0.3rem solid rgba(245, 214, 79, 0.2);
  border-bottom: 0.3rem solid #efa603;
  border-left: 0.3rem solid #efa603;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.6s infinite linear;
  animation: load8 0.6s infinite linear; }

.op-loader,
.op-loader:after {
  border-radius: 50%;
  width: 1rem;
  height: 1rem; }

.op-loader {
  position: relative;
  text-indent: -9999em;
  border-top: 0.188rem solid transparent;
  border-right: 0.188rem solid #efa603;
  border-bottom: 0.188rem solid #efa603;
  border-left: 0.188rem solid #efa603;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.4s infinite linear;
  animation: load8 0.4s infinite linear; }

.op-mar {
  margin: auto auto 1rem 3.7rem; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.loading {
  position: fixed;
  z-index: 999;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1030;
  background: transparent;
  overflow: hidden;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0); }

.modal-bg {
  background-color: rgba(0, 0, 0, 0.14); }

.modal.d-block {
  overflow-x: hidden;
  overflow-y: auto !important; }

.modal-main {
  display: flex;
  position: relative;
  flex-direction: column;
  margin: 0 0 0 auto;
  background: #fff;
  min-width: 31rem;
  background-color: #fff;
  height: 100%;
  overflow-y: auto;
  animation-name: modalFade;
  animation-duration: 0.4s; }

@keyframes modalFade {
  from {
    transform: translateX(100%);
    opacity: 0; }
  to {
    transform: translateX(0);
    opacity: 1; } }

.modal-content {
  width: 100%;
  margin: 0 auto;
  animation-name: modalFade;
  animation-duration: 0.4s; }
  .modal-content.modal-height {
    display: flex;
    height: 100%; }

.modal-close {
  display: flex; }
  .modal-close .btn-none {
    padding: 0 1.5rem 0 0; }
    .modal-close .btn-none:hover img {
      transform: rotate(180deg);
      transition: transform 0.2s ease-in-out; }
    .modal-close .btn-none:focus {
      outline: 0;
      box-shadow: none; }

.login .bold,
.signup .bold,
.otp .bold,
.edit-profile .bold {
  font-size: 1.75rem;
  font-weight: 600;
  color: #222222;
  line-height: 2; }

.login .modal-field,
.signup .modal-field,
.otp .modal-field,
.edit-profile .modal-field {
  min-height: 5.75rem;
  transition: all 0.4s ease-in-out; }
  .login .modal-field .phone-group,
  .signup .modal-field .phone-group,
  .otp .modal-field .phone-group,
  .edit-profile .modal-field .phone-group {
    border: 0.0625rem solid #caced3; }
    .login .modal-field .phone-group:focus-within,
    .signup .modal-field .phone-group:focus-within,
    .otp .modal-field .phone-group:focus-within,
    .edit-profile .modal-field .phone-group:focus-within {
      border: 0.0625rem solid #efa603 !important; }
      .login .modal-field .phone-group:focus-within .d-flex .btn-cc,
      .signup .modal-field .phone-group:focus-within .d-flex .btn-cc,
      .otp .modal-field .phone-group:focus-within .d-flex .btn-cc,
      .edit-profile .modal-field .phone-group:focus-within .d-flex .btn-cc {
        padding: 2.13rem 0.5rem 1rem !important;
        background-position: 85% 61% !important; }
    .login .modal-field .phone-group .form-control:not(.c-srh),
    .signup .modal-field .phone-group .form-control:not(.c-srh),
    .otp .modal-field .phone-group .form-control:not(.c-srh),
    .edit-profile .modal-field .phone-group .form-control:not(.c-srh) {
      border: 0; }
    .login .modal-field .phone-group .showDD.menu,
    .signup .modal-field .phone-group .showDD.menu,
    .otp .modal-field .phone-group .showDD.menu,
    .edit-profile .modal-field .phone-group .showDD.menu {
      top: 4.563rem; }
    .login .modal-field .phone-group .btn-cc,
    .signup .modal-field .phone-group .btn-cc,
    .otp .modal-field .phone-group .btn-cc,
    .edit-profile .modal-field .phone-group .btn-cc {
      border: 0;
      padding: 1.6rem 0.5rem;
      height: 4.5rem;
      transition: all 0.2s ease-in-out; }
    .login .modal-field .phone-group .d-flex.cc-pad .btn-cc,
    .signup .modal-field .phone-group .d-flex.cc-pad .btn-cc,
    .otp .modal-field .phone-group .d-flex.cc-pad .btn-cc,
    .edit-profile .modal-field .phone-group .d-flex.cc-pad .btn-cc {
      padding: 2.13rem 0.5rem 1rem !important;
      background-position: 85% 61% !important; }

.login .btn-dark,
.signup .btn-dark,
.otp .btn-dark,
.edit-profile .btn-dark {
  min-height: 3.5rem;
  padding: 0 !important; }

.edit-profile hr {
  color: #ececec; }

.edit-profile .verify-otp {
  margin-top: 0.5rem; }

.edit-profile .ep-close {
  margin-bottom: 0.65rem; }
  .edit-profile .ep-close img {
    width: 0.75rem;
    height: 0.75rem;
    cursor: pointer; }
    .edit-profile .ep-close img:hover {
      transform: rotate(180deg);
      transition: transform 0.2s ease-in-out; }

.edit-profile .modal-field.ep-disable {
  transition: all 0.4s ease-in-out;
  position: relative;
  min-height: 4.5rem; }
  .edit-profile .modal-field.ep-disable .phone-group {
    border: none; }
    .edit-profile .modal-field.ep-disable .phone-group .dropdown {
      cursor: not-allowed; }
    .edit-profile .modal-field.ep-disable .phone-group .btn-cc {
      pointer-events: none; }
  .edit-profile .modal-field.ep-disable .form-control:disabled {
    cursor: not-allowed;
    border: none;
    background-color: transparent;
    padding-left: 0;
    font-size: 1.125rem; }
  .edit-profile .modal-field.ep-disable label {
    transform: translate(0, 0.5rem) scale(1); }
  .edit-profile .modal-field.ep-disable .change {
    position: absolute;
    right: 0;
    bottom: 1.1rem; }
    .edit-profile .modal-field.ep-disable .change .btn-change {
      font-size: 0.75rem;
      font-weight: bold;
      color: #faa821;
      padding: 0; }
      .edit-profile .modal-field.ep-disable .change .btn-change:hover {
        text-decoration: underline; }
      .edit-profile .modal-field.ep-disable .change .btn-change:focus {
        outline: 0;
        box-shadow: none; }

.otp .modal-field .phone-group {
  cursor: not-allowed; }
  .otp .modal-field .phone-group .btn-cc,
  .otp .modal-field .phone-group .form-control {
    pointer-events: none;
    cursor: not-allowed; }

@media (min-width: 577px) and (max-width: 991px) {
  .modal-main {
    width: 31rem; } }

@media (min-width: 992px) {
  .modal-main {
    width: 36.375rem; } }

@media (max-width: 576px) {
  .modal-main {
    min-width: 0;
    width: 100%; }
  .modal-content {
    padding: 0 1rem 1rem; }
  .route-img {
    width: 80%; } }

@media (min-width: 577px) {
  .login,
  .signup,
  .otp {
    width: 18.75rem; }
  .edit-profile {
    width: 21rem; }
  .modal-content {
    padding: 0 3.75rem 1rem; } }

.timer span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #727272; }
  .timer span b {
    color: #faa821; }

.timer .btn-resend {
  color: #faa821;
  text-decoration: underline;
  padding: 0; }
  .timer .btn-resend:hover {
    color: #222222; }
  .timer .btn-resend:focus {
    outline: 0;
    box-shadow: none; }

