
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
:root{--toastify-color-light:#fff;--toastify-color-dark:#121212;--toastify-color-info:#3498db;--toastify-color-success:#07bc0c;--toastify-color-warning:#f1c40f;--toastify-color-error:#e74c3c;--toastify-color-transparent:hsla(0,0%,100%,.7);--toastify-icon-color-info:var(--toastify-color-info);--toastify-icon-color-success:var(--toastify-color-success);--toastify-icon-color-warning:var(--toastify-color-warning);--toastify-icon-color-error:var(--toastify-color-error);--toastify-toast-width:320px;--toastify-toast-background:#fff;--toastify-toast-min-height:64px;--toastify-toast-max-height:800px;--toastify-font-family:sans-serif;--toastify-z-index:9999;--toastify-text-color-light:#757575;--toastify-text-color-dark:#fff;--toastify-text-color-info:#fff;--toastify-text-color-success:#fff;--toastify-text-color-warning:#fff;--toastify-text-color-error:#fff;--toastify-spinner-color:#616161;--toastify-spinner-color-empty-area:#e0e0e0;--toastify-color-progress-light:linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);--toastify-color-progress-dark:#bb86fc;--toastify-color-progress-info:var(--toastify-color-info);--toastify-color-progress-success:var(--toastify-color-success);--toastify-color-progress-warning:var(--toastify-color-warning);--toastify-color-progress-error:var(--toastify-color-error)}.Toastify__toast-container{z-index:var(--toastify-z-index);-webkit-transform:translateZ(var(--toastify-z-index));position:fixed;padding:4px;width:var(--toastify-toast-width);box-sizing:border-box;color:#fff}.Toastify__toast-container--top-left{top:1em;left:1em}.Toastify__toast-container--top-center{top:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--top-right{top:1em;right:1em}.Toastify__toast-container--bottom-left{bottom:1em;left:1em}.Toastify__toast-container--bottom-center{bottom:1em;left:50%;transform:translateX(-50%)}.Toastify__toast-container--bottom-right{bottom:1em;right:1em}@media only screen and (max-width:480px){.Toastify__toast-container{width:100vw;padding:0;left:0;margin:0}.Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right{top:0;transform:translateX(0)}.Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right{bottom:0;transform:translateX(0)}.Toastify__toast-container--rtl{right:0;left:auto}}.Toastify__toast{position:relative;min-height:var(--toastify-toast-min-height);box-sizing:border-box;margin-bottom:1rem;padding:8px;border-radius:4px;box-shadow:0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;max-height:var(--toastify-toast-max-height);overflow:hidden;font-family:var(--toastify-font-family);cursor:default;direction:ltr;z-index:0}.Toastify__toast--rtl{direction:rtl}.Toastify__toast--close-on-click{cursor:pointer}.Toastify__toast-body{margin:auto 0;-ms-flex:1 1 auto;flex:1 1 auto;padding:6px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.Toastify__toast-body>div:last-child{word-break:break-word;-ms-flex:1;flex:1}.Toastify__toast-icon{-webkit-margin-end:10px;margin-inline-end:10px;width:20px;-ms-flex-negative:0;flex-shrink:0;display:-ms-flexbox;display:flex}.Toastify--animate{animation-fill-mode:both;animation-duration:.7s}.Toastify--animate-icon{animation-fill-mode:both;animation-duration:.3s}@media only screen and (max-width:480px){.Toastify__toast{margin-bottom:0;border-radius:0}}.Toastify__toast-theme--dark{background:var(--toastify-color-dark);color:var(--toastify-text-color-dark)}.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light{background:var(--toastify-color-light);color:var(--toastify-text-color-light)}.Toastify__toast-theme--colored.Toastify__toast--info{color:var(--toastify-text-color-info);background:var(--toastify-color-info)}.Toastify__toast-theme--colored.Toastify__toast--success{color:var(--toastify-text-color-success);background:var(--toastify-color-success)}.Toastify__toast-theme--colored.Toastify__toast--warning{color:var(--toastify-text-color-warning);background:var(--toastify-color-warning)}.Toastify__toast-theme--colored.Toastify__toast--error{color:var(--toastify-text-color-error);background:var(--toastify-color-error)}.Toastify__progress-bar-theme--light{background:var(--toastify-color-progress-light)}.Toastify__progress-bar-theme--dark{background:var(--toastify-color-progress-dark)}.Toastify__progress-bar--info{background:var(--toastify-color-progress-info)}.Toastify__progress-bar--success{background:var(--toastify-color-progress-success)}.Toastify__progress-bar--warning{background:var(--toastify-color-progress-warning)}.Toastify__progress-bar--error{background:var(--toastify-color-progress-error)}.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning{background:var(--toastify-color-transparent)}.Toastify__close-button{color:#fff;background:transparent;outline:none;border:none;padding:0;cursor:pointer;opacity:.7;transition:.3s ease;-ms-flex-item-align:start;align-self:flex-start}.Toastify__close-button--light{color:#000;opacity:.3}.Toastify__close-button>svg{fill:currentColor;height:16px;width:14px}.Toastify__close-button:focus,.Toastify__close-button:hover{opacity:1}@keyframes Toastify__trackProgress{0%{transform:scaleX(1)}to{transform:scaleX(0)}}.Toastify__progress-bar{position:absolute;bottom:0;left:0;width:100%;height:5px;z-index:var(--toastify-z-index);opacity:.7;transform-origin:left}.Toastify__progress-bar--animated{animation:Toastify__trackProgress linear 1 forwards}.Toastify__progress-bar--controlled{transition:transform .2s}.Toastify__progress-bar--rtl{right:0;left:auto;transform-origin:right}.Toastify__spinner{width:20px;height:20px;box-sizing:border-box;border:2px solid;border-radius:100%;border-color:var(--toastify-spinner-color-empty-area);border-right-color:var(--toastify-spinner-color);animation:Toastify__spin .65s linear infinite}@keyframes Toastify__bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)}60%{opacity:1;transform:translate3d(-25px,0,0)}75%{transform:translate3d(10px,0,0)}90%{transform:translate3d(-5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)}to{opacity:0;transform:translate3d(2000px,0,0)}}@keyframes Toastify__bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0)}60%{opacity:1;transform:translate3d(25px,0,0)}75%{transform:translate3d(-10px,0,0)}90%{transform:translate3d(5px,0,0)}to{transform:none}}@keyframes Toastify__bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0)}to{opacity:0;transform:translate3d(-2000px,0,0)}}@keyframes Toastify__bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0)}60%{opacity:1;transform:translate3d(0,-20px,0)}75%{transform:translate3d(0,10px,0)}90%{transform:translate3d(0,-5px,0)}to{transform:translateZ(0)}}@keyframes Toastify__bounceOutUp{20%{transform:translate3d(0,-10px,0)}40%,45%{opacity:1;transform:translate3d(0,20px,0)}to{opacity:0;transform:translate3d(0,-2000px,0)}}@keyframes Toastify__bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0)}60%{opacity:1;transform:translate3d(0,25px,0)}75%{transform:translate3d(0,-10px,0)}90%{transform:translate3d(0,5px,0)}to{transform:none}}@keyframes Toastify__bounceOutDown{20%{transform:translate3d(0,10px,0)}40%,45%{opacity:1;transform:translate3d(0,-20px,0)}to{opacity:0;transform:translate3d(0,2000px,0)}}.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left{animation-name:Toastify__bounceInLeft}.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right{animation-name:Toastify__bounceInRight}.Toastify__bounce-enter--top-center{animation-name:Toastify__bounceInDown}.Toastify__bounce-enter--bottom-center{animation-name:Toastify__bounceInUp}.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left{animation-name:Toastify__bounceOutLeft}.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right{animation-name:Toastify__bounceOutRight}.Toastify__bounce-exit--top-center{animation-name:Toastify__bounceOutUp}.Toastify__bounce-exit--bottom-center{animation-name:Toastify__bounceOutDown}@keyframes Toastify__zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes Toastify__zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.Toastify__zoom-enter{animation-name:Toastify__zoomIn}.Toastify__zoom-exit{animation-name:Toastify__zoomOut}@keyframes Toastify__flipIn{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes Toastify__flipOut{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.Toastify__flip-enter{animation-name:Toastify__flipIn}.Toastify__flip-exit{animation-name:Toastify__flipOut}@keyframes Toastify__slideInRight{0%{transform:translate3d(110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInLeft{0%{transform:translate3d(-110%,0,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInUp{0%{transform:translate3d(0,110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideInDown{0%{transform:translate3d(0,-110%,0);visibility:visible}to{transform:translateZ(0)}}@keyframes Toastify__slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(110%,0,0)}}@keyframes Toastify__slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-110%,0,0)}}@keyframes Toastify__slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,500px,0)}}@keyframes Toastify__slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-500px,0)}}.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left{animation-name:Toastify__slideInLeft}.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right{animation-name:Toastify__slideInRight}.Toastify__slide-enter--top-center{animation-name:Toastify__slideInDown}.Toastify__slide-enter--bottom-center{animation-name:Toastify__slideInUp}.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left{animation-name:Toastify__slideOutLeft}.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right{animation-name:Toastify__slideOutRight}.Toastify__slide-exit--top-center{animation-name:Toastify__slideOutUp}.Toastify__slide-exit--bottom-center{animation-name:Toastify__slideOutDown}@keyframes Toastify__spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
body { overflow-y: scroll;}
.global-blue-color {
  color: #1890ff;
}
.global-grey-color {
  color: gray;
}
.global-text-font-size {
  font-size: 14px;
}
.global-text-font-size {
  font-weight: 500;
}

:root {
	--themecolor: #0077db;
	--btnhover:#0a90fd;
	--lightblue: #517bfc;
	--lightbluebg: #e4f3ff;
	--white: #fff;
	--gray: #818181;
	--black: #000;
	--lightgray: #f5f5f5;
	--green: #00a651;
	--red: #f55050;
  }
  
  *{
	font-family: 'Roboto', sans-serif;
  }
  h2,
  h3,
  h4 {
	  font-family: 'Raleway', sans-serif;
  }
  label {
	  font-size: 12px;
	  font-weight: 400;
	  font-family: 'Open Sans', sans-serif;
	  float: left;
  }
  h2 {
	  text-transform: uppercase;
	  margin: 0 0 20px 0;
	  font-weight: 800;
	  font-size: 36px;
	  color: #333;
  }
  
  h3 {
	  font-size: 20px;
	  font-weight: 600;
	  color: #333;
  }
  
  h4 {
	  font-size: 18px;
	  color: #333;
	  font-weight: 600;
  }
  
  h5 {
	  text-transform: uppercase;
	  font-weight: 700;
	  line-height: 20px;
  }
  
  p {
	  font-size: 15px;
  }
  
  p.intro {
	  margin: 12px 0 0;
	  line-height: 24px;
  }
  
  a {
	  color: #608dfd;
	  font-weight: 400;
  }
  
  a:hover,
  a:focus {
	  text-decoration: none;
	  color: #608dfd;
  }
  
  ul,
  ol {
	  list-style: none;
  }
  
  ul,
  ol {
	  padding: 0;
	  webkit-padding: 0;
	  moz-padding: 0;
  }
  
  hr {
	  height: 2px;
	  width: 70px;
	  text-align: center;
	  position: relative;
	  background: #1E7A46;
	  margin-bottom: 20px;
	  border: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', sans-serif;
  }
  .Subs_container {
	width: 612px;
	margin: 0 auto;
	margin-top: 56px;
	position: relative;
  }
  
  @media (max-width: 612px) {
	.Subs_container {
	  width: 100%;
	  margin-top: 57px;
	}
  
  }
  ::-webkit-scrollbar {
	  width: 5px;
	  height: 9px;
	  border-left: 0px solid #eef0f3;
	}
	::-webkit-scrollbar-thumb {
	  background-color: gray;
	}
  .fontRed {
	color: #ed1c24;
  }
  .fontGreen {
   color: #23970c;
  }
  .fontGray {
   color: var(--gray);
  }
  .fontblack{
	color: var(--black);
  }
  .fontBlue {
  color: var(--themecolor);
  }
  /* Help & Support CSS End */
.signin_main {
  background-color: var(--lightbluebg);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nmlogo {
  text-align: center;
  position: relative;
}

.nmlogo img {
  width: 191px;
  margin-bottom: 10px;
}
.defaultlogo {
  left: 0;
  right: 0;
  top: 46px;
  width: 126px !important;
  margin: 0 auto;
}
.signin_bg {
  background-color: var(--lightgray);
  height: auto;
  width: 455px;
  padding: 16px;
  border-radius: 20px;
}
.signin_heading_lines {
  width: 100%;
  background: #d5d5d5;
  margin: 0px 10px;
}
.signin_heading {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signin_heading h4 {
  text-transform: none;
  margin: 0;
  font-size: 1.1rem;
  color: var(--black);
}

.termcondition_text {
  text-align: center;
}

.termcondition_text p {
  font-size: 12px;
  color: var(--black);
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  margin-top: 10px;
}

.termcondition_text p a {
  color: var(--themecolor);
}

.termcondition_text p a:hover {
  color: var(--themecolor);
}

.fisical_year {
  font-size: 12px;
  color: var(--black);
  margin: 0px;
  text-align: center;
  width: 100%;
  margin-top: 7px;
}

.GetOTP_div {
  width: 100%;
  text-align: center;
  margin-top: 4px;
}
.GetOTP_btn {
  width: 50%;
  background-color: var(--themecolor);
  color: var(--white);
  height: 40px;
  border: 0px;
}
.GetOTP_btn:hover {
  color: var(--white) !important;
}
@media (max-width: 400px) {
  .termcondition_text p {
    display: inline;
  }
  .termcondition_text p a {
    color: var(--themecolor);
    display: inline;
  }
  .GetOTP_div {
    margin-top: 20px;
  }
}
/* OTP Page CSS Start */
.headtext {
  text-align: center;
  font-size: 14px;
  margin-top: 13px;
  color: var(--black);
}
.otp_textbox_main {
  display: flex;
  align-items: center;
  justify-content: center;
}
.otp_textbox {
  width: 40px;
  margin-right: 12px;
  text-align: center;
  height: 36px;
  font-size: 15px;
}
.ResendOTP {
  text-align: center;
  font-size: 14px;
  margin-top: 14px;
}
.resend_otp {
  margin-top: 0.8rem;
  color: #848484;
  font-size: 14px;
}

.resend_otp_btn {
  margin-top: 0.8rem;
  color: rgb(24, 144, 255);
  font-size: 14px;
}
/* OTP Page CSS End */

/* Terms and conditions Page CSS Start */
.termsconditions_head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff; /* Add your preferred background color */
  z-index: 1000;
  padding: 10px 10px;
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
}
.tnclogo {
  width: 200px;
}
.termsconditions_head .backicon {
  font-size: 20px;
  color: var(--themecolor);
  margin-right: 10px;
  cursor: pointer;
}

.termsconditions_text {
  margin-top: 80px;
  padding: 10px;
}
.termsconditions_text h4 {
  font-size: 15px;
}
.termsconditions_text p {
  font-size: 12px;
}

.otp_box {
  box-shadow: 0px 0px 3px 0px rgb(130 130 130);
  text-align: center;
  border-radius: 5px;
  height: 32px;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 400;
  border: 0px;
  width: 35px !important;
}

.otp_box:focus {
  box-shadow: 0px 0px 3px 0px rgb(130 130 130);
  text-align: center;
  border-radius: 5px;
  border: 0px;
  background-color: #f6fafd;
}

.otpwrapper {
  display: flex;
  justify-content: center;
}

/* Terms and conditions Page CSS End */

.mpin_eyeicon {
  position: absolute;
  top: 9px;
  right: 15px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .signin_main {
    align-items: normal;
  }
  .nmlogo img {
    width: 85%;
    margin-top: 15%;
  }
  .defaultlogo {
    width: 60% !important;
    margin-top: 6% !important;
  }
}

@media (max-width: 1200px) {
  .signin_bg {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 20px 20px 0px 0px;
  }
}

.quick-pay-btn {
  background-color: #ccf2f4; /* Light blue background */
  line-height: 1.2em;
  
}

.quick-pay-text {
  font-size: 14px; /* Smaller font size to match OTP button */
  font-weight: bold;
  color: #666; /* Grey color for text */
}

.upi-logo {
   width: 35px; /* Adjusted to fit within the button */
   margin-left: 5px; /* Adjusted size */
   margin-bottom: 4px;
}

.pay-dues-text {
  font-size: 12px; /* Adjusted font size to fit inside the button */
  color: #666;
  margin-bottom: 5px;
}

.Footer-Btn{
  display: flex;
  justify-content: center;
}


.captcha-refresh {
  height: 32px;
  width: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center; /* center the icon */
  color: green;
}


body {
  background-color: #f5f5f5 !important;
  height: auto !important;
  font-size: inherit;
  overflow: auto;
}

/* Header Css Start */
.header_bg {
  background-color: var(--themecolor);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}
.profileimg_bg {
  background-color: var(--white);
  border-radius: 50%;
  width: 35px;
  display: flex;
  height: 35px;
  justify-content: center;
  align-items: center;
}

.profileimg_bg img {
  width: 68%;
  margin-top: 4px;
}
.profileimg_main {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.head_compnyname {
  color: var(--white);
  margin: 0;
  margin-left: 14px;
  font-size: 15px;
  width: 175px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
}

.head_wallet {
  color: var(--white);
  font-size: 15px;
  display: flex;
  align-items: center;
}
.head_wallet .head_wallet_icon {
  margin-right: 15px;
  font-size: 26px;
  margin-top: -4px;
  color: white;
}
.back_btn_icon {
  color: var(--white);
  font-size: 15px;
}

.download_btn_icon {
  color: var(--white);
  font-size: 15px;
}
@media (max-width: 500px) {
  .head_compnyname {
    font-size: 14px;
  }
  .head_wallet {
    font-size: 14px;
  }
  .profileimg_bg {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 360px) {
  .head_compnyname {
    width: 150px;
  }
}
/* Header Css End */

/* Slider Css Start */
.slider_main {
  padding: 10px 10px 50px 10px;
  background-color: var(--themecolor);
}

.sliderbg {
  width: 100%;
  color: var(--white);
}
.sliderbg img {
  width: 100%;
  max-height: 180px;
  border-radius: 20px;
}
.sliderbg h3 {
  color: var(--white);
}
.slider_main .ant-carousel .slick-dots-bottom {
  bottom: -26px;
}
/* Slider Css End */

/* Dashboard Css Start */
.menue_bg {
  background-color: var(--lightgray);
  border-radius: 20px 20px 0px 0px;
  margin-top: -20px;
}
.recharge_bg_color {
  background-color: #ffeece;
}
.Addmoney_bg_color {
  background-color: #c4dbf0;
}
.MyOrder_bg_color {
  background-color: #e9d2db;
}
.Mypayments_bg_color {
  background-color: #d3c2f4;
}
.MyTrans_bg_color {
  background-color: #c0e8e3;
}
.menue_main {
  text-align: center;
  display: flex;
  padding: 16px 10px 0px 10px;
  justify-content: space-around;
}
.menue {
  text-align: center;
  display: inline-block;
  width: 120px;
  margin-bottom: 10px;
  cursor: pointer;
}
.menue_button {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  margin-bottom: 7px;
}
.menue_button img {
  width: 60%;
}
.menue p {
  font-size: 13px;
  color: var(--black);
  margin-bottom: 0px;
}

@media (max-width: 520px) {
  .menue_main {
    display: block;
    text-align: start;
  }
  .menue {
    width: 110px;
  }
}
/* Dashboard Menue Css End */

/* Dashboard Plan Detals Css Start */
.plandetails_main {
  padding: 10px;
}
.plandetails {
  border-radius: 10px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  margin-bottom: 46px;
}
.plandetails_head {
  background-color: #f5f5f5;
  border-radius: 10px 10px 0px 0px;
}
.plandetails_head p {
  color: var(--black);
  padding: 7px 13px;
}
.plan_name {
  color: var(--black);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.plan_expires_dash {
  font-size: 13px;
}
.Ds_plans {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dfdfdf;
}
.plan_status {
  text-align: center;
}
.plan_status_icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 8px;
  font-size: 28px;
  margin-bottom: 10px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}
.plan_status_current {
  background-color: #e9f9e6;
  color: #23970c;
}
.plan_status_upcomming {
  color: #ffa500;
  background-color: #ffeece;
}
.plan_status_expired {
  color: #ed1c24;
  background-color: #e9f9e6;
}

.plan_status_buttn {
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  padding: 0px 0px;
  font-size: 12px;
  width: 76px;
}
.plan_status_buttn_curnt {
  background-color: #23970c;
}
.plan_status_buttn_Upcming {
  background-color: #ffa500;
}
.plan_status_buttn_Expired {
  background-color: #ed1c24;
}
.plan_details_name {
  width: 68%;
  padding-left: 13px;
  line-height: 24px;
}
.plan_details_name p {
  margin-bottom: 0;
}
.plan_details_name a {
  font-size: 14px;
  color: var(--themecolor);
  display: flex;
  align-items: center;
}
.plan_details_progress {
  text-align: center;
  line-height: 30px;
}

.viewmore_button {
  margin-top: 0px;
  font-size: 14px;
  text-decoration: none;
}
.plan_apply_button {
  width: 21px;
  margin-right: 4px;
}
.apply_now {
  color: var(--themecolor);
}
@media (max-width: 500px) {
  .plan_details_name {
    width: 44%;
  }
}
@media (max-width: 345px) {
  .plan_details_name {
    width: 38%;
  }
}
/* Dashboard Plan Detals Css End */

/* Dashboard Footer Css Start */
.footer_main {
  width: 612px;
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  background: var(--lightgray);
  z-index: 1;
  padding: 4px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  right: 0;
}
.footer_text_icon {
  text-align: center;
  cursor: pointer;
  font-size: 15px;
}
.footer_active {
  color: var(--themecolor);
}

@media (max-width: 612px) {
  .footer_main {
    width: 100%;
  }
}

/* Plan Details CSS Start */
.Plandetails_bg {
  background-color: #00000069;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  left: 0px;
}

.Plandetails_main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Plandetails_main_bg {
  background-color: var(--white);
  width: 573px;
  border-radius: 12px;
}
.Plandetails_head {
  display: flex;
  justify-content: space-between;
  padding: 13px 15px;
  align-items: center;
  background: var(--lightgray);
  border-radius: 10px 10px 0px 0px;
  font-size: 19px;
}
.Plandetails_head p {
  margin: 0px;
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  width: 95%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
}

.Plandetails_head span {
  cursor: pointer;
}

.Plandetails_body {
  width: 100%;
}

.Plandetails_text {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--lightgray);
  padding: 10px 15px;
  font-size: 15px;
}
.Plandetails_text p {
  margin: 0px;
  color: var(--black);
}

.repeat_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
}
.repeat_btn button {
  width: 160px;
}

@media (max-width: 42em) {
  .Plandetails_main_bg {
    width: 100%;
    border-radius: 12px 12px 0px 0px;
  }
  .Plandetails_main {
    align-items: end;
  }
}

/* Plan Details CSS End */

/* Recharge Details CSS Start */
.rechrge_head_img {
  width: 100%;
  text-align: center;
}
.rechrge_head_img img {
  width: 360px;
  margin-top: 8px;
}

.package_dt_main {
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin-top: 14px;
}
.package_dt_head {
  padding: 10px;
  background-color: var(--lightbluebg);
  border-radius: 10px 10px 0px 0px;
}
.package_dt_head p {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 0px;
}
.package_plan_name {
  color: var(--themecolor);
  font-size: 16px;
}
.Plan_amount_dt_main {
  padding: 10px;
}
.Plan_amount_dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}
.Plan_amount_dt:last-child {
  margin-bottom: 0px;
}
.Plan_amount_dt h5 {
  text-transform: inherit;
  margin: 0;
  font-size: 14px;
  align-items: center;
  display: flex;
}
.Plan_amount_dt p {
  color: var(--black);
  font-size: 15px;
  margin: 0px;
}
.Apply_now_dt_main {
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  margin-top: 14px;
  width: 100%;
  display: inline-block;
  padding: 10px;
  align-items: center;
}
.ant-checkbox .ant-checkbox-inner {
  border: 1px solid #486ed4;
}
.Plan_pay_button {
  text-align: center;
  margin: 0rem auto;
  margin-top: 5px;
}
.Plan_pay_button button {
  width: 300px;
  margin-bottom: 7px;
  background-color: var(--themecolor);
  text-transform: uppercase;
  height: 37px;
}
.Plan_pay_button button:hover {
  background-color: var(--btnhover) !important;
}

@media (max-width: 612px) {
  .Plan_pay_button button {
    border-radius: 0px;
    margin-bottom: 0rem;
    width: 100%;
  }
  .rechrge_head_img img {
    width: 250px;
  }
  .Plan_pay_button {
    position: fixed;
    bottom: 0;
    width: 100%;
  }
}

/* Recharge Details CSS End */

/* Change Plan CSS Start */
.head_search {
  padding: 10px;
  background-color: var(--white);
  margin-bottom: 10px;
}
.ChangePlan_Main {
  padding: 0px 10px 10px 10px;
}
.ChangePlan {
  padding: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  border-radius: 7px;
  margin-top: 10px;
}
.ChangePlan_head {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--lightgray);
  padding: 0px 0px 10px 10px;
}
.ChangePlan_Name {
  display: flex;
  justify-content: start;
  align-items: center;
}
.ChangePlan_Name h4 {
  font-size: 16px;
}
.ChangePlan_Price {
  display: flex;
  align-items: center;
  justify-content: end;
}
.ChangePlan_Price .Arrowicon {
  color: var(--themecolor);
  font-size: 16px;
}
.ChangePlan_Price h4 {
  font-size: 16px;
}
.Plan_details {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 10px;
}
.Plan_dt_column {
  flex: 1;
  margin: 0px 2px;
  padding: 0px 7px;
}
.Plan_dt_column p {
  font-size: 14px;
}
.Plan_dt_column h5 {
  margin-bottom: 0;
}
.PlanShowMore_btn button {
  padding: 0px;
  padding-left: 10px;
  height: auto;
}

