.Loader_container__vExWW{display:flex;flex:1 1;justify-content:center;align-items:center;min-height:100vh;min-width:100vw;background-color:#f5f5f5}.Loader_container__vExWW .Loader_progressBar__L4ypu{color:#fc594a}
: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));
  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: flex;
  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;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  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;
  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);
  }
}
@font-face{font-family:"Poppins-Regular";font-weight:normal;font-style:normal;src:url("/fonts/Poppins-Regular.ttf")}@font-face{font-family:"Poppins-Bold";src:url("/fonts/Poppins-Bold.ttf") format("truetype");font-weight:700;font-style:normal}@font-face{font-family:"Poppins-Medium";src:url("/fonts/Poppins-Medium.ttf") format("truetype");font-weight:400;font-style:normal}html{overscroll-behavior:none}html body{font-family:"Poppins-Regular",sans-serif;overscroll-behavior:none}html body b,html body strong{font-family:"Poppins-Bold",sans-serif;font-weight:700}html body #__next{height:100vh;background-color:#fff;overscroll-behavior:none}html body #__next .rc-virtual-list-scrollbar{width:5px !important;background:#f4f4f4;border-radius:7px}html body #__next .rc-virtual-list-scrollbar .rc-virtual-list-scrollbar-thumb{background:#e0e0e0 !important;border-radius:7px}html body #__next ::-webkit-scrollbar{width:7px}html body #__next ::-webkit-scrollbar-track{background:#f4f4f4;border-radius:7px}html body #__next ::-webkit-scrollbar-thumb{background:#e0e0e0;border-radius:7px}html body #__next ::-webkit-scrollbar-thumb:hover{background:#e0e0e0}::-webkit-scrollbar{width:7px}::-webkit-scrollbar-track{background:#f4f4f4;border-radius:7px}::-webkit-scrollbar-thumb{background:#e0e0e0;border-radius:7px}::-webkit-scrollbar-thumb:hover{background:#e0e0e0}@media screen and (max-width: 899px){body #__next{height:100vh;background-color:#fff}}
body input[type=checkbox]{accent-color:#232323}:root{--toastify-icon-color-success: gray}.Toastify__toast-icon{border:2px solid #fff;border-radius:50%;background-color:#fff;width:24px;height:24px}.MuiMenu-root .MuiPaper-root .MuiMenu-list{max-height:300px}.paymentWrapper{margin-left:15%;margin-top:60px}@media screen and (max-width: 860px){.paymentWrapper{margin-left:14%}}@media screen and (max-width: 790px){.paymentWrapper{margin-left:13%}}.settingList.MuiListItemButton-root.Mui-selected{background-color:#f8f8f8 !important}.settingList.MuiListItemButton-root:hover{background-color:#fafafa !important}.settingList .MuiListItemText-primary{font-size:18px;color:#232323;font-weight:600}.settingList .MuiListItemText-secondary{font-size:18px;color:#afafaf;font-weight:400}@media screen and (max-width: 899px){.settingList.MuiListItemButton-root.Mui-selected{background-color:#fafafa !important}.settingList.MuiListItemButton-root.Mui-selected .MuiListItemText-primary{color:#232323;font-size:16px;font-style:normal;font-weight:600;line-height:normal}.settingList .MuiListItemText-primary{font-size:16px;color:#a5a5a5}.settingList .MuiListItemText-secondary{font-size:16px;color:#afafaf}}.headingSection .MuiListItemText-primary{font-size:18px;color:#232323;font-weight:600}.headingSection .MuiListItemText-secondary{margin-top:10px;font-size:18px;color:#afafaf;font-weight:400}.TextFieldSectionHeading .MuiListItemText-primary{font-size:14px;color:#232323;font-weight:600}.TextFieldSectionHeading .MuiListItemText-secondary{margin-top:10px;font-size:14px;color:#afafaf;font-weight:400}.adressHeading .MuiListItemText-primary{font-size:14px;color:#232323;font-weight:400;font-style:normal}.adressHeading .MuiListItemText-secondary{font-size:14px;color:#afafaf;font-weight:400;font-style:normal}.passwordDescription .MuiListItemText-primary{font-size:12px;color:#afafaf;font-weight:400;font-style:normal}.passwordDescription .MuiListItemText-secondary{font-size:12px;color:#afafaf;font-weight:400;font-style:normal}.accountSettingDropDown .MuiOutlinedInput-root{background-color:#fafafc;height:45px}.tableheader .MuiTableHead-root{border-radius:19px;background-color:#232323}.main-campaign-container{margin-left:60px;margin-right:60px}.main-campaign-container .campaigns-header{font-style:normal;font-weight:700;font-size:40px;color:#232323}.main-campaign-container .secondary-campaign-container{display:flex;align-items:center;margin-top:30px;margin-bottom:22px}.main-campaign-container .secondary-campaign-container .campaigns-heading{font-style:normal;font-weight:400;font-size:25px}.main-campaign-container .secondary-campaign-container .campaign-value{background-color:#232323;color:#fff;padding:1px 10px;border-radius:8px;margin-left:15px}.main-campaign-container .main-grid-section{display:flex}.main-campaign-container .main-grid-section .button-section .left-button-box{display:flex;justify-content:space-between}.main-campaign-container .main-grid-section .button-section .left-button-box .empty-icon-button{justify-content:flex-end;align-items:flex-end;display:flex}.main-campaign-container .main-grid-section .button-section2{align-items:center;width:100%}.main-campaign-container .main-grid-section .button-section2 .button-pencil-container{display:flex;justify-content:flex-end}.main-campaign-container .main-grid-section .button-section2 .button-pencil-container .button-pencil{padding:0px;justify-content:flex-end}.main-campaign-container .main-grid-section .button-section2 .form{background:#fff;border:1px solid #f4f4f4;border-radius:15px;padding:20px}.main-campaign-container .main-grid-section .button-section2 .form .inputTextStyle{max-width:340px}.main-campaign-container .main-grid-section .button-section2 .form .verticalDivider{margin-top:20px}.main-campaign-container .main-grid-section .button-section2 .form .links-value{color:#fc594a;font-style:normal;font-weight:600;font-size:16px}.main-campaign-container .main-grid-section .button-section2 .form .linksContainer{margin-top:25px}.main-campaign-container .main-grid-section .button-section2 .form .linksContainer .linksListBox{display:flex;align-items:center}.main-campaign-container .main-grid-section .button-section2 .form .linksContainer .linksListBox img{width:20px}.main-campaign-container .main-grid-section .button-section2 .form .linksContainer .linksListBox .linkTextName{margin-left:17.67px;font-style:normal;font-weight:400;font-size:15px}.main-campaign-container .modal-heading-label{font-style:normal;font-weight:700;font-size:40px}.dashboardContainer{overflow-y:scroll;width:100%;height:91vh;padding-bottom:100px}.dashboardContainer .card{border:"1px solid";border-color:#f4f4f4;border-radius:"8px";padding:"30px 20px";height:"399px"}.textField .MuiInputBase-root .MuiInputBase-input{padding-left:20px;font-size:12px;font-weight:400;font-style:normal}.css-1qztuna-MuiButtonBase-root-MuiListItemButton-root.Mui-selected{background-color:#f5f5f5}.css-1qztuna-MuiButtonBase-root-MuiListItemButton-root.Mui-selected:hover{background-color:#f5f5f5}table tbody tr .subscription_status{font-weight:600;padding:8px;border-radius:20px}table tbody tr .past_due{background-color:rgba(236,50,31,.1);color:#ec321f}table tbody tr .canceled{background-color:rgba(236,50,31,.1);color:#ec321f}table tbody tr .draft{background-color:rgba(236,50,31,.1);color:#ec321f}table tbody tr .completed{background-color:rgba(58,225,126,.1);color:#3ae17e}table tbody tr .billed{background-color:rgba(58,225,126,.1);color:#3ae17e}table tbody tr .ready{background-color:rgba(58,225,126,.1);color:#3ae17e}.css-rh92k-MuiPaper-root-MuiMobileStepper-root{margin-top:23px;border-radius:14px;padding:14px 16px;background-color:#efefef}.css-rh92k-MuiPaper-root-MuiMobileStepper-root .MuiMobileStepper-dotActive{background-color:#232323}.css-rh92k-MuiPaper-root-MuiMobileStepper-root .css-114p2tk-MuiMobileStepper-dot{background-color:#d9d9d9}
html{margin:0px;padding:0px;overflow:hidden;min-height:100%;height:100%}html body{margin:0px;padding:0px;background-color:#f5f5f5;min-height:100%;height:100%}html body #__next{margin:0px;padding:0px;min-height:100%;height:100%}html body #__next .page404{width:90vw;height:90vh;overflow:hidden;display:flex;flex-direction:column;justify-content:center;align-items:center}html body #__next .page404 .card404{padding:40px}html body #__next .page404 .card404 h1{color:#fc594a}html body #__next .page404 .card404 a{text-decoration:none}html body .swal2-container{z-index:9999 !important}html body .swal2-container .swal2-confirm{background-color:#fc594a;border:1px solid #fc594a;outline:none}html body .swal2-container .swal2-confirm:active{outline:none;box-shadow:none}html body .swal2-container .swal2-confirm:focus{outline:none;box-shadow:none}.otp-wrapper{max-width:489px;flex-direction:column;display:flex;align-items:center;justify-content:center}.otp-wrapper .buttonWrapper .twoFaButton{margin-top:0px;width:305px;font-size:15px;font-weight:500}.otp-wrapper .bottomLink{margin-top:25px;width:225px;height:62px;display:flex;align-items:center;justify-content:center;flex-direction:column}.otp-wrapper .bottomLink .primaryText{margin:0px;font-weight:400;font-size:12px;text-align:center}.otp-wrapper .bottomLink .link{font-size:12px;font-weight:400;text-align:center;color:#fc594a}.otp-wrapper .errorText{display:flex;align-items:center;height:20px}.otp-wrapper .errorText .otpErrorText{color:#fc594a;font-size:12px;font-weight:400}.otp-wrapper .authenticationHeading{max-width:489px;min-height:53px;font-size:35px;font-weight:700}.otp-wrapper .authenticationTitle{margin-top:30px;max-width:418px;height:63px;font-style:normal;font-weight:400;font-size:14px;text-align:center}.otp-wrapper .optContainer{margin-top:25px;display:flex;align-items:center;justify-content:center;flex-direction:column}.otp-wrapper .optContainer :focus{color:#fc594a}.otp-wrapper .optContainer .optMainContainer{display:flex;justify-content:center;align-items:center}.otp-wrapper .optContainer .optMainContainerBoolFalse{width:100%;display:flex;justify-content:center;align-items:center}.otp-wrapper .optContainer .optCodeInput{display:flex;border:1px solid #cbcbcb;justify-content:center;align-items:center;width:47px;height:64px;border-radius:8px;margin-left:14px;font-size:24px;text-align:center;text-decoration:underline;-webkit-text-decoration-color:#fc594a;text-decoration-color:#fc594a}.otp-wrapper .optContainer .optCodeInput:focus-visible{border:2px solid #fc594a !important;outline:none}.mainInnerContainerForget{width:305px;height:100px}.mainInnerContainerForget .MuiTypography-subtitle1{margin-top:0px;margin-bottom:5px}.mainInnerContainerForget .textField{min-height:63px}.textFieldWrapperSignUp .textField{min-height:59px}.mainInnerContainer{width:305px}.mainInnerContainer .MuiTypography-subtitle1{margin-top:0px;margin-bottom:5px}.mainInnerContainer .textField{min-height:63px}.mainInnerContainer .googleButton>button{height:50px;margin-bottom:5px}@media screen and (max-width: 600px){.mainInnerContainer{width:82vw}}
body #__next .Toastify .Toastify__toast-container{width:303px;max-width:410px;z-index:999999}body #__next .Toastify .Toastify__toast-container .Toastify__toast{border-radius:12px}body #__next .Toastify .Toastify__toast-container .Toastify__toast .Toastify__toast-body{width:100%}body #__next .Toastify .Toastify__toast-container .Toastify__toast .Toastify__toast-body :last-child{direction:ltr;padding-left:10px}body #__next .Toastify .Toastify__toast-container .Toastify__toast .Toastify__toast-body .Toastify__toast-icon{margin-left:2px}body #__next .Toastify .Toastify__toast-container .Toastify__toast .Toastify__toast-body .Toastify__toast-icon svg{border-radius:20px;fill:#000;padding-left:0px}body #__next .Toastify .Toastify__toast-container .Toastify__close-button{display:none}
