/* verication code input */
*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
  }
  :root {
    --spacing: 4px;
    /* --hue: 400; */
    /* --background1: #2c323a; */
    /* --background2: #1d2126; */
    /* --background3: #0b0d0f; */
    /* --brand1: #000; */
    /* --text1: #fff; */
    /* --text2: #e6e6e6; */
  }
  code {
    background: var(--background3);
  }
  
  /* @media only screen and (max-width: 600px) { */
    .number-code > div {
      display: flex;
    }
    .number-code > div > input:not(:last-child) {
      margin-right: calc(var(--spacing) * 2);
    }
    .content-area {
      display: flex;
      flex-direction: column;
      gap: calc(var(--spacing) * 2);
      background: var(--background2);
      padding: var(--spacing);
      border-radius: var(--spacing);
      max-width: 100%;
    }
    .content-area p {
      color: var(--text2);
      font-size: 0.8em;
    }
    input.code-input {
      font-size: 18px;
      width: 1px;
      text-align: center;
      flex: 1 0 1em;
      border-radius: 0px;
      background: transparent;
      box-shadow: none;
      border: none;
      border-bottom: 2px solid #93a2b6;
    }
  
    input.code-input:focus {
      border-color: #93a2b6 !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      outline: none !important;
    }
  
    input.code-input:-webkit-autofill{
        -webkit-text-fill-color: #000;
    }


  /* } */
  /* END Verification Code INput */


  .dialog-xm{
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.5);
  }
  .dialog-content-xm{
    box-shadow: 0 4px 8px 0 rgba(54, 39, 39, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: #172D3E;
    padding: 20px;
    width: 80%;
    border-radius: 8px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
  }
  @media(min-width: 1200px) {
    .dialog-content-xm {
      width: 35%;
    }
  }

  @media (max-width:576px){
    .dialog-content-xm{
      top: auto;
      bottom: 10px;
      width: 90%;
    }
  }

.dialog-content-xm-text{
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  left: 50px;
}

.add-radius{
  border-radius: 8px !important;
}
.add-radius-md{
  border-radius: 14px !important;
}
.add-radius-lg{
  border-radius: 20px !important;
}
.add-radius-mini{
  border-radius: 4px;
}

.bottom-button-wrp{
  position: fixed;
  bottom: 0;
  padding-bottom: 30px;
  left: 0;
  width: 100%;
}

@media (max-width:576px){
  .bottom-button-wrp{
    position: fixed;
    bottom: 0;
    padding-bottom: 30px;
    left: 0;
    width: 100%;
  }
  .border-left-mobile-none{
    border-left: none !important;
  }
}

.capitalize{
  text-transform: capitalize;
}

/* Preloader */
.page-preloader{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 28928;
}
.page-preloader-wrapper{
  position: relative;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pre-loader {
  width: 48px;
  height: 48px;
  border: 5px solid #fff;
  border-bottom-color: #004cc0;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  left: 25%;
  top: 25%;
  position: relative;
  transform: translate(-50%, -50%);
  }

  @keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
  }  
/* End preloader */


.pop-up-window-wrapper{
  position: fixed;
  z-index: 99;
  top: 20px;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.pop-up-window{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
  border-radius: 4px;
}

@media (max-width:576px){
  .border-sm-none{
    border: none !important;
  }
}