@media (max-width: 612px) {
  .ChangePlan_Name h4 {
    font-size: 15px;
  }
  .ChangePlan_Price h4 {
    font-size: 15px;
  }
}
/* Change Plan CSS End */

/* My Account CSS Start */
.AyAccout_main {
  padding: 10px;
}
.MyProfile_dt {
  background-color: var(--themecolor);
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
}
.MyProfile_img {
  background: var(--lightbluebg);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}
.MyProfile_img img {
  width: 37px;
  margin-top: 7px;
}
.MyProfile_dt h4 {
  margin: 0px;
  margin-left: 10px;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 85%;
  font-size: 16px;
}
.profile_button {
  background: #fff;
  padding: 10px;
  margin-top: 0px;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--themecolor);
  cursor: pointer;
  width: 100%;
}
.profile_button p {
  margin: 0;
  color: var(--black);
  padding-left: 10px;
}
.profile_btn_icon {
  font-size: 20px;
}
.my-account-icon{
  font-size: 30px;
  color: #0077DB;
}
/* My Account CSS End */
/* Add Money CSS Start */
.addmony_head_img {
  text-align: center;
}
.addmony_head_img img {
  width: 290px;
  margin-top: 10px;
}
.wallet_dt_main {
  padding: 10px;
}

.wallet_dt {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
}
.wallet_dt_amount {
  display: flex;
  align-items: center;
}
.wallet_dt_amount img {
  width: 30px;
}
.wallet_dt_amount p {
  margin-left: 1rem;
  margin-bottom: 0;
  margin-top: 1rem;
}

.wallet_dt .svg-inline--fa {
  color: var(--themecolor);
}

.addmoney_text {
  margin-top: 15px;
  margin-bottom: 50px;
  display: inline-block;
  width: 100% !important;
}

.paybutton {
  background-color: var(--themecolor);
  color: var(--white);
  margin: 0 auto;
  margin-top: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 612px;
  height: 40px;
}

.paybutton:hover {
  color: var(--white) !important;
  background-color: var(--themecolor);
  border-color: var(--themecolor) !important;
}

.tooltip_tax {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

/* Add Money CSS End */
/* My Order CSS Start */
.invoice-card {
  background-color: white;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 7px;
}
.invoiceDt_mb {
  padding-bottom: 1px;
}
.invoiceDt_main {
  padding: 0px 10px;
}
.invoiceDt_main:last-child{
padding-bottom: 10px;
}
.invoice-icon {
  font-size: 15px;
  color: var(--themecolor);
  background: var(--lightbluebg);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.invoice-icon img {
  width: 20px;
}
.invoice-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.invoice-number,
.invoice-details {
  margin: 0;
  padding: 2px 0;
}
.invoice-number {
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
}
.invoice-details {
  font-size: 13px;
  color: #555;
}
.invoice-amount {
  font-size: 24px;
  color: var(--black);
  flex-direction: column;
  text-align: right;
}
.invoice-amount h1 {
  margin: 0;
  padding: 2px 0;
  font-size: 15px;
  font-weight: 500;
}
.download-icon {
  color: var(--themecolor);
  font-size: 15px;
  cursor: pointer;
  margin-top: 4px;
  float: right;
}
.filter-active {
  color: var(--themecolor);
  border: 1px solid var(--themecolor);
}
/* My Order CSS End */

/* My Profile CSS Start */
.Myprofile_Main {
  padding: 10px;
}
.Uploadimg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.Uploadimg_img {
  background-color: var(--lightbluebg);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  height: 150px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}

.Uploadimg_img img {
  width: 97%;
  height: 97%;
  border-radius: 50%;
}
.upload_button_main {
  position: absolute;
  right: -12px;
  bottom: 50px;
}
.upload_button {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: var(--themecolor);
  border: 1px solid var(--themecolor);
}
.Profile_update_btn {
  display: flex;
  justify-content: center;
  width: 100%;
}
.Profile_update_btn button {
  width: 150px;
}
.MyProfile_Form {
  margin-top: 10px;
}
.MyProfile_Form .ant-form-item {
  margin-bottom: 0px;
}
.my-balance-wallet {
  font-size: 15px;
  color: var(--themecolor);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* My Profile CSS End */

/* Help & Support CSS Start */
.MydeviceMain {
  padding: 10px;
  padding-top: 1px;
  padding-bottom: 70px;
}
.MydeviceCard{
  background-color: var(--white);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 14px;
  margin-top: 15px;
}

.RouterWifi img{
  width: 50px;
}
.parent-frame {
  flex: 1;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 13px 13px 13px 20px;
  text-align: left;
}

.contactus-1-parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0px 20px;
}
.contactus-1-icon {
  height: 39px;
  width: 40px;
  position: relative;
  object-fit: cover;
  z-index: 1;
}
.line-separator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px 0px;
}
.contact-us {
  position: relative;
  text-transform: capitalize;
  z-index: 1;
  font-size: 15px;
  color: var(--themecolor);
}
.our-friendly-team {
  position: relative;
  font-size: 14px;
  text-transform: capitalize;
  z-index: 1;
}
.arrow-1-icon {
  height: 18px;
  width: 24px;
  position: relative;
  object-fit: cover;
  z-index: 1;
  color: var(--themecolor);
  cursor: pointer;
}

.Contactus_dt {
  padding: 13px;
}

.framework1 {
  align-self: stretch;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 13px;
  gap: 0px 18px;
  margin-bottom: 14px;
}

.framework-item {
  height: 49px;
  width: 397px;
  position: relative;
  border-radius: var(--br-3xs);
  background-color: var(--color-white);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  display: none;
}

.image-2-icon {
  position: relative;
  object-fit: cover;
  z-index: 1;
  color: var(--themecolor);
  font-size: 20px;
}

.whatsappicon {
  width: 23px;
}

.contact_No {
  font-size: 15px;
  color: var(--themecolor);
}
.Conecte_device_icon{
  font-size: 32px;
}

.Device_RightArrow{
  font-size: 18px;
  color: var(--themecolor);
  cursor: pointer;
}
/* Help & Support CSS End */

.device-details {
  margin-top: 20px;
  font-size: 15px;
  margin-bottom: 15px;
}
.device-details .detail-item:last-child{
  border-bottom: 0px solid #ddd;
  padding-bottom: 0px;
}
.detail-item {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label {
  display: flex;
  justify-content: start;
  color: #666;
  margin-bottom: 5px;
  font-size: 14px;
  padding-left: 0px;
  font-weight: 500;
}
.value-copy {
  padding-left: 10px;
}

.value {
  color: #333;
  font-weight: 500;
  margin-bottom: 0px;
}

.copy-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.wifi-settings-card {
  width: 100%;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 10px;
}

.wifi-settings-card .card-title {
  font-size: 18px;
}

.wifi-settings-card .card-text {
  font-size: 16px;
}

.wifi-menu_button {
  height: 25px;
  width: 25px;
  background-color: #deedf8;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  margin-bottom: 7px;
}

@media (max-width: 576px) {
  .wifi-settings-card {
    max-width: 100%;
  }
}
.subscriber_cont_dt {
  background-color: #e1f3fe;
  min-height: 280px;
  border-radius: 10px;
  padding: 10px;
}
.subscriber_cont_text {
  border-bottom: 1px solid #b6b6b6;
  align-items: center;
  gap: 20px;
  line-height: 43px;
  padding-left: 10px;
  font-size: 16px;
}
.subscriber_cont_text .subscriber_cont_icon{
  color: var(--darkthemecolor);
  font-size: 18px;

}
.subscriber_cont_text p{
  margin: 0;
}
.subscriber_cont_area {
  width: 100%;
  margin-top: 20px;
  min-height: 150px;
}
#customMessageBox .modal-dialog {
  box-shadow: none !important;
}
#customMessageBox .modal-content {
  background-color: #fff0 !important;
  border: 0px solid rgba(0, 0, 0, 0.2) !important;
  box-shadow: none !important;
}
.Massagebox {
  position: fixed;
  background-color: #2b2b2ba1;
  width: 100%;
  height: 100%;
  z-index: 99999;
  top: 0;
  left: 0;
}

.Massagebox_flex{
  display: flex;
  justify-content: center;
  align-items: center;
}

.Massagebox_Main {
  background-color: #fff;
  width: 400px;
  margin: 0 auto;
  border-radius: 1rem;
}

.Massagebox_head img {
  width: 240px;
  margin: 0 auto;
}

.Massagebox_body {
  text-align: center;
  padding: 0px 13px;
}

.Massagebox_body h4 {
  margin: 0px;
  padding: 0.8rem 0rem 0.4rem 0rem;
  font-size: 24px;
  font-weight: 400;
}

.Massagebox_body p {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  padding: 0rem 0rem 1rem 0rem;
  margin: 0rem;
}

.Massagebox_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 0rem 1rem 0rem;
}

.Massagebox_btn a,
.Massagebox_btn button {
  width: 8rem;
  background: var(--themecolor);
  color: #fff;
  display: inline-block;
  text-align: center;
  border-radius: 7px;
  margin-right: 0.7rem;
  font-size: 16px;
  font-weight: 500;
  line-height: initial;
  padding: 7px;
}

.Massagebox_btn a:hover {
  text-decoration: none;
  color: white;
}

.Massagebox_btn button {
  border: 0px solid #000;
}

.Massagebox_btn a:focus-visible,
.Massagebox_btn button:focus-visible {
  border: 1px solid #000;
}
.warning_text_color {
  color: orange;
}

.info_text_color {
  color: #309fdd;
}

.success_text_color {
  color: green;
}

.error_text_color {
  color: red;
}

.error_bg_head {
  background-color: #fdf4f4;
  padding: 15px 0px;
  border-radius: 1rem 1rem 0rem 0rem;
  text-align: center;
}

.error_bg_head img {
  width: 210px;
}

.success_bg_head {
  background-color: #eeffe2;
  padding: 15px 0px;
  border-radius: 1rem 1rem 0rem 0rem;
  text-align: center;
}

.warning_bg_head {
  background-color: #fbf1de;
  padding: 15px 0px;
  border-radius: 1rem 1rem 0rem 0rem;
  text-align: center;
}

.info_bg_head {
  background-color: #d9f0fd;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 1rem 1rem 0rem 0rem;
  text-align: center;
}

.message_bx_btn_BGblue {
  background-color: var(--themecolor) !important;
  color: #fff !important;
}

.message_bx_btn_BGblue:hover {
  color: #fff !important;
}

.message_bx_btn_BGgray {
  background-color: #eee !important;
  color: #000 !important;
}

.message_bx_btn_BGgray:hover {
  color: #000 !important;
}

@media screen and (max-width: 420px) {
  .Massagebox_Main {
    width: 100%;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .Massagebox_flex {
    align-items: end;
  }
}

.progress_bar_main {
  background-color: #ffffff80;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  left: 0;
  height: 100vh; 
}

.progress_bar {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.progress_bar img {
    width: 100px;
}
:root {
  --adm-radius-s: 4px;
  --adm-radius-m: 8px;
  --adm-radius-l: 12px;
  --adm-font-size-1: 9px;
  --adm-font-size-2: 10px;
  --adm-font-size-3: 11px;
  --adm-font-size-4: 12px;
  --adm-font-size-5: 13px;
  --adm-font-size-6: 14px;
  --adm-font-size-7: 15px;
  --adm-font-size-8: 16px;
  --adm-font-size-9: 17px;
  --adm-font-size-10: 18px;
  --adm-color-primary: #1677ff;
  --adm-color-success: #00b578;
  --adm-color-warning: #ff8f1f;
  --adm-color-danger: #ff3141;
  --adm-color-yellow: #ff9f18;
  --adm-color-orange: #ff6430;
  --adm-color-wathet: #e7f1ff;
  --adm-color-text: #333333;
  --adm-color-text-secondary: #666666;
  --adm-color-weak: #999999;
  --adm-color-light: #cccccc;
  --adm-color-border: #eeeeee;
  --adm-color-background: #ffffff;
  --adm-color-highlight: var(--adm-color-danger);
  --adm-color-white: #ffffff;
  --adm-color-box: #f5f5f5;
  --adm-color-text-light-solid: var(--adm-color-white);
  --adm-color-text-dark-solid: #000000;
  --adm-color-fill-content: var(--adm-color-box);
  --adm-font-size-main: var(--adm-font-size-5);
  --adm-font-family: -apple-system, blinkmacsystemfont, 'Helvetica Neue',
    helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',
    'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  --adm-border-color: var(--adm-color-border);
}
html[data-prefers-color-scheme='dark'] {
  --adm-color-primary: #3086ff;
  --adm-color-success: #34b368;
  --adm-color-warning: #ffa930;
  --adm-color-danger: #ff4a58;
  --adm-color-yellow: #ffa930;
  --adm-color-orange: #e65a2b;
  --adm-color-wathet: #0d2543;
  --adm-color-text: #e6e6e6;
  --adm-color-text-secondary: #b3b3b3;
  --adm-color-weak: #808080;
  --adm-color-light: #4d4d4d;
  --adm-color-border: #2b2b2b;
  --adm-color-box: #0a0a0a;
  --adm-color-background: #1a1a1a;
  --adm-color-background-body: var(--adm-color-background);
  --adm-border-color: var(--adm-color-border);
}
:root {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  background-color: var(--adm-color-background-body);
}
body {
  color: var(--adm-color-text);
  font-size: var(--adm-font-size-main);
  font-family: var(--adm-font-family);
}
a,
button {
  cursor: pointer;
}
a {
  color: var(--adm-color-primary);
  transition: opacity ease-in-out 0.2s;
}
a:active {
  opacity: 0.8;
}
.adm-plain-anchor {
  color: unset;
  transition: none;
}
.adm-plain-anchor:active {
  opacity: unset;
}
body.adm-overflow-hidden {
  overflow: hidden !important;
}
div.adm-px-tester {
  --size: 1;
  height: calc(var(--size) / 2 * 2px);
  width: 0;
  position: fixed;
  left: -100vw;
  top: -100vh;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}

.adm-button {
  --color: var(--adm-color-text-light-solid);
  --text-color: var(--adm-button-text-color, var(--adm-color-text));
  --background-color: var(--adm-button-background-color, var(--adm-color-background));
  --border-radius: var(--adm-button-border-radius, 4px);
  --border-width: var(--adm-button-border-width, 1px);
  --border-style: var(--adm-button-border-style, solid);
  --border-color: var(--adm-button-border-color, var(--adm-color-border));
  color: var(--text-color);
  background-color: var(--background-color);
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: auto;
  padding: 7px 12px;
  margin: 0;
  font-size: var(--adm-font-size-9);
  line-height: 1.4;
  text-align: center;
  border: var(--border-width) var(--border-style) var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: opacity ease 0.15s;
  -webkit-user-select: none;
          user-select: none;
}
.adm-button:focus {
  outline: none;
}
.adm-button::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(calc(var(--border-width) * -1), calc(var(--border-width) * -1));
  width: 100%;
  height: 100%;
  background-color: var(--adm-color-text-dark-solid);
  border: var(--border-width) var(--border-style) var(--adm-color-text-dark-solid);
  border-radius: var(--border-radius);
  opacity: 0;
  content: ' ';
  box-sizing: content-box;
}
.adm-button:active::before {
  opacity: 0.08;
}
.adm-button-default.adm-button-fill-outline {
  --background-color: transparent;
  --border-color: var(--adm-color-text);
}
.adm-button-default.adm-button-fill-none {
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button:not(.adm-button-default) {
  --text-color: var(--adm-color-text-light-solid);
  --background-color: var(--color);
  --border-color: var(--color);
}
.adm-button:not(.adm-button-default).adm-button-fill-outline {
  --text-color: var(--color);
  --background-color: transparent;
}
.adm-button:not(.adm-button-default).adm-button-fill-none {
  --text-color: var(--color);
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button-primary {
  --color: var(--adm-color-primary);
}
.adm-button-success {
  --color: var(--adm-color-success);
}
.adm-button-danger {
  --color: var(--adm-color-danger);
}
.adm-button-warning {
  --color: var(--adm-color-warning);
}
.adm-button-block {
  display: block;
  width: 100%;
}
.adm-button-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.adm-button-disabled:active::before {
  display: none;
}
.adm-button.adm-button-mini {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-main);
}
.adm-button.adm-button-mini.adm-button-shape-rounded {
  padding-left: 9px;
  padding-right: 9px;
}
.adm-button.adm-button-small {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-7);
}
.adm-button.adm-button-large {
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: var(--adm-font-size-10);
}
.adm-button.adm-button-shape-rounded {
  --border-radius: 1000px;
}
.adm-button.adm-button-shape-rectangular {
  --border-radius: 0;
}
.adm-button-loading {
  vertical-align: bottom;
}
.adm-button-loading-wrapper {
  display: flex;
  height: 1.4em;
  align-items: center;
  justify-content: center;
}
.adm-button-loading-wrapper > .adm-loading {
  opacity: 0.6;
}

.adm-dot-loading {
  display: inline-block;
}


.adm-picker {
  --header-button-font-size: var(--adm-font-size-7);
  --title-font-size: var(--adm-font-size-7);
  --item-font-size: var(--adm-font-size-8);
  --item-height: 34px;
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  ---item-font-size: var(--item-font-size);
  ---item-height: var(--item-height);
}
.adm-picker .adm-picker-view.adm-picker-view {
  --item-font-size: var(---item-font-size);
  --item-height: var(---item-height);
}
.adm-picker-header {
  flex-shrink: 0;
  border-bottom: solid 1px var(--adm-color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px;
}
.adm-picker-header-button {
  font-size: var(--header-button-font-size);
  display: inline-block;
  padding: 8px 8px;
}
.adm-picker-header-button-disabled,
.adm-picker-header-button-disabled:active {
  opacity: 0.4;
  cursor: not-allowed;
}
.adm-picker-header-title {
  padding: 4px 4px;
  font-size: var(--title-font-size);
  color: var(--adm-color-text);
  text-align: center;
  flex: 1;
}
.adm-picker-body {
  flex: 1;
  width: 100%;
  height: 100%;
}
.adm-picker-body > .adm-picker-view {
  --height: 100%;
}
.adm-picker-popup .adm-popup-body {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.adm-picker-view {
  --height: 240px;
  --item-height: 34px;
  --item-font-size: var(--adm-font-size-8);
  height: var(--height);
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  background: var(--adm-color-background);
}
.adm-picker-view-column {
  height: 100%;
  flex: 1;
  -webkit-user-select: none;
          user-select: none;
  touch-action: none;
  position: relative;
  z-index: 0;
}
.adm-picker-view-column-wheel {
  width: 100%;
  cursor: -webkit-grab;
  cursor: grab;
  position: absolute;
  top: calc(50% - var(--item-height) / 2);
  left: 0;
}
.adm-picker-view-column-wheel::before {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: -100vh;
}
.adm-picker-view-column-wheel::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  bottom: -100vh;
}
.adm-picker-view-column-item {
  font-size: var(--item-font-size);
  padding: 0 6px;
  height: var(--item-height);
  display: flex;
  justify-content: center;
  align-items: center;
}
.adm-picker-view-column-item-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.adm-picker-view-column-accessible {
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  top: calc(var(--item-height) * -1);
  z-index: 0;
  padding-bottom: 1px;
}
.adm-picker-view-column-accessible > * {
  flex: 1;
  text-overflow: ellipsis;
}
.adm-picker-view-column-accessible-current {
  position: absolute;
  width: 100%;
  height: 100%;
}
.adm-picker-view-column-accessible-button {
  width: 100%;
  height: 100%;
}
.adm-picker-view-mask {
  position: absolute;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.adm-picker-view-mask-top,
.adm-picker-view-mask-bottom {
  flex: auto;
}
.adm-picker-view-mask-middle {
  height: var(--item-height);
  box-sizing: border-box;
  flex: none;
  border-top: solid 1px var(--adm-color-border);
  border-bottom: solid 1px var(--adm-color-border);
}
.adm-picker-view-mask-top {
  background: var(--adm-color-background);
  -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
          mask: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
}
.adm-picker-view-mask-bottom {
  background: var(--adm-color-background);
  -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
          mask: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, #000000 100%);
}
.adm-picker-view-loading-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adm-picker-view-item-height-measure {
  position: relative;
  left: 0;
  top: 0;
  height: var(--item-height);
  width: 0;
  pointer-events: none;
}

.adm-spin-loading {
  --color: var(--adm-color-weak);
  --size: 32px;
  width: var(--size);
  height: var(--size);
}
.adm-spin-loading-svg {
  width: 100%;
  height: 100%;
  animation: adm-spin-loading-rotate 0.8s infinite linear;
}
.adm-spin-loading-svg > .adm-spin-loading-fill {
  stroke: var(--color);
}
@keyframes adm-spin-loading-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.adm-popup {
  --z-index: var(--adm-popup-z-index, 1000);
  position: fixed;
  z-index: var(--z-index);
}
.adm-popup-body {
  position: fixed;
  background-color: var(--adm-color-background);
  z-index: calc(var(--z-index) + 10);
}
.adm-popup-body .adm-popup-close-icon {
  position: absolute;
  z-index: 100;
}
.adm-popup-body-position-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}
.adm-popup-body-position-bottom .adm-popup-close-icon {
  right: 8px;
  top: 8px;
}
.adm-popup-body-position-top {
  width: 100%;
  top: 0;
  left: 0;
}
.adm-popup-body-position-top .adm-popup-close-icon {
  right: 8px;
  bottom: 8px;
}
.adm-popup-body-position-left {
  height: 100%;
  top: 0;
  left: 0;
}
.adm-popup-body-position-left .adm-popup-close-icon {
  right: 8px;
  top: 8px;
}
.adm-popup-body-position-right {
  height: 100%;
  top: 0;
  right: 0;
}
.adm-popup-body-position-right .adm-popup-close-icon {
  left: 8px;
  top: 8px;
}
.adm-popup-close-icon {
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  color: var(--adm-color-weak);
}

.adm-mask {
  --z-index: var(--adm-mask-z-index, 1000);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index);
  display: block;
  width: 100%;
  height: 100%;
}
.adm-mask-aria-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.adm-mask-content {
  z-index: 1;
}

.adm-safe-area {
  --multiple: var(--adm-safe-area-multiple, 1);
  display: block;
  width: 100%;
}
.adm-safe-area-position-top {
  padding-top: calc(env(safe-area-inset-top) * var(--multiple));
}
.adm-safe-area-position-bottom {
  padding-bottom: calc(env(safe-area-inset-bottom) * var(--multiple));
}

.adm-list {
  --header-font-size: var(--adm-font-size-7);
  --prefix-width: 'auto';
  --prefix-padding-right: 12px;
  --align-items: center;
  --active-background-color: var(--adm-color-border);
  --border-inner: solid 1px var(--adm-color-border);
  --border-top: solid 1px var(--adm-color-border);
  --border-bottom: solid 1px var(--adm-color-border);
  --padding-left: 12px;
  --padding-right: 12px;
  --font-size: var(--adm-font-size-9);
  --extra-max-width: 70%;
}
.adm-list-header {
  color: var(--adm-color-weak);
  font-size: var(--header-font-size);
  padding: 8px var(--padding-right) 8px var(--padding-left);
}
.adm-list-body {
  background-color: var(--adm-color-background);
  overflow: hidden;
  font-size: var(--font-size);
}
.adm-list-body-inner {
  margin-top: -1px;
}
.adm-list-default .adm-list-body {
  border-top: var(--border-top);
  border-bottom: var(--border-bottom);
}
.adm-list-card {
  margin: 12px;
}
.adm-list-card .adm-list-body {
  border-radius: 8px;
}
.adm-list-card .adm-list-header {
  padding-left: 0;
}
.adm-list-item {
  display: block;
  padding-left: var(--padding-left);
  position: relative;
  background-color: var(--adm-color-background);
  line-height: 1.5;
}
.adm-list-item-title,
.adm-list-item-description {
  color: var(--adm-color-weak);
  font-size: var(--adm-font-size-main);
}
.adm-list-item-content {
  display: flex;
  align-items: var(--align-items);
  justify-content: flex-start;
  border-top: var(--border-inner);
  padding-right: var(--padding-right);
}
.adm-list-item-content-prefix {
  width: var(--prefix-width);
  flex: none;
  padding-right: var(--prefix-padding-right);
}
.adm-list-item-content-main {
  flex: auto;
  padding: 12px 0;
}
.adm-list-item-content-extra {
  flex: none;
  padding-left: 12px;
  font-size: var(--adm-font-size-7);
  color: var(--adm-color-weak);
  max-width: var(--extra-max-width);
}
.adm-list-item-content-arrow {
  flex: none;
  display: flex;
  align-items: center;
  margin-left: 4px;
  color: var(--adm-color-light);
  font-size: 19px;
}
.adm-list-item-disabled {
  cursor: not-allowed;
}
.adm-list-item-disabled.adm-list-item-disabled > .adm-list-item-content > * {
  opacity: 0.4;
  pointer-events: none;
}
a.adm-list-item:active:not(.adm-list-item-disabled) {
  background-color: var(--active-background-color);
}
a.adm-list-item:active:not(.adm-list-item-disabled)::after {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  bottom: -1px;
  left: 0;
  border-bottom: var(--border-inner);
}

.adm-space-item {
  flex: none;
}
.adm-space {
  display: inline-flex;
  --gap: 8px;
  --gap-vertical: var(--gap);
  --gap-horizontal: var(--gap);
}
.adm-space-vertical {
  flex-direction: column;
}
.adm-space-vertical > .adm-space-item {
  margin-bottom: var(--gap-vertical);
}
.adm-space-vertical > .adm-space-item:last-child {
  margin-bottom: 0;
}
.adm-space-horizontal {
  flex-direction: row;
}
.adm-space-horizontal > .adm-space-item {
  margin-right: var(--gap-horizontal);
}
.adm-space-horizontal > .adm-space-item:last-child {
  margin-right: 0;
}
.adm-space-horizontal.adm-space-wrap {
  flex-wrap: wrap;
  margin-bottom: calc(var(--gap-vertical) * -1);
}
.adm-space-horizontal.adm-space-wrap > .adm-space-item {
  padding-bottom: var(--gap-vertical);
}
.adm-space.adm-space-block {
  display: flex;
}
.adm-space-align-center {
  align-items: center;
}
.adm-space-align-start {
  align-items: flex-start;
}
.adm-space-align-end {
  align-items: flex-end;
}
.adm-space-align-baseline {
  align-items: baseline;
}
.adm-space-justify-center {
  justify-content: center;
}
.adm-space-justify-start {
  justify-content: flex-start;
}
.adm-space-justify-end {
  justify-content: flex-end;
}
.adm-space-justify-between {
  justify-content: space-between;
}
.adm-space-justify-around {
  justify-content: space-around;
}
.adm-space-justify-evenly {
  justify-content: space-evenly;
}
.adm-space-justify-stretch {
  justify-content: stretch;
}

/* MyDevice CSS Start */

  .RouterWifiName {
    line-height: 1.8;
    margin-left: 18px;
  }

  .RouterWifiName h3 {
    font-size: 15px;
    font-weight: 500;
    line-height: inherit;
  }

  .wifiicon {
    font-size: 40px;
  }
  .Conecte_device_icon{
    font-size: 32px;
  }

  .Desktop_Mobile_icon {
    background-color: var(--lightbluebg);
    border-radius: 50%;
    padding: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    font-size: 20px;
    justify-content: center;
    align-items: center;
  }

  .Desktop_Mobile_icon img {
    width: 100%;
  }

  .Device_RightArrow{
    font-size: 18px;
    color: var(--themecolor);
    cursor: pointer;
  }
  .adm-popup-body-position-bottom{
    width: 576px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 14px 14px 0px 0px;
  }
  @media (max-width: 576px) {
    .adm-popup-body-position-bottom{
      width: 100%;
    }
  }
  /* My Device CSS End */
:root {
    --themecolor: #0077db;
    --btnhover: #0a90fd;
    --lightblue: #517bfc;
    --lightbluebg: #e4f3ff;
    --white: #fff;
    --gray: #818181;
    --black: #000;
    --lightgray: #f5f5f5;
    --green: #00a651;
    --red: #f55050;
  }
  
  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  ::-webkit-scrollbar {
    width: 5px;
    height: 9px;
    border-left: 0px solid #eef0f3;
  }
  ::-webkit-scrollbar-thumb {
    background-color: gray;
  }
  .NetCareMainBody {
    background-image: url(/0e21d155e88a01bd220a.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .NetCareQikPay_container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .NetCareQikPay_bg {
    background-image: url(/e3fd0d13b46ab330ac18.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 80%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 30px;
  }
  .NetCareQikPay_lftimg img {
    width: 100%;
  }
  .mycabltvlogo {
    width: 200px;
  }
  .QuickPayTabs .ant-radio-group {
    width: 100%;
  }
  .QuickPayTabs .ant-radio-button-wrapper {
    width: 50%;
    height: 40px;
    line-height: 36px;
  }
  .QuickPayTabs .ant-radio-button-wrapper:hover {
    border: 1px solid var(--themecolor);
    color: var(--themecolor);
  }
  .QuickPayTabs .ant-radio-button-wrapper-checked {
    background-color: var(--themecolor);
    color: var(--white) !important;
    border-color: var(--themecolor) !important;
  }
  .ant-radio-button-wrapper:not(:first-child)::before {
    background-color: unset;
  }
  .icon-color-cls {
    color: var(--themecolor);
  }
  .Capcha_fild_main {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin-top: 18px;
  }
  .captchaimg {
    width: 100px;
    padding-right: 10px;
  }
  .Capcha_fild:first-child {
    width: 26%;
    text-align: start;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .Capcha_fild:nth-child(2) {
    width: 100%;
    text-align: start;
  }
  .Capcha_fild .ant-form-item {
    margin-bottom: 0px;
  }
  .Capcha_fild .ant-input {
    padding: 7px 11px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 8px;
  }
  .mycnetcrePay_card_btn button {
    width: 153px;
    height: 37px;
    margin-bottom: 10px;
  }
  .back_icon {
    color: var(--themecolor);
    font-size: 18px;
    cursor: pointer;
    float: left;
  }
  .subscriber_active {
    width: 100px;
    height: 30px;
    border: 1px dashed var(--green);
    color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
  }
  .subscriber_inactive {
    width: 100px;
    height: 30px;
    border: 1px dashed var(--red);
    color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
  }
  .select_provider_scroll {
    min-height: 112px;
    max-height: 223px;
    overflow: auto;
    position: relative;
  }
  .subscriber_border {
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 10px;
  }
  .subscriber_border:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
    padding: 0px 0px 0px 0px;
  }
  .subscriber_dt_container {
    width: 100%;
    padding: 0px 0px 10px 0px;
    box-sizing: border-box;
  }
  .info {
    display: grid;
    grid-template-columns: 127px auto;
    row-gap: 2px;
    text-align: left;
  }
  .info div {
    display: contents;
  }
  .loginform .ant-form-item{
    margin: 0px;
    justify-content: start;
  }
  @media (max-width: 765px) {
    body {
      background-position: left;
    }
    .NetCareQikPay_bg {
      display: block;
      width: 86%;
      padding: 20px 10px;
    }
    .NetCareQikPay_lftimg img {
      margin: 16px 0px;
    }
    .Capcha_fild_main{
      display: inline;
    }
    .NetCareMainBody{
      background-position: left;
    }
    .mycabletvPay_box .ant-card-body{
      padding: 12px;
    }
  }
  @media (max-width: 400px) {
    .NetCareQikPay_bg {
      width: 97%;
    }
  }
  .subscriber_dt{
    border-bottom: 1px solid #dadada;
  }
/* Service provide Select */
.create_mpin{
    margin-top: -10px;
  }
  .select_provider_scroll{
    min-height: 112px;
     max-height: 223px;
      overflow: auto;
      position: relative;
  }
  .subscriber_active {
    width: 100px;
    height: 30px;
    border: 1px dashed var(--green);
    color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
  }
  .subscriber_inactive {
    width: 100px;
    height: 30px;
    border: 1px dashed var(--red);
    color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
  }
  .subscriber_dt_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0px 0px 10px 0px;
    box-sizing: border-box;
    padding: 0px;
  }
  .info {
    display: grid;
    grid-template-columns: 127px auto;
    row-gap: 2px;
    text-align: left;
  }
  .serv_continue_btn {
    background-color: #00a9ee;
    color: var(--white);
    border: 0px;
  }
  .serv_continue_btn:hover {
    color: var(--white) !important;
  }
  .back_icon {
    color: var(--themecolor);
    font-size: 18px;
    cursor: pointer;
    float: left;
  }
  .header {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
}
.back-button {
  position: absolute;
  left: 10px;
  background-color: "#e1f3fe";
  border: none;
  height: 20px;
}
.Header-RNM-text{
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0px;
  font-weight: bold;
  padding-left: 33px;
}
.ctn-btn{
    display: flex;
    justify-content: end;
    margin-bottom: 0.5rem;
}

@media (max-width: 450px) {
  .header{
   display: block;
  }
  .header button{
        height: 20px;
  }
}
