@import url(/assets/styles/variables.css);
@import url(/assets/styles/variables.css);
@import url(/assets/styles/variables.css);
/* global css */
.flex {
  display: flex;
}

.flex__align--center {
  align-items: center;
}

.flex--1 {
  flex: 1;
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

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


/* Create Brand */
.BecomeHost\.module___brandLogo {
  width: 100px;
}
.BecomeHost\.module___logoPlaceholder,
.BecomeHost\.module___titlePlaceholder,
.BecomeHost\.module___buttonPlaceholder,
.BecomeHost\.module___heroPlaceholder {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-base);
}
.BecomeHost\.module___heroPlaceholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.BecomeHost\.module___logoPlaceholder {
  height: 100px;
}
.BecomeHost\.module___titlePlaceholder {
  height: 45px;
  margin-bottom: 40px;
}
.BecomeHost\.module___buttonPlaceholder {
  height: 45px;
}
.BecomeHost\.module___become-host {
  min-height: 100vh;
  display: flex;
  font-family: 'Montserrat', sans-serif;
}
.BecomeHost\.module___become-host--image {
  width: 50vw;
  position: sticky;
  height: 100vh;
}
.BecomeHost\.module___become-host--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.BecomeHost\.module___become-host-form {
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
h3.BecomeHost\.module___become-host-form--title {
  font-size: 36px;
  line-height: 44px;
  text-align: center;
}
.BecomeHost\.module___layout-host {
  max-width: 510px;
}
.BecomeHost\.module___layout-host-thanks {
  background: #eee;
  padding: 40px 75px;
  max-width: 600px;
  border-radius: 10px;
}
.BecomeHost\.module___thankspara {
  font-size: 16px;
  margin-bottom: 32px;
}
.BecomeHost\.module___thankspara:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .BecomeHost\.module___become-host {
    flex-direction: column;
  }
  .BecomeHost\.module___become-host--image {
    width: 100%;
    margin-bottom: 12px;
    height: 50vh;
  }
  .BecomeHost\.module___become-host-form {
    width: 100%;
  }
}

/* Create Brand */
/* stylelint-disable length-zero-no-unit */
.Landing\.module___main-container {
  margin-top: 110px;
}
.Landing\.module___navigation {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 110px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Landing\.module___above-the-fold-section {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1250px) {
  .Landing\.module___above-the-fold-section-content {
    flex: 0.65;
    margin-right: 64px;
  }
}
@media screen and (max-width: 1096px) {
  .Landing\.module___above-the-fold-section-content {
    flex: 0.8;
  }
}
@media (max-width: 768px) {
  .Landing\.module___above-the-fold-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .Landing\.module___above-the-fold-section-img {
    margin-left: 0;
    margin-top: 32px;
  }
}
.Landing\.module___above-the-fold-section-content {
  flex: 1;
}
.Landing\.module___above-the-fold-section-img {
  margin-left: auto;
}
.Landing\.module___navigation .Landing\.module___fixed-width-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Landing\.module___content-container {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 768px) {
  .Landing\.module___content-container {
    padding: 0 25px;
  }
}
.Landing\.module___fixed-width-container {
  margin: 0 64px 0 64px;
}
@media screen and (max-width: 768px) {
  .Landing\.module___fixed-width-container {
    margin: 0 10px;
  }
}
.Landing\.module___brand-logo {
  height: 100px;
  width: 200px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .Landing\.module___brand-logo {
    width: 125px;
  }
}
.Landing\.module___sub-heading-container,
.Landing\.module___main-heading-container {
  margin-bottom: 40px;
}
.Landing\.module___sub-heading {
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}
.Landing\.module___main-heading {
  font-weight: normal;
  font-size: 52px;
  white-space: pre-wrap;
  line-height: normal;
}
@media screen and (max-width: 1098px) {
  .Landing\.module___main-heading {
    font-size: 40px;
    line-height: 55px;
  }
}
@media (max-width: 968px) {
  .Landing\.module___main-heading {
    font-size: 32px;
    line-height: normal;
  }
}
.Landing\.module___main-heading-skeleton,
.Landing\.module___description-skeleton {
  width: 100%;
  background-color: var(--bg-color);
  height: 200px;
  border-radius: 10px;
}
@media screen and (max-width: 968px) {
  .Landing\.module___main-heading-skeleton,
  .Landing\.module___description-skeleton {
    width: 350px;
    height: 150px;
  }
}
.Landing\.module___main-heading-skeleton__fold,
.Landing\.module___description-skeleton__fold {
  width: 450px;
}
@media screen and (max-width: 968px) {
  .Landing\.module___main-heading-skeleton__fold,
  .Landing\.module___description-skeleton__fold {
    width: 350px;
    height: 150px;
  }
}
.Landing\.module___description-skeleton {
  background-color: transparent;
}
.Landing\.module___heading {
  font-size: 40px;
  line-height: 44px;
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .Landing\.module___heading {
    font-size: 32px;
    line-height: normal;
  }
}
.Landing\.module___section-main-heading,
.Landing\.module___section-image {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 64px;
}
@media (max-width: 768px) {
  .Landing\.module___section-main-heading,
  .Landing\.module___section-image {
    padding: 48px 10px;
  }
}
.Landing\.module___section-brand-background {
  background-color: #000;
  color: #fff !important;
  text-align: left;
  padding: 120px 64px;
}
@media (max-width: 768px) {
  .Landing\.module___section-brand-background {
    padding: 48px 10px;
  }
}
.Landing\.module___image-list-container {
  display: flex;
  flex-direction: column;
}
.Landing\.module___image-item-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 768px) {
  .Landing\.module___image-item-container {
    flex-direction: column;
  }
}
.Landing\.module___image-item-container-1 {
  margin-bottom: 130px;
}
.Landing\.module___image-item-container-2 {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .Landing\.module___image-item-container-2 {
    flex-direction: column;
  }
}
.Landing\.module___image-item,
.Landing\.module___image-item-skeleton {
  width: 398px;
  max-width: 398px;
  height: 415px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .Landing\.module___image-item,
  .Landing\.module___image-item-skeleton {
    max-width: 100%;
    margin-bottom: 50px;
  }
}
.Landing\.module___image-item-skeleton {
  width: 375px;
  background-color: var(--bg-color);
}
@media (max-width: 768px) {
  .Landing\.module___image-item-skeleton {
    width: 100%;
  }
}
.Landing\.module___image-item-skeleton__logo {
  height: 100px;
  width: 200px;
}
@media (max-width: 768px) {
  .Landing\.module___image-item-skeleton__logo {
    width: 125px;
    margin-top: 50px;
  }
}
.Landing\.module___cover-image-skeleton {
  background-color: var(--bg-color);
  width: 720px;
  height: 420px;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 1096px) {
  .Landing\.module___cover-image-skeleton {
    width: 500px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .Landing\.module___cover-image-skeleton {
    width: 390px;
    height: 212px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 400px) {
  .Landing\.module___cover-image-skeleton {
    width: 355px;
  }
}
.Landing\.module___image-item-1,
.Landing\.module___image-item-skeleton-1 {
  margin-right: 127px;
}
@media (max-width: 768px) {
  .Landing\.module___image-item-1,
  .Landing\.module___image-item-skeleton-1 {
    margin-right: 0;
  }
}
.Landing\.module___image-item-2,
.Landing\.module___image-item-skeleton-2 {
  margin-left: 127px;
}
@media (max-width: 768px) {
  .Landing\.module___image-item-2,
  .Landing\.module___image-item-skeleton-2 {
    margin-left: 0;
  }
}
.Landing\.module___icons-container {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .Landing\.module___icons-container {
    margin-bottom: 71px;
  }
}
.Landing\.module___kouto-covered-container {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .Landing\.module___kouto-covered-container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .Landing\.module___icons-container,
  .Landing\.module___kouto-covered-text {
    width: 100%;
  }
}
.Landing\.module___icon-background {
  padding: 25px;
  border-radius: var(--border-radius);
  height: 140px;
  width: 127px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .Landing\.module___icon-background {
    padding: 5px;
    height: 100px;
  }
}
.Landing\.module___icon-background:last-child {
  margin-right: 71px;
}
@media (max-width: 768px) {
  .Landing\.module___icon-background:last-child {
    margin-right: 0;
  }
}
.Landing\.module___icon-title {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}
@media (max-width: 768px) {
  .Landing\.module___icon-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
  }
}
.Landing\.module___section-get-started {
  padding-top: 125px;
  padding-bottom: 125px;
}
.Landing\.module___get-started-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .Landing\.module___get-started-items {
    flex-direction: column;
  }
}
.Landing\.module___get-started-items-mobile-container {
  display: flex;
  column-gap: 10px;
  overflow-x: auto;
}
.Landing\.module___get-started-item {
  padding: 24px;
  margin-bottom: 25px;
  background-color: var(--neutral-light);
  border-radius: var(--border-radius);
  min-width: 430px;
  max-width: 430px;
  height: 420px;
  margin-right: 20px;
  position: relative;
}
@media screen and (min-width: 1600px) {
  .Landing\.module___get-started-item {
    margin-right: 48px;
  }
}
@media screen and (max-width: 1096px) {
  .Landing\.module___get-started-item {
    min-width: 350px;
  }
}
@media (max-width: 1000px) {
  .Landing\.module___get-started-item {
    min-width: 300px;
    margin-right: 0;
  }
}
.Landing\.module___dummy-get-started-item {
  min-width: 100px;
  max-width: 100px;
  background-color: transparent;
}
.Landing\.module___get-started-item-number {
  border: 1px solid #000;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 33px;
  margin-top: 77px;
}
.Landing\.module___getting-started-title {
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
}
.Landing\.module___get-started-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Landing\.module___footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #000;
  padding-left: 65px;
}
@media screen and (max-width: 768px) {
  .Landing\.module___footer {
    padding-left: 10px;
  }
}
.Landing\.module___get-started-items-container {
  display: flex;
}
@media screen and (min-width: 1600px) {
  .Landing\.module___get-started-items-container {
    margin-left: -50px;
  }
}
@media screen and (max-width: 1000px) {
  .Landing\.module___get-started-items-container {
    overflow-x: scroll;
    column-gap: 15px;
    padding-left: 10px;
    padding-right: 20px;
  }
}
.Landing\.module___get-started-section-mobile-container {
  padding: 48px 10px;
}
@media screen and (min-width: 1000px) {
  .Landing\.module___get-started-section-mobile-container {
    display: none;
  }
}
.Landing\.module___get-started-section {
  display: flex;
  align-items: center;
}
.Landing\.module___get-started-section__first-column {
  max-width: 700px;
  margin-left: 64px;
  margin-right: 64px;
}
.Landing\.module___slider-icon {
  position: absolute;
  right: 10px;
  bottom: 50px;
  transform: scale(1.5);
  margin-top: -80px;
  cursor: pointer;
}
.Landing\.module___slider-left-icon {
  position: absolute;
  left: 20px;
  bottom: 50px;
  margin-top: -80px;
  transform: scale(1.5);
}
.Landing\.module___slider-icon:hover,
.Landing\.module___slider-left-icon:hover {
  transform: scale(1.6);
  opacity: 0.75;
}
.Landing\.module___get-started-way-btn-section {
  margin-top: 25px;
}
@media screen and (max-width: 1000px) {
  .Landing\.module___get-started-way-btn-section {
    margin-bottom: 25px;
  }
}
.Landing\.module___main-heading-container-img {
  margin-right: 0;
}
.Landing\.module___main-heading-container-img > img {
  width: 720px;
  height: 420px;
  border-radius: 10px 0 0 10px;
  object-fit: cover;
}
@media screen and (max-width: 1096px) {
  .Landing\.module___main-heading-container-img > img {
    width: 500px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .Landing\.module___main-heading-container-img > img {
    width: 390px;
    height: 212px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 400px) {
  .Landing\.module___main-heading-container-img > img {
    width: 355px;
  }
}
@media screen and (max-width: 350px) {
  .Landing\.module___main-heading-container-img > img {
    width: 300px;
  }
}
.Landing\.module___image-modules {
  transition: all 0.3s ease-in-out;
}
.Landing\.module___image-module {
  object-fit: cover;
  width: 50vw;
  height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease-in-out;
  border-radius: 0 10px 10px 0;
  min-height: 50vw;
}
.Landing\.module___step-photo-1 {
  position: sticky;
  top: 110px;
}
.Landing\.module___img-module-container {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .Landing\.module___desktop-horizontal-scroll {
    display: none;
  }
}
.Landing\.module___scroll-container {
  position: sticky;
  top: 110px;
  left: 0;
  right: 0;
  will-change: transform;
  overflow-x: hidden;
}
.Landing\.module___scroll-items-container {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  width: max-content;
}
.Landing\.module___sticky-images-section-container {
  display: flex;
  padding-top: 120px;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 968px) {
  .Landing\.module___sticky-images-section-container {
    display: none;
  }
}
.Landing\.module___step-content {
  height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 64px;
  margin-right: 64px;
}
.Landing\.module___featured-images-section {
  display: none;
  padding: 48px 10px;
}
@media screen and (max-width: 968px) {
  .Landing\.module___featured-images-section {
    display: block;
  }
}
@media screen and (max-width: 968px) {
  .Landing\.module___featured-images-section__img-module {
    object-fit: cover;
    width: 500px;
    height: 212px;
    border-radius: 10px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .Landing\.module___featured-images-section__img-module {
    width: 390px;
    margin-left: 0;
  }
}
@media screen and (max-width: 400px) {
  .Landing\.module___featured-images-section__img-module {
    width: 355px;
  }
}
@media screen and (max-width: 350px) {
  .Landing\.module___featured-images-section__img-module {
    width: 300px;
  }
}
.Landing\.module___featured-images-section__content > h3 {
  margin: 24px 0;
}
.Landing\.module___featured-images-section__content > div {
  margin-bottom: 0;
}
.Landing\.module___featured-images-section__image-2 {
  margin-top: 96px;
}
.Landing\.module___image-module-1 {
  transform: scale(1.04);
  margin-right: 15px;
}



/* Create Brand */
.NewBrandJoined\.module___email-sent-title {
  font-weight: normal;
  font-size: 24px;
  line-height: 22px;
  margin-top: 7px !important;
}
.NewBrandJoined\.module___email-sent-text {
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 60px !important;
}

/* Create Brand */
.Signup\.module___layout-email-sent {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #F1F1F6;
  padding: 40px 75px;
  border-radius: 4px;
  max-width: 533px;
  margin-bottom: 27px;
}
.Signup\.module___email-sent-title {
  font-weight: normal;
  font-size: 24px;
  line-height: 22px;
}
.Signup\.module___email-sent-text {
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}

/* Setting Modules */
.Availability\.module___titlearrow {
  font-size: 16px;
}
.Availability\.module___para {
  font-size: 18px;
  color: #666;
}
.Availability\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Availability\.module___branddivider {
  margin: 30px 0;
  background-color: transparent;
}
.Availability\.module___textContainer {
  display: flex;
  justify-content: space-between;
}
.Availability\.module___syncedCalendars {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  row-gap: 10px;
}
.Availability\.module___syncedCalendars div {
  margin: 0;
}

/* Setting Modules */
.Calendar\.module___titlearrow {
  font-size: 16px;
}
.Calendar\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Calendar\.module___branddivider {
  margin: 30px 0;
  background-color: transparent;
}

/* Setting Modules */
.APIKeys\.module___titlearrow {
  font-size: 16px;
}
.APIKeys\.module___flex {
  display: flex;
  flex-direction: column;
}
.APIKeys\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.APIKeys\.module___para {
  font-size: 16px;
  line-height: 19px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 60px;
}
.APIKeys\.module___flexdescription {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  align-items: center;
  color: #000;
  padding-bottom: 9px;
}
.APIKeys\.module___eyeIcon {
  padding-left: 80px;
  text-align: right;
}
.APIKeys\.module___textField {
  flex-direction: row;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  width: 60%;
  height: 40px;
  color: #000;
  background: #fff;
  border: 1px solid #102438;
  box-sizing: border-box;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 8px 15px;
}
.APIKeys\.module___emojiContainer {
  align-items: right;
  width: 20px;
  height: auto;
}

/* Setting Modules */
.DataPlus\.module___titlearrow {
  font-size: 16px;
}
.DataPlus\.module___container {
  padding: 11px 11px 8px 5px;
}
.DataPlus\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.DataPlus\.module___para {
  font-size: 16px;
  line-height: 19px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 60px;
}
.DataPlus\.module___flexdescription {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: #000;
}
.DataPlus\.module___flexBtn {
  margin-left: auto;
}
.DataPlus\.module___eyeIcon {
  padding-left: 80px;
  text-align: right;
}
.DataPlus\.module___textField {
  flex-direction: row;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  width: 100%;
  height: 40px;
  color: #000;
  background: #fff;
  border: 1px solid #102438;
  box-sizing: border-box;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 8px 15px;
}
@media (max-width: 767px) {
  .DataPlus\.module___textField {
    width: 100%;
  }
}
.DataPlus\.module___emojiContainer {
  align-items: right;
  width: 20px;
  height: auto;
}

/* Setting Modules */
.Developers\.module___titlearrow {
  font-size: 16px;
}
.Developers\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Developers\.module___branddivider {
  margin: 30px 0;
  background-color: transparent;
}
.Developers\.module___developers_settings .ant-space-item {
  margin-bottom: 0 !important;
}
.Developers\.module___developers_settings .ant-space-vertical {
  display: flex !important;
}
.Developers\.module___developers_settings .Developers\.module___featureBtns {
  max-width: 634px;
}

/* Setting Modules */
.ScriptEmbed\.module___titlearrow {
  font-size: 16px;
}
.ScriptEmbed\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.ScriptEmbed\.module___saveBtn {
  padding: 20px 0 0 39px;
}
.ScriptEmbed\.module___para {
  font-size: 16px;
  line-height: 19px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 60px !important;
}
.ScriptEmbed\.module___branddivider {
  margin: 30px 0;
  background-color: transparent;
}
.ScriptEmbed\.module___formactions {
  display: flex;
  justify-content: flex-end;
}
.ScriptEmbed\.module___radio {
  width: 20px;
  height: 20px;
  display: block;
}
.ScriptEmbed\.module___breadcrumblink {
  color: #000 !important;
}
.ScriptEmbed\.module___breadcrumblink:hover {
  color: gray !important;
}
.ScriptEmbed\.module___script-container {
  position: relative;
  background: #eee;
  padding: 48px 15px;
}
.ScriptEmbed\.module___script-container-embed {
  padding-left: 39px;
}
.ScriptEmbed\.module___step-container--header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.ScriptEmbed\.module___step-number {
  width: 25px;
  height: 25px;
  border: 1px solid var(--primary-color);
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
}
.ScriptEmbed\.module___step-text {
  font-size: 16px;
  line-height: 19px;
  width: calc(100% - 39px);
}
.ScriptEmbed\.module___step-container {
  position: relative;
  margin-bottom: 54px;
}
@media (min-width: 1025px) {
  .ScriptEmbed\.module___step-container {
    padding: 0 50px;
  }
}
.ScriptEmbed\.module___footer {
  font-size: 16px;
  line-height: 19px;
}
@media (min-width: 1025px) {
  .ScriptEmbed\.module___footer {
    padding: 0 50px;
  }
}
.ScriptEmbed\.module___customStylesForm {
  margin-top: 20px;
}
.ScriptEmbed\.module___brandingLinkColor {
  color: #0052cc;
}

.WebhookLogs\.module___webhookLogsContainer__headdivider {
  margin: 0 !important;
  background-color: var(--tertiary-color);
}
@media screen and (max-width: 768px) {
  .WebhookLogs\.module___webhookLogsContainer__headerNav {
    font-size: 18px;
  }
}
.WebhookLogs\.module___webhookLogsContainer__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid #f0f0f0;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .WebhookLogs\.module___webhookLogsContainer__header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12px;
  }
}
.WebhookLogs\.module___webhookLogsContainer__header .ant-typography {
  margin: 0;
}
.WebhookLogs\.module___webhookLogsContainer__header .WebhookLogs\.module___header-title {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}
.WebhookLogs\.module___webhookLogsContainer__header .WebhookLogs\.module___header-title h1 {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .WebhookLogs\.module___webhookLogsContainer__header .WebhookLogs\.module___header-title h1 {
    font-size: 18px !important;
    white-space: normal;
  }
}
.WebhookLogs\.module___webhookLogsContainer__header .WebhookLogs\.module___header-title span {
  color: var(--tertiary-color);
}
.WebhookLogs\.module___webhookLogsContainer__header .WebhookLogs\.module___header-actionBtns {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.WebhookLogs\.module___webhookLogsContainer__header .WebhookLogs\.module___header-actionBtns button {
  border-radius: 4px;
}
.WebhookLogs\.module___webhookLogsContainer__filterInfo {
  display: flex;
  flex-wrap: wrap;
  padding-top: 13px;
  padding-bottom: 25px;
}
.WebhookLogs\.module___webhookLogsContainer__filterInfo > div {
  display: flex;
  flex-direction: column;
  padding: 0 17px;
  border-right: 1px solid #f0f0f0;
}
.WebhookLogs\.module___webhookLogsContainer__filterInfo > div p {
  font-size: 12px;
  margin-bottom: 4px;
}
.WebhookLogs\.module___webhookLogsContainer__filterInfo > div:first-child {
  padding-left: 0;
}
@media screen and (max-width: 522px) {
  .WebhookLogs\.module___webhookLogsContainer__filterInfo > div:last-child {
    padding-left: 0;
    margin-top: 10px;
    border: none;
  }
}
.WebhookLogs\.module___webhookLogsContainer__filterInfo .ant-tag {
  text-align: center;
  border-radius: 0;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5px;
}
.WebhookLogs\.module___webhookLogsContainer__filterInfo .ant-picker {
  width: 240px;
  border-radius: 0;
  height: 24px;
}
.WebhookLogs\.module___webhookLogsContainer__filterInfo .ant-picker input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.WebhookLogs\.module___webhookLogsContainer__filterInfo .ant-picker-clear {
  right: 6.5px;
}
.WebhookLogs\.module___webhookLogsContainer__filterInfo .ant-picker-active-bar {
  margin-left: 8px;
}
.WebhookLogs\.module___webhookLogsContainer__loading {
  margin-top: 50px;
}
.WebhookLogs\.module___webhookLogsContainer .ant-tabs {
  padding: 0;
}
.WebhookLogs\.module___webhookLogsContainer .ant-tabs-nav-container {
  justify-content: flex-start !important;
  border-bottom: 1px solid #f0f0f0;
}
.WebhookLogs\.module___webhookLogsContainer .ant-tabs-top-bar {
  margin: 0;
}
.WebhookLogs\.module___webhookLogsContainer .ant-tabs-nav .ant-tabs-tab {
  border-color: transparent;
  font-size: 14px;
  padding: 8px 0;
  margin-right: 32px;
}
.ant-picker-datetime-panel > *:last-child {
  display: none;
}
.ant-btn-sm {
  border-radius: 4px;
}
.WebhookLogs\.module___tooltipEventItem .ant-tooltip-content > *:last-child {
  background: #f0f0f0;
  color: #262626;
}

.Webhooks\.module___webhooksContainer__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .Webhooks\.module___webhooksContainer__title .Webhooks\.module___addWebhookButton {
    display: none;
  }
}
.Webhooks\.module___webhooksContainer__headdivider {
  margin-top: 0 !important;
  background-color: rgba(0, 0, 0, 0.5);
}
.Webhooks\.module___webhooksContainer__para {
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 38px !important;
}
@media screen and (max-width: 768px) {
  .Webhooks\.module___webhooksContainer__para {
    margin-bottom: 20px !important;
  }
}
.Webhooks\.module___webhooksContainer .ant-tag {
  display: inline;
}
.Webhooks\.module___webhooksContainer .ant-pagination {
  margin-top: 20px;
  margin-bottom: 0;
  margin-right: 24px;
}
.Webhooks\.module___webhooksContainer .ant-pagination-item-active {
  border: 1px solid #102438 !important;
  border-radius: 4px !important;
}
.Webhooks\.module___webhooksContainer .ant-pagination-item-active > a {
  margin-top: 3px;
}
.Webhooks\.module___webhooksContainer .ant-pagination > li {
  border-radius: 0;
  margin: 0;
  min-width: 24px;
  height: 24px;
  border-color: transparent;
  background-color: transparent;
}
.Webhooks\.module___webhooksContainer .ant-pagination > li > a {
  margin-top: -3px;
}
.Webhooks\.module___webhooksContainer .ant-table-tbody > * {
  height: 55px;
}
.Webhooks\.module___webhooksContainer .ant-pagination-item-link {
  border: none;
  background-color: transparent;
}
.Webhooks\.module___webhooksContainer__table {
  background: #fafafa;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 0 0 24px 0;
  border: 1px solid var(--primary-color);
  /* stylelint-disable */
}
.Webhooks\.module___webhooksContainer__table .ant-table-cell {
  border-radius: 0;
}
.Webhooks\.module___webhooksContainer__table .ant-table-thead {
  background-color: var(--primary-color);
  border-radius: 0;
}
.Webhooks\.module___webhooksContainer__table thead > tr > th {
  background: transparent;
  color: #fff;
}
.Webhooks\.module___webhooksContainer__table thead > tr > th:first-child {
  padding-left: 25px;
}
.Webhooks\.module___webhooksContainer__table tbody > tr > td a {
  color: #1890ff;
}
@media screen and (max-width: 992px) {
  .Webhooks\.module___webhooksContainer__table {
    border-radius: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .Webhooks\.module___webhooksContainer__table .ant-table-container table > thead > tr:first-child th:first-child {
    border-top-left-radius: 0;
  }
  .Webhooks\.module___webhooksContainer__table .ant-table-container table > thead > tr:first-child th:last-child {
    border-top-right-radius: 0;
  }
}
.Webhooks\.module___webhooksContainer .Webhooks\.module___addWebhookButtonMobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .Webhooks\.module___webhooksContainer .Webhooks\.module___addWebhookButtonMobile {
    display: block;
    margin-bottom: 20px;
  }
}

/* Preview Experience */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */

/* Edit Exp */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.EditExperience\.module___titlearrow {
  font-size: 16px;
}
/* hack for antd tab not hiding */
#tab-experienceEmailHidden {
  display: none;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.EditExperience\.module___headdivider {
  margin-top: 0;
}
.ant-tabs-bar {
  border: none;
  margin-bottom: 48px;
}
.ant-tabs-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ant-tabs-nav .ant-tabs-tab {
  padding: 4px 0;
  border-bottom: 3px solid #000;
  margin-right: 20px;
  font-size: 16px;
}
.ant-tabs-nav .ant-tabs-tab-active {
  border-bottom: 3px solid #102438;
}
.ant-tabs-nav .ant-tabs-tab:hover {
  border-bottom: 3px solid #a99cff;
}

/* Create Brand */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.CreateExperience\.module___titlearrow {
  font-size: 16px;
}
/* hack for antd tab not hiding */
#tab-experienceEmailHidden {
  display: none;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.CreateExperience\.module___headdivider {
  margin-top: 0;
}
@media (min-width: 992px) {
  .ant-tabs {
    padding: 0 20px;
  }
}
.ant-tabs-bar {
  border: none;
  margin-bottom: 48px;
}
.ant-tabs-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ant-tabs-nav .ant-tabs-tab {
  padding: 4px 0;
  border-bottom: 3px solid #000;
  margin-right: 20px;
  font-size: 16px;
  vertical-align: top;
}
.ant-tabs-nav .ant-tabs-tab-disabled {
  border-bottom: 3px solid rgba(0, 0, 0, 0.25);
}
.ant-tabs-nav .ant-tabs-tab-active {
  border-bottom: 3px solid #102438;
}
.ant-tabs-nav .ant-tabs-tab-disabled:hover {
  border-bottom: 3px solid rgba(0, 0, 0, 0.25);
}
.ant-tabs-nav .ant-tabs-tab:hover {
  border-bottom: 3px solid #a99cff;
}
.CreateExperience\.module___breadcrumblink {
  color: #000 !important;
}
.CreateExperience\.module___breadcrumblink:hover {
  color: gray !important;
}
.CreateExperience\.module___hiddenPaymentTab {
  display: none !important;
}

/* Create Brand */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.FeatureExperience\.module___titlearrow {
  font-size: 16px;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.FeatureExperience\.module___headdivider {
  margin-top: 0;
}
.FeatureExperience\.module___para {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.FeatureExperience\.module___breadcrumblink {
  color: #000 !important;
}
.FeatureExperience\.module___breadcrumblink:hover {
  color: gray !important;
}
.FeatureExperience\.module___formaction {
  padding: 12px 0 50px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
}
@media (min-width: 576px) {
  .FeatureExperience\.module___formaction {
    display: flex;
  }
}
.FeatureExperience\.module___formaction .ant-btn {
  margin-bottom: 20px;
  width: 100%;
  padding: 0;
  max-width: 130px;
}
.FeatureExperience\.module___formaction > div {
  width: 30%;
  text-align: center;
}
.FeatureExperience\.module___formaction > div:first-child {
  text-align: left;
}
.FeatureExperience\.module___formaction > div:last-child {
  text-align: right;
}
.FeatureExperience\.module___form-experience--title {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

/* Create Brand */
.CreateHost\.module___para {
  font-size: 18px;
  color: #666;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.CreateHost\.module___headdivider {
  margin-top: 0;
}

/* Setting Modules */
.titlearrow {
  font-size: 16px;
}
.breadcrumblink {
  color: #000 !important;
}
.breadcrumblink:hover {
  color: gray !important;
}
.para {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.headdivider {
  margin-top: 0;
}
.cardMessageHeader {
  padding: 16px 24px;
  border-bottom: 1px solid var(--primary-color);
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.cardMessageHeaderButton {
  position: absolute;
  top: 16px;
  left: 24px;
}
.cardMessageHeaderTitle {
  font-size: 24px;
  line-height: 27px;
}
.msger {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 867px;
  margin: 25px 10px;
  height: calc(100% - 50px);
  border: var(--border);
  border-radius: 5px;
  background: var(--msger-bg);
  box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
}
.msger-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: var(--border);
  background: #eee;
  color: #666;
}
.icons {
  font-size: 0;
  display: flex;
  width: 30px;
  height: 30px;
}
.icons svg {
  width: inherit;
  height: inherit;
}
.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  height: calc(100vh - 460px);
  min-height: 300px;
}
.msger-chat::-webkit-scrollbar {
  width: 6px;
}
.msger-chat::-webkit-scrollbar-track {
  background: #ddd;
}
.msger-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}
.msg {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.msg-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  border: 1px solid var(--primary-color);
  background-color: var(--white-color);
  color: var(--primary-color);
  box-shadow: var(--box-shadow);
}
.msg-img-withouttext {
  border: 1px solid var(--primary-color);
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
}
.msg-img-host {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow);
  color: var(--white-color);
}
.msg-bubble {
  max-width: 560px;
  padding: 15px;
  border-radius: 6px;
  background: var(--white-color);
  border: 1px solid var(--primary-color);
  box-shadow: var(--box-shadow);
  width: calc(100% - 80px);
}
.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}
.msg-info-time {
  font-size: 0.85em;
}
.left-msg .msg-bubble {
  border-top-left-radius: 0;
}
.right-msg {
  flex-direction: row-reverse;
}
.right-msg .msg-bubble {
  background: var(--primary-color);
  color: #fff;
  border-top-right-radius: 0;
}
.right-msg .msg-img {
  margin: 0 0 0 10px;
}
.msger-inputarea {
  display: flex;
  padding: 24px;
  align-items: center;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}
.msger-input {
  flex: 1;
  margin-right: 20px;
}
.msger-send-btn {
  margin-left: 10px;
  background: #00c441;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.23s;
}
.msger-send-btn:hover {
  background: #00b432;
}

/* Setting Modules */
.BankAccount\.module___titlearrow {
  font-size: 16px;
}
.BankAccount\.module___headdividerblank {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  margin-bottom: 60px;
}
.BankAccount\.module___titleCenter {
  text-align: center;
  margin-bottom: 30px;
}
.BankAccount\.module___accountstatus {
  border-radius: var(--border-radius-base);
  background: var(--bg-color);
  max-width: 857px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}
.BankAccount\.module___accountPara {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 50px;
}
.BankAccount\.module___breadcrumblink {
  color: #000 !important;
}
.BankAccount\.module___breadcrumblink:hover {
  color: gray !important;
}
.BankAccount\.module___bankaccountstep {
  max-width: 722px;
  margin: 0 auto 50px;
  text-align: left;
  display: flex;
}
.BankAccount\.module___bankaccountnumber {
  width: 33px;
  height: 33px;
  border: 1px solid var(--primary-color);
  margin-right: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
}
.BankAccount\.module___activenumber {
  background: var(--white-color);
  color: var(--primary-color);
}
.BankAccount\.module___inactivenumber {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
}
.BankAccount\.module___connectednumber {
  background: var(--primary-color);
  color: #fff;
}
.BankAccount\.module___bankaccountcontent {
  width: calc(100% - 44px);
}
.BankAccount\.module___bankaccountcontent h5 {
  font-size: 24px;
  line-height: 28px;
}
@media screen and (max-width: 600px) {
  .BankAccount\.module___bankaccountcontent h5 {
    font-size: 20px !important;
  }
}
.BankAccount\.module___bankaccountcontent h5 .ant-badge-status-text {
  font-size: 16px !important;
}
.BankAccount\.module___paragraph {
  font-size: 16px;
  font-style: italic;
}
.BankAccount\.module___bankaccountcontentinactive {
  width: calc(100% - 44px);
  color: rgba(0, 0, 0, 0.5);
}
.BankAccount\.module___bankaccountcontentinactive h5 {
  font-size: 24px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 600px) {
  .BankAccount\.module___bankaccountcontentinactive h5 {
    font-size: 20px !important;
  }
}
.BankAccount\.module___bankaccountcontentinactive h5 .ant-badge-status-text {
  font-size: 16px !important;
}
.BankAccount\.module___bankaccountcontentinactive .BankAccount\.module___paragraph {
  color: rgba(0, 0, 0, 0.5);
}
.BankAccount\.module___titleForm {
  margin-bottom: 48px !important;
}
.BankAccount\.module___primaryCircle {
  color: var(--primary-color);
  margin-right: 11px;
}
.BankAccount\.module___para18 {
  font-size: 18px;
}
.BankAccount\.module___europeanAccountStyles .ant-form-item-explain {
  text-align: start;
  padding-left: 10px;
}
.BankAccount\.module___accountStatusMessage {
  margin-bottom: 24px;
  max-width: 857px;
}
.BankAccount\.module___accountStatusMessage .ant-alert-success {
  border: 1px solid #b7eb8f;
  background: #f6ffed;
}

.CalendarSync\.module___headdivider {
  margin-top: 0 !important;
  background-color: var(--tertiary-color);
}
.CalendarSync\.module___titlearrow svg {
  width: 16px;
  height: 16px;
}
.CalendarSync\.module___calendarSyncModule__header {
  font-weight: normal !important;
}
.CalendarSync\.module___calendarSyncModule__para {
  font-size: 16px;
  line-height: 24px;
  color: var(--tertiary-color);
  margin-bottom: 20px !important;
}
@media screen and (max-width: 768px) {
  .CalendarSync\.module___calendarSyncModule__para {
    margin-bottom: 14px !important;
  }
}
.CalendarSync\.module___calendarSyncModule__calendarIcs {
  padding: 24px;
  width: 650px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  column-gap: 8px;
}
.CalendarSync\.module___calendarSyncModule__calendarIcs p {
  font-size: 16px;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.CalendarSync\.module___calendarSyncModule__calendarIcs svg {
  width: 20px;
  height: 20px;
}
.CalendarSync\.module___calendarImportExternal {
  margin-top: 34px;
}

.CalendarListItem\.module___calendarListItem {
  padding: 12px 24px;
  width: 650px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  column-gap: 8px;
  margin-bottom: 15px;
}
.CalendarListItem\.module___calendarListItem__actionItem {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.CalendarListItem\.module___calendarListItem__actionItem svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.CalendarListItem\.module___calendarListItem__texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 5px;
}
.CalendarListItem\.module___calendarListItem__texts p {
  margin: 0;
}
.CalendarListItem\.module___syncedTime {
  color: rgba(0, 0, 0, 0.5);
}
.CalendarListItem\.module___syncError {
  color: var(--error-color);
}

.ExternalCalendar\.module___externalCalendarModule__header {
  font-weight: normal !important;
}
.ExternalCalendar\.module___externalCalendarModule__para {
  font-size: 16px;
  line-height: 24px;
  color: var(--tertiary-color);
  margin-bottom: 20px !important;
}
@media screen and (max-width: 768px) {
  .ExternalCalendar\.module___externalCalendarModule__para {
    margin-bottom: 14px !important;
  }
}
.ExternalCalendar\.module___calendarImportExternal,
.ExternalCalendar\.module___syncedCalendarList {
  margin-top: 34px;
}

/* Title */
.Paragraph\.module___tertiary {
  font-size: 16px;
  line-height: 19px;
  color: var(--tertiary-color);
}

/* Terms */
.Reviews\.module___titlearrow {
  font-size: 16px;
}
/* stylelint-disable */
.Reviews\.module___breadcrumblink {
  color: #000 !important;
}
.Reviews\.module___breadcrumblink:hover {
  color: gray !important;
}
.Reviews\.module___paginationwrap {
  display: flex;
  justify-content: flex-end;
  max-width: 702px;
}

/* Create Brand */
span.AboutMe\.module___avataruploader {
  display: flex;
  justify-content: center;
  align-items: center;
}
.AboutMe\.module___avataruploader .ant-upload,
.AboutMe\.module___avataruploader .ant-upload.ant-upload-select-picture-card {
  border: none;
  height: 180px !important;
  width: 180px !important;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.AboutMe\.module___avataruploader .ant-upload.ant-upload-select-picture-card > .ant-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.AboutMe\.module___profileImg {
  width: 100%;
  height: 100%;
  border-radius: 90px;
  object-fit: cover;
}
.AboutMe\.module___textContainer {
  max-width: 461px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .AboutMe\.module___textContainer {
    text-align: center;
    padding: 0 10px;
  }
}
.AboutMe\.module___description {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}
.AboutMe\.module___datePicker {
  display: grid;
  grid-template-columns: repeat(3, 107px);
  gap: 25px;
}
@media (max-width: 767px) {
  .AboutMe\.module___datePicker {
    display: block;
    width: 100%;
  }
}
.AboutMe\.module___datePicker .AboutMe\.module___errorMsg {
  position: absolute;
  bottom: 0;
  color: #dc3545;
}
@media (max-width: 767px) {
  .AboutMe\.module___datePicker .AboutMe\.module___errorMsg {
    top: 90%;
  }
}

/* Create Brand */
.UpdateAccessCode\.module___para {
  font-size: 18px;
  color: #666;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.UpdateAccessCode\.module___headdivider {
  margin-top: 0;
}
.UpdateAccessCode\.module___titlearrow {
  font-size: 16px;
}
.UpdateAccessCode\.module___breadcrumblink {
  color: #000 !important;
}
.UpdateAccessCode\.module___breadcrumblink:hover {
  color: gray !important;
}

/* Create Brand */
.CreateAccessCode\.module___para {
  font-size: 18px;
  color: #666;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.CreateAccessCode\.module___headdivider {
  margin-top: 0;
}
.CreateAccessCode\.module___titlearrow {
  font-size: 16px;
}
.CreateAccessCode\.module___breadcrumblink {
  color: #000 !important;
}
.CreateAccessCode\.module___breadcrumblink:hover {
  color: gray !important;
}

/* Footer css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.AccessCode\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.AccessCode\.module___titlearrow {
  font-size: 16px;
}
.AccessCode\.module___breadcrumblink {
  color: #000 !important;
}
.AccessCode\.module___breadcrumblink:hover {
  color: gray !important;
}
.AccessCode\.module___para {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}
.AccessCode\.module___disablePointer {
  pointer-events: none;
}
.AccessCode\.module___flex {
  display: flex;
}
.AccessCode\.module___flexContainer {
  width: 48%;
  height: auto;
}
.AccessCode\.module___flexContainer .AccessCode\.module___flexaction {
  display: flex;
  justify-content: flex-end;
}
.AccessCode\.module___flexContainer .AccessCode\.module___flexaction .ant-form-item > div > div .ant-form-item-control-input-content .ant-input {
  min-width: 90px;
}
.AccessCode\.module___flexContainer .AccessCode\.module___flexaction .ant-form-item > div > div .ant-form-item-control-input-content .ant-btn {
  padding: 6px 12px;
  height: 40px;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .AccessCode\.module___flex {
    flex-wrap: wrap;
  }
  .AccessCode\.module___flexContainer {
    width: 100%;
    height: auto;
    padding-top: 20px;
  }
}
.AccessCode\.module___flexDescription {
  width: 52%;
  height: auto;
}
.AccessCode\.module___actionItems {
  display: flex;
  align-items: center;
}
.AccessCode\.module___actionItems > div > img {
  cursor: pointer;
}

/* Setting Modules */
.Account\.module___titlearrow {
  font-size: 16px;
}
.Account\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Account\.module___formactions {
  display: flex;
  justify-content: flex-end;
}
.Account\.module___breadcrumblink {
  color: #000 !important;
}
.Account\.module___breadcrumblink:hover {
  color: gray !important;
}
@media (max-width: 767px) {
  .Account\.module___accountchecking {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Setting Modules */
.BankAccount\.module___titlearrow {
  font-size: 16px;
}
.BankAccount\.module___headdividerblank {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  margin-bottom: 60px;
}
.BankAccount\.module___titleCenter {
  text-align: center;
  margin-bottom: 30px;
}
.BankAccount\.module___accountstatus {
  border-radius: var(--border-radius-base);
  background: var(--bg-color);
  max-width: 857px;
  margin: 0 !important;
  padding: 40px 24px;
  text-align: center;
}
.BankAccount\.module___accountPara {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 50px;
}
.BankAccount\.module___breadcrumblink {
  color: #000 !important;
}
.BankAccount\.module___breadcrumblink:hover {
  color: gray !important;
}
.BankAccount\.module___bankaccountstep {
  max-width: 722px;
  margin: 0 auto 50px;
  text-align: left;
  display: flex;
}
.BankAccount\.module___bankaccountnumber {
  width: 33px;
  height: 33px;
  border: 1px solid var(--primary-color);
  margin-right: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
}
.BankAccount\.module___activenumber {
  background: var(--white-color);
  color: var(--primary-color);
}
.BankAccount\.module___inactivenumber {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
}
.BankAccount\.module___connectednumber {
  background: var(--primary-color);
  color: #fff;
}
.BankAccount\.module___bankaccountcontent {
  width: calc(100% - 44px);
}
.BankAccount\.module___bankaccountcontent h5 {
  font-size: 24px;
  line-height: 28px;
}
@media screen and (max-width: 600px) {
  .BankAccount\.module___bankaccountcontent h5 {
    font-size: 20px !important;
  }
}
.BankAccount\.module___bankaccountcontent h5 .ant-badge-status-text {
  font-size: 16px !important;
}
.BankAccount\.module___paragraph {
  font-size: 16px;
  font-style: italic;
}
.BankAccount\.module___bankaccountcontentinactive {
  width: calc(100% - 44px);
  color: rgba(0, 0, 0, 0.5);
}
.BankAccount\.module___bankaccountcontentinactive h5 {
  font-size: 24px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 600px) {
  .BankAccount\.module___bankaccountcontentinactive h5 {
    font-size: 20px !important;
  }
}
.BankAccount\.module___bankaccountcontentinactive h5 .ant-badge-status-text {
  font-size: 16px !important;
}
.BankAccount\.module___bankaccountcontentinactive .BankAccount\.module___paragraph {
  color: rgba(0, 0, 0, 0.5);
}
.BankAccount\.module___titleForm {
  margin-bottom: 48px !important;
}
.BankAccount\.module___primaryCircle {
  color: var(--primary-color);
  margin-right: 11px;
}
.BankAccount\.module___para18 {
  font-size: 18px;
}
.BankAccount\.module___canadianAccountStyles .ant-form-item-explain,
.BankAccount\.module___europeanAccountStyles .ant-form-item-explain {
  text-align: start;
  padding-left: 10px;
}
.BankAccount\.module___accountStatusMessage {
  margin-bottom: 24px;
  max-width: 857px;
}
.BankAccount\.module___accountStatusMessage .ant-alert-success {
  border: 1px solid #b7eb8f;
  background: #f6ffed;
}

/* Active Link */
.BrandSettingTypes\.module___hidecolordivider {
  margin: 30px 0;
}
.ant-divider-horizontal {
  background: transparent;
}
.BrandSettingTypes\.module___cardssetting {
  background: var(--bg-color);
  border: none;
}
.BrandSettingTypes\.module___cardssetting .ant-card-head {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 0 24px;
  font-size: 18px;
}
.BrandSettingTypes\.module___cardssetting .ant-card-body {
  padding: 16px 24px 40px;
}
.BrandSettingTypes\.module___para {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}
.BrandSettingTypes\.module___formactionend {
  display: flex;
  justify-content: flex-end;
}
.BrandSettingTypes\.module___dynamic-delete-button {
  font-size: 18px;
  position: absolute;
  top: 11px;
  right: 32px;
}

/* Active Link */
.BrandSettingVibes\.module___cardssetting {
  background: var(--bg-color);
  border: none;
}
.BrandSettingVibes\.module___cardssetting .ant-card-head {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 0 24px;
  font-size: 18px;
}
.BrandSettingVibes\.module___cardssetting .ant-card-body {
  padding: 16px 24px 40px;
}
.BrandSettingVibes\.module___hidecolordivider {
  background: transparent;
  margin: 30px 0;
}
.BrandSettingVibes\.module___para {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}
.BrandSettingVibes\.module___formactionend {
  display: flex;
  justify-content: flex-end;
}
.BrandSettingVibes\.module___dynamic-delete-button {
  font-size: 18px;
  position: absolute;
  top: 11px;
  right: 32px;
}

/* Title */
.ColorPicker\.module___colorlabel {
  margin: 0;
  padding: 0 0 8px;
  line-height: 1.5715;
  white-space: initial;
  text-align: left;
  display: block;
}
.ColorPicker\.module___colorpickertext {
  box-shadow: var(--box-shadow);
  padding: 6.5px 16px 6.5px 45px;
  font-size: 16px;
  width: 100%;
  border: none;
  transition: all 0.3s;
}
.ColorPicker\.module___colorpickertext:focus {
  border-color: #a99cff;
  border-right-width: 1px !important;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(125, 111, 246, 0.2);
}
.ColorPicker\.module___color-text-with-popup {
  position: relative;
}
.ColorPicker\.module___color-picker-color-background {
  position: absolute;
  width: 35px;
  height: 38px;
}
.ColorPicker\.module___color-picker-palette {
  position: absolute;
  z-index: 9;
}
.ColorPicker\.module___color-picker-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: none;
  border: none;
  border-radius: 0;
  appearance: none;
}

/* Active Link */
.BrandDesignElement\.module___hidecolordivider {
  margin: 30px 0;
}
.BrandDesignElement\.module___coverpicture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ant-divider-horizontal {
  background: transparent;
}
.BrandDesignElement\.module___cardssetting {
  background: var(--bg-color);
  border: none;
}
.BrandDesignElement\.module___cardssetting .ant-card-head {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 0 24px;
  font-size: 18px;
}
.BrandDesignElement\.module___cardssetting .ant-card-body {
  padding: 16px 24px 40px;
}
.BrandDesignElement\.module___para {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}
.BrandDesignElement\.module___formactionend {
  display: flex;
  justify-content: flex-end;
}
.BrandDesignElement\.module___dynamic-delete-button {
  font-size: 18px;
  position: absolute;
  top: 11px;
  right: 32px;
}
.BrandDesignElement\.module___avataruploader {
  border: 1px solid var(--primary-color);
  box-shadow: var(--box-shadow);
  width: 100%;
  display: block;
  border-radius: 10px;
  height: 180px;
  overflow: hidden;
}
.BrandDesignElement\.module___avataruploader .ant-upload.ant-upload-select-picture-card {
  border: none;
  width: 100%;
  background: var(--white-color);
  height: 178px;
  display: block;
}
.BrandDesignElement\.module___avataruploader .ant-upload.ant-upload-select-picture-card > .ant-upload {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

/* Active Link */
.BrandSettingTemplate\.module___para {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}
.BrandSettingTemplate\.module___coverpicture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.BrandSettingTemplate\.module___formactionend {
  display: flex;
  justify-content: flex-end;
}
.BrandSettingTemplate\.module___dynamic-delete-button {
  font-size: 18px;
  position: absolute;
  top: 11px;
  right: 32px;
}
.BrandSettingTemplate\.module___avataruploader .ant-upload.ant-upload-select-picture-card {
  box-shadow: var(--box-shadow);
  border: none;
  width: 180px;
  background: var(--white-color);
  height: 120px;
}
.BrandSettingTemplate\.module___avataruploaderlarge {
  border: 1px solid var(--primary-color);
  box-shadow: var(--box-shadow);
  width: 100%;
  display: block;
  border-radius: 10px;
  height: 180px;
  overflow: hidden;
}
.BrandSettingTemplate\.module___avataruploaderlarge .ant-upload.ant-upload-select-picture-card {
  border: none;
  width: 100%;
  background: var(--white-color);
  height: 178px;
  display: block;
}
.BrandSettingTemplate\.module___avataruploaderlarge .ant-upload.ant-upload-select-picture-card > .ant-upload {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

/* Setting Modules */
.Branding\.module___titlearrow {
  font-size: 16px;
}
.Branding\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Branding\.module___branddivider {
  margin: 30px 0;
  background-color: transparent;
}
.Branding\.module___breadcrumblink {
  color: #000 !important;
}
.Branding\.module___breadcrumblink:hover {
  color: gray !important;
}

/* Create Brand */
.UpdateDiscountCode\.module___para {
  font-size: 18px;
  color: #666;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.UpdateDiscountCode\.module___headdivider {
  margin-top: 0;
}
.UpdateDiscountCode\.module___titlearrow {
  font-size: 16px;
}
.UpdateDiscountCode\.module___breadcrumblink {
  color: #000 !important;
}
.UpdateDiscountCode\.module___breadcrumblink:hover {
  color: gray !important;
}

/* Create Brand */
.CreateDiscountCode\.module___para {
  font-size: 18px;
  color: #666;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.CreateDiscountCode\.module___headdivider {
  margin-top: 0;
}
.CreateDiscountCode\.module___titlearrow {
  font-size: 16px;
}
.CreateDiscountCode\.module___breadcrumblink {
  color: #000 !important;
}
.CreateDiscountCode\.module___breadcrumblink:hover {
  color: gray !important;
}

/* Footer css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.DiscountCode\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.DiscountCode\.module___titlearrow {
  font-size: 16px;
}
.DiscountCode\.module___breadcrumblink {
  color: #000 !important;
}
.DiscountCode\.module___breadcrumblink:hover {
  color: gray !important;
}
.DiscountCode\.module___actionItemsDiscount {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.DiscountCode\.module___actionItemsDiscount > div > img {
  cursor: pointer;
}
.DiscountCode\.module___disabledActionItem {
  cursor: not-allowed;
  pointer-events: all !important;
}
.DiscountCode\.module___disabledActionItem > img {
  opacity: 0.32;
}
.DiscountCode\.module___disabledActionItem > img:hover {
  cursor: not-allowed;
  pointer-events: all !important;
}

/* Setting Modules */
.Fees\.module___cardssetting {
  background: var(--bg-color);
  border: none;
}
.Fees\.module___cardssetting .ant-card-head {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 0 24px;
  font-size: 18px;
}
.Fees\.module___cardssetting .ant-card-body {
  padding: 16px 24px 40px;
}
.Fees\.module___para {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}
.Fees\.module___titlearrow {
  font-size: 16px;
}
.Fees\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Fees\.module___breadcrumblink {
  color: #000 !important;
}
.Fees\.module___breadcrumblink:hover {
  color: gray !important;
}
.Fees\.module___dynamic-delete-button {
  font-size: 18px;
  position: absolute;
  top: 11px;
  right: 32px;
}
.Fees\.module___formactionend {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .Fees\.module___accountchecking {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Setting Modules */
.Mail\.module___titlearrow {
  font-size: 16px;
}
.Mail\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Mail\.module___branddivider {
  margin: 30px 0;
  background-color: transparent;
}
.Mail\.module___formactions {
  display: flex;
  justify-content: flex-end;
}
.Mail\.module___breadcrumblink {
  color: #000 !important;
}
.Mail\.module___breadcrumblink:hover {
  color: gray !important;
}

.RoomNumber\.module___roomNumberSettings .ant-card-body > div:nth-child(2) {
  padding: 30px !important;
  padding-bottom: 48px !important;
}
.RoomNumber\.module___roomNumberSettings__card {
  margin-top: 62px;
}
.RoomNumber\.module___roomNumberSettings__cardHead {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}
.RoomNumber\.module___roomNumberSettings__cardBody {
  margin-top: 18px;
  margin-bottom: 44px;
  color: #262626;
}
.RoomNumber\.module___roomNumberSettings__cardBody > span {
  font-size: 14px;
  margin-bottom: 4px;
}
.RoomNumber\.module___roomNumberSettings__cardBody > h4 {
  font-size: 28px;
  margin-bottom: 0;
  color: inherit;
}
.RoomNumber\.module___roomNumberSettings__modal {
  padding: 12px;
}
.RoomNumber\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.RoomNumber\.module___settingsModalContent__header {
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
}
.RoomNumber\.module___settingsModalContent__header > span {
  text-transform: capitalize;
}
.RoomNumber\.module___settingsModalContent__modalRow {
  display: flex;
}
.RoomNumber\.module___settingsModalContent__modalSecondRow {
  margin: 22px 0;
}
.RoomNumber\.module___settingsModalContent__listNumber {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.RoomNumber\.module___settingsModalContent__listNumber > button {
  background-color: #102438;
  border-color: #102438;
  color: #fff;
  border-radius: 50%;
  padding: 5px;
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
}
.RoomNumber\.module___settingsModalContent__listContent {
  margin-left: 16px;
  margin-bottom: 2px;
  flex: 1;
}
.RoomNumber\.module___settingsModalContent__listContent .anticon-delete > svg {
  transform: scale(1.1);
}
.RoomNumber\.module___settingsModalContent__listContent .ant-upload-list-item-card-actions {
  opacity: 1;
}
.RoomNumber\.module___settingsModalContent__listContent .ant-upload-disabled .ant-btn {
  cursor: not-allowed !important;
}
.RoomNumber\.module___settingsModalContent__listContent button {
  width: 120px;
  height: 40px;
  box-shadow: none;
  font-size: 14px;
  padding: 5px 16px;
  border-radius: 0;
}
.RoomNumber\.module___settingsModalContent__listContent > p {
  font-size: 16px;
  margin-bottom: 8px;
  color: #262626;
}
.RoomNumber\.module___settingsModalContent__listContent > span {
  font-size: 14px;
  line-height: 22px;
  color: #8c8c8c;
}
.RoomNumber\.module___settingsModalContent .ant-upload-list-item-card-actions > a {
  display: none;
}
.RoomNumber\.module___settingsModalContent .ant-upload-list-item-info:hover {
  cursor: pointer;
}
.RoomNumber\.module___listNumberBorder {
  height: 48px;
  width: 1px;
  border: 1px solid #f0f0f0;
}
.RoomNumber\.module___file-upload {
  display: none;
}
.RoomNumber\.module___custom-file-upload {
  cursor: pointer;
  padding: 12px 16px;
}

/* Create Brand */
.CreateTeam\.module___para {
  font-size: 18px;
  color: #666;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.CreateTeam\.module___headdivider {
  margin-top: 0;
}
.CreateTeam\.module___titlearrow {
  font-size: 16px;
}
.CreateTeam\.module___breadcrumblink {
  color: #000 !important;
}
.CreateTeam\.module___breadcrumblink:hover {
  color: gray !important;
}

/* Footer css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.Team\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Team\.module___titlearrow {
  font-size: 16px;
}
.Team\.module___breadcrumblink {
  color: #000 !important;
}
.Team\.module___breadcrumblink:hover {
  color: gray !important;
}
.Team\.module___actionItems {
  display: flex;
  align-items: center;
}
.Team\.module___actionItems > div {
  margin-left: 5px;
}
.Team\.module___actionItems > div > img {
  cursor: pointer;
}
.Team\.module___actionItemDisabled {
  cursor: not-allowed;
  pointer-events: all !important;
}
.Team\.module___actionItemDisabled > img {
  opacity: 0.3;
}

/* Setting Modules */
.Terms\.module___titlearrow {
  font-size: 16px;
}
.Terms\.module___headdividerblank {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Terms\.module___columsupload {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.Terms\.module___columsupload .ant-upload {
  height: auto;
}
.Terms\.module___columsupload .ant-row {
  margin: 0 20px 0 0;
}
.Terms\.module___columsupload .ant-row:nth-child(2) {
  margin-top: 30px;
}
.Terms\.module___dynamic-delete-button {
  font-size: 18px;
  margin-top: 42px;
}
.Terms\.module___formactionend {
  display: flex;
  justify-content: flex-end;
}
.Terms\.module___breadcrumblink {
  color: #000 !important;
}
.Terms\.module___breadcrumblink:hover {
  color: gray !important;
}

/* Footer css */
.Customer\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Customer\.module___transparent {
  background-color: transparent;
}
.Customer\.module___cardWithFilterHead {
  padding: 16px 24px;
  border-bottom: 1px solid var(--primary-color);
}
.Customer\.module___cardcontainer {
  padding: 16px 24px;
}
.Customer\.module___title {
  margin-bottom: 16px;
}
.Customer\.module___list {
  border-bottom: none;
  background: var(--white-color);
  margin-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--primary-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.Customer\.module___listcontent {
  margin-bottom: 32px;
}

/* Create Brand */
.JoinBrand\.module___email-sent-title {
  margin-top: 7px !important;
  font-weight: normal;
  font-size: 24px;
  line-height: 22px;
}
.JoinBrand\.module___email-sent-text {
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 60px !important;
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.Create\.module___container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.Create\.module___section {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-base);
  padding: 25px 10px;
  min-width: 375px;
  max-width: 612px;
  margin-top: 25px;
  text-align: left;
}
.Create\.module___logo {
  width: 150px;
  max-width: 150px;
  height: auto;
}

/* Update Brand css */

/* Create Brand */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.headdivider {
  margin-top: 0;
}

/* Footer css */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.table {
  display: block;
  overflow: hidden;
}
.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
}
.headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.table-with-header {
  border: 1px solid #102438;
  background: #f9f9f9;
  border-radius: 10px;
}
.table-with-header .ant-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
  padding-left: 24px;
}
.table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
  padding-right: 24px;
  padding-left: 24px;
}
.table-with-header .ant-table-container table > tbody > tr td:last-child {
  border-left: 1px solid var(--black-color);
  padding-left: 24px;
  white-space: normal;
}

/* Footer css */
.Inactive\.module___titlearrow {
  font-size: 16px;
}
.Inactive\.module___table {
  display: block;
  overflow: hidden;
  margin-bottom: 60px;
}
.Inactive\.module___table-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 14px var(--padding-lg);
}
/* stylelint-disable */
.Inactive\.module___breadcrumblink {
  color: #000 !important;
}
.Inactive\.module___breadcrumblink:hover {
  color: gray !important;
}
.Inactive\.module___table-with-header {
  border: 1px solid var(--primary-color);
  background: var(--bg-color);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
}
.Inactive\.module___table-with-header .ant-table-container table > thead > tr th {
  background: var(--primary-color);
  color: var(--white-color);
  text-transform: uppercase;
}
.Inactive\.module___table-with-header .ant-table-container table > tbody > tr td {
  border-color: var(--black-color);
  padding-top: 16px;
  padding-bottom: 16px;
}
.Inactive\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
  border-left: 1px solid var(--black-color);
  padding-left: 24px;
}
.Inactive\.module___table-with-header .ant-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
  padding-left: 24px;
  background: var(--primary-color);
}
.Inactive\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
  padding-right: 24px;
  padding-left: 24px;
  background: var(--primary-color);
}
.Inactive\.module___table-with-header .ant-table-pagination.ant-pagination {
  padding: 14px 24px;
  margin: 0;
}
.Inactive\.module___para {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.Inactive\.module___headdivider {
  margin-top: 0;
}
.Inactive\.module___actionItems {
  display: flex;
  align-items: center;
}
.Inactive\.module___actionItems > div > img {
  cursor: pointer;
}
.Inactive\.module___duplicateIcon {
  margin-right: 8px;
  margin-top: -6px;
  cursor: pointer;
}
.Inactive\.module___duplicateIcon svg {
  height: 17px;
  width: 17px;
}

/* Pending Experience css */
.Inactive\.module___titlearrow {
  font-size: 16px;
}
/* stylelint-disable */
.Inactive\.module___breadcrumblink {
  color: #000 !important;
}
.Inactive\.module___breadcrumblink:hover {
  color: gray !important;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.Inactive\.module___headdivider {
  margin-top: 0;
}
.Inactive\.module___para {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.Inactive\.module___icons {
  font-size: 0;
  display: flex;
  width: 21px;
  height: 18px;
}
.Inactive\.module___icons svg {
  width: inherit;
  height: inherit;
}
.Inactive\.module___iconspreview {
  font-size: 0;
  display: flex;
  width: 21px;
  height: 13px;
}
.Inactive\.module___iconspreview svg {
  width: inherit;
  height: inherit;
}
.Inactive\.module___listButtonBlock {
  display: flex;
  align-items: flex-start;
}
.Inactive\.module___listButtonBlock li {
  width: 100%;
  margin-left: 10px;
}
@media (max-width: 550px) {
  .Inactive\.module___listButtonBlock li {
    margin-left: 0;
  }
}
@media (max-width: 550px) {
  .Inactive\.module___listButtonBlock {
    flex-wrap: wrap;
  }
}
.Inactive\.module___tablesearch {
  margin-bottom: 34px;
}
.Inactive\.module___duplicateIcons svg {
  fill: #0a8080;
}

/* Experience */
.Experience\.module___titlearrow {
  font-size: 16px;
}
.Experience\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Experience\.module___mb90 {
  margin-bottom: 90px;
}
.Experience\.module___subtitle {
  display: block;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  white-space: normal;
}
.Experience\.module___icons {
  margin-left: auto;
}

/* Loyalty   css */
.Loyalty\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Loyalty\.module___para {
  margin-bottom: 40px !important;
}
.Loyalty\.module___loyaltyRating {
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Loyalty\.module___loyaltywrap {
  display: grid;
  grid-template-columns: minmax(200px, 409px) minmax(200px, 409px);
  justify-content: center;
  align-items: center;
  grid-gap: 96px;
}
@media (max-width: 768px) {
  .Loyalty\.module___loyaltywrap {
    grid-template-columns: minmax(200px, 409px);
    grid-gap: 48px;
  }
}
.Loyalty\.module___titlearrow {
  font-size: 14px;
}

/* Footer css */
.Report\.module___titlearrow {
  font-size: 16px;
}
.Report\.module___table {
  display: block;
  overflow: hidden;
}
.Report\.module___table-header-report {
  display: flex;
  flex-wrap: wrap;
  padding: 14px var(--padding-lg);
  align-items: center;
}
@media (min-width: 1179px) {
  .Report\.module___table-header-report {
    justify-content: space-between;
    align-items: center;
  }
}
.Report\.module___buttonGroup {
  display: flex;
  background: #c4c4c4;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
@media (max-width: 1179px) {
  .Report\.module___buttonGroup {
    margin-bottom: 10px;
    margin-top: 10px;
    margin-right: 8px;
    margin-left: 8px;
  }
}
.Report\.module___buttonGroupWithGap {
  display: flex;
}
.Report\.module___buttonGroupWithGap > *:first-child {
  margin-right: 24px;
}
@media (max-width: 1179px) {
  .Report\.module___buttonGroupWithGap {
    flex-wrap: wrap;
  }
  .Report\.module___buttonGroupWithGap > * {
    margin-bottom: 10px;
    margin-top: 10px;
    margin-right: 8px;
    margin-left: 8px;
  }
}
/* stylelint-disable */
.Report\.module___breadcrumblink {
  color: #000 !important;
}
.Report\.module___breadcrumblink:hover {
  color: gray !important;
}
.Report\.module___table-with-header {
  border: 1px solid var(--primary-color);
  background: var(--bg-color);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
}
.Report\.module___table-with-header .ant-table-pagination.ant-pagination {
  padding: 14px 24px;
  margin: 0;
}
.Report\.module___table-with-header .ant-table-container table > thead > tr th {
  font-size: 11px;
  background: var(--primary-color);
  color: var(--white-color);
}
.Report\.module___table-with-header .ant-table-container table > tbody > tr td {
  font-size: 11px;
  border-color: var(--black-color);
  padding-top: 16px;
  padding-bottom: 16px;
}
.Report\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
  border-left: 0px solid var(--black-color);
  padding-left: 24px;
}
.Report\.module___table-with-header .ant-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
  padding-left: 24px;
  background: var(--primary-color);
}
.Report\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
  padding-right: 24px;
  padding-left: 24px;
  background: var(--primary-color);
}
.Report\.module___para {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.Report\.module___headdivider {
  margin-top: 0;
}

/* Experience */
.Experience\.module___titlearrow {
  font-size: 16px;
}
.Experience\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Experience\.module___mb90 {
  margin-bottom: 90px;
}
.Experience\.module___subtitle {
  display: block;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.Experience\.module___icons {
  margin-left: auto;
}

/* Setting Modules */
.Analytics\.module___dynamicLoadingContainer {
  padding: 10px;
}
.Analytics\.module___separator {
  margin: 30px 0;
  background: transparent;
}
.Analytics\.module___table {
  display: block;
  overflow: hidden;
  margin-bottom: 60px;
}
.Analytics\.module___table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.Analytics\.module___analyticsTab {
  padding: 0 !important;
}
.Analytics\.module___analyticsTab .ant-tabs-nav .ant-tabs-tab {
  border-bottom: 3px solid transparent;
  font-size: 14px;
  padding: 15px 0;
}
.Analytics\.module___analyticsTab .ant-tabs-nav-container {
  justify-content: flex-start;
  min-height: 55px;
}
.Analytics\.module___analyticsTab .ant-tabs-bar {
  margin-bottom: 25px;
  border-bottom: solid;
  border-color: gray;
  border-width: 1px;
}
.Analytics\.module___table-with-header {
  border: 1px solid var(--primary-color);
  background: var(--bg-color);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
}
.Analytics\.module___table-with-header .ant-table-container table > thead > tr th {
  background: var(--primary-color);
  color: var(--white-color);
  text-transform: uppercase;
}
.Analytics\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
  /* border-left: 1px solid var(--black-color); */
  padding-left: 24px;
  white-space: normal;
}
.Analytics\.module___table-with-header .ant-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
  padding-left: 24px;
}
.Analytics\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
  padding-right: 24px;
  padding-left: 24px;
}
.Analytics\.module___table-with-header .ant-table-thead th.ant-table-column-has-sorters:hover {
  background: var(--primary-color);
}
.Analytics\.module___table-with-header .ant-table-column-sorter-down.active,
.Analytics\.module___table-with-header .ant-table-column-sorter-up.active {
  color: #fff;
}
@media (max-width: 767px) {
  .Analytics\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
    padding-left: 12px;
    padding-right: 12px;
  }
  .Analytics\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
    border-radius: 0;
    padding-right: 12px;
    padding-left: 12px;
  }
}
.Analytics\.module___row {
  display: flex;
  align-items: center;
}
.Analytics\.module___roundedImageContainer {
  height: 51px;
  width: 51px;
  min-height: 51px;
  min-width: 51px;
  border-radius: 50%;
  background-color: var(--bg-color);
  margin-right: 47px;
  overflow: hidden;
}
.Analytics\.module___roundedImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Table css */
/* stylelint-disable */
.ListCollapse\.module___listcollapse {
  max-width: 100%;
  padding: 0 24px;
  margin: 0 0 20px;
}
.ListCollapse\.module___listcollapse .ant-list-item {
  border-bottom: none;
  background: var(--white-color);
  margin-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--primary-color);
  cursor: pointer;
}
.ListCollapse\.module___listcollapse .ant-list-item-meta-title {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: normal;
}
.ListCollapse\.module___listcollapse .ant-list-item:last-child {
  border: 1px solid var(--primary-color);
}
.ListCollapse\.module___listcollapseUpcoming {
  max-width: 100%;
  padding: 0 12px;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .ListCollapse\.module___listcollapseUpcoming {
    padding: 0 24px;
  }
}
.ListCollapse\.module___listcollapseUpcoming .ant-list-item:last-child {
  border: 1px solid var(--primary-color);
}
.ListCollapse\.module___listcollapseUpcoming .ant-list-item {
  border-bottom: none;
  background: var(--white-color);
  margin-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--primary-color);
  cursor: pointer;
}
@media (min-width: 768px) {
  .ListCollapse\.module___listcollapseUpcoming .ant-list-item {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.ListCollapse\.module___listcollapseUpcoming .ant-list-item-meta-title {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: normal;
}
@media (min-width: var(--screen-sm-min)) {
  .ListCollapse\.module___listtable .ant-list-item-meta-title {
    font-size: 24px;
  }
}

/* Table css */
.EventItem\.module___list {
  justify-content: space-between;
  font-size: 14px;
  line-height: 16px;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 70px 1fr 33px minmax(15px, 15px);
  align-items: center;
  grid-gap: 8px;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .EventItem\.module___list {
    grid-template-columns: 1fr 1fr 1fr 1fr minmax(1px, 40px) minmax(1px, 60px);
    padding: 0;
    grid-gap: 24px;
  }
}
.EventItem\.module___listItemColumn {
  display: flex;
  align-items: center;
  height: 100%;
}
.EventItem\.module___listcollapsedatawrap {
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  margin-top: 17px;
  margin-bottom: 36px;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  padding: 16px;
}
.EventItem\.module___groupedParticipantsHeader {
  margin-bottom: 30px;
}
.EventItem\.module___newSessionContainer {
  background-color: var(--bg-color);
  text-align: left;
  padding: 16px 10px;
}
.EventItem\.module___groupedParticipants,
.EventItem\.module___newSessionContainer {
  border-radius: 10px;
  background-color: rgba(16, 36, 56, 0.1);
  padding: 16px 24px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .EventItem\.module___groupedParticipants,
  .EventItem\.module___newSessionContainer {
    padding: 16px;
  }
}
.EventItem\.module___groupedParticipants:last-child,
.EventItem\.module___newSessionContainer:last-child {
  margin-bottom: 0;
}
.EventItem\.module___listcollapsedataDesktop {
  display: grid;
  padding: 6px 0;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(4, 1fr);
}
.EventItem\.module___listcollapsedataMobile {
  display: grid;
  padding: 0;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: 1fr;
}
.EventItem\.module___listcollapsedataMobileWrap {
  padding-top: 12px;
  padding-bottom: 12px;
}
.EventItem\.module___events {
  margin: 0;
  line-height: 1.2;
  list-style: none;
  position: relative;
  pointer-events: none;
  padding-bottom: 8px;
}
.EventItem\.module___events a {
  width: 100%;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
}
.EventItem\.module___events .ant-badge-status {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  width: 10px;
  height: 10px;
  position: relative;
  margin-top: 3px;
  margin-right: 8px;
}
.EventItem\.module___events .ant-badge-dot {
  position: absolute;
  left: 0;
  top: 8px;
}
.EventItem\.module___events .ant-badge-status-dot {
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 0;
}
.EventItem\.module___rescheduleCalendar .ant-picker-cell {
  color: #000;
  cursor: default;
}
.EventItem\.module___rescheduleCalendar .ant-picker-date-panel {
  max-height: 300px;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .EventItem\.module___rescheduleCalendar .ant-picker-date-panel {
    max-height: 30vh;
  }
}
.EventItem\.module___selectAllWrapper > div {
  margin-bottom: 0;
}
.EventItem\.module___listcollapsedataitem {
  padding: 0 4px;
  word-break: break-word;
}
@media (min-width: 768px) {
  .EventItem\.module___listcollapsedataitem {
    padding: 0 16px;
  }
}
.EventItem\.module___listcollapsedataitem div:last-child {
  border: none;
  padding: 0;
}
.EventItem\.module___listcollapsedataitem .ant-btn-link {
  padding: 0;
}
.EventItem\.module___listcollapsedataitemMobile {
  display: block;
  padding-left: 0;
}
.EventItem\.module___listcollapsedataitemMobileNote {
  height: 100%;
  border-left: 1px solid var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}
.EventItem\.module___listcollapsedataitemMobileNote .ant-btn {
  padding: 0 6px;
}
.EventItem\.module___privateTag,
.EventItem\.module___fullTag {
  color: #fff;
  width: 60px;
  height: 23px;
  text-align: center;
  font-size: 12px;
  line-height: 23px;
  padding: 0;
  border: none;
}
@media (max-width: 767px) {
  .EventItem\.module___privateTag,
  .EventItem\.module___fullTag {
    padding: 0;
    width: 15px;
    height: 15px;
    margin: 0;
    line-height: 15px;
  }
}
.EventItem\.module___fullTag {
  background-color: var(--error-color);
}
.EventItem\.module___privateTag {
  background-color: var(--primary-color);
}
.EventItem\.module___buttonStyleTag {
  padding: 0;
  border-radius: 50px;
  width: 84px;
  height: 26px;
  line-height: 26px;
  border: none;
  font-size: 12px;
  text-align: center;
  margin-right: 19px;
}
@media (max-width: 767px) {
  .EventItem\.module___buttonStyleTag {
    margin-right: 10px;
    width: 69px;
    margin-bottom: 14px;
  }
}
.EventItem\.module___groupButton {
  padding: 0;
  border-radius: 50px;
  width: 84px;
  height: 26px;
  line-height: 26px;
  border: none;
  font-size: 12px;
  text-align: center;
  margin-right: 19px;
  box-shadow: var(--box-shadow);
}
@media (max-width: 767px) {
  .EventItem\.module___groupButton {
    margin-right: 10px;
    width: 69px;
  }
}
.EventItem\.module___groupButton span {
  padding: 0;
  line-height: 1;
}
.EventItem\.module___groupActionButtons {
  display: inline-block;
}
.EventItem\.module___openitem .ant-list-item {
  border-radius: 10px;
  margin-bottom: 4px;
}
.EventItem\.module___openitem .EventItem\.module___listcollapsedatawrap {
  margin-top: 4px;
}
.EventItem\.module___openitem .anticon {
  transform: rotate(90deg);
}
.EventItem\.module___rescheduleContainer {
  text-align: left;
  margin-bottom: 25px;
}
.EventItem\.module___rescheduleContainer h3.ant-typography {
  text-align: center;
}
.EventItem\.module___rescheduleContainer h4.ant-typography {
  font-size: 18px;
  font-weight: 300;
}
/* Calendar date styles */
.EventItem\.module___CalendarHeader {
  font-size: 24px;
  padding: 0 20px;
  width: 100%;
  min-width: 235px;
  text-align: center;
}
.EventItem\.module___nextButton {
  background: none;
  border: none;
  cursor: pointer;
}
.EventItem\.module___columns {
  display: flex;
}
.EventItem\.module___calendarItems {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.EventItem\.module___calendarItemsContent {
  display: flex;
  width: calc(100% - 18px);
  text-align: left;
  font-size: 12px;
  pointer-events: all;
}
.EventItem\.module___rescheduleCalendar .ant-picker-panel .ant-picker-calendar-date {
  background-color: var(--bg-color);
  border-color: var(--white-color);
  margin: 0;
}
.EventItem\.module___rescheduleCalendar .ant-picker-panel .ant-picker-calendar-date-value {
  text-align: center;
}
@media (max-width: 767px) {
  .EventItem\.module___rescheduleCalendar .ant-picker-panel .ant-picker-body {
    max-height: 30vh;
  }
}
.EventItem\.module___rescheduleCalendar .ant-picker-panel .ant-picker-body thead {
  display: none;
}
.EventItem\.module___rescheduleCalendar .ant-picker-panel .ant-picker-body th {
  text-align: center;
}
.EventItem\.module___rescheduleCalendar .ant-picker-panel .ant-picker-body tbody td {
  display: block;
  border: none;
}
@media (max-width: 767px) {
  .EventItem\.module___rescheduleCalendar .ant-picker-panel
    .ant-picker-body
    tbody
    td.ant-picker-cell-disabled {
    display: none;
  }
}
.EventItem\.module___rescheduleCalendar .ant-picker-panel
    .ant-picker-body
    tbody
    td.ant-picker-cell-disabled.ant-picker-cell-in-view {
  display: block;
}
.EventItem\.module___dates {
  border: none;
  display: block;
  margin-bottom: 25px;
  position: relative;
  text-align: left;
}
.EventItem\.module___dateOnClick {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: default;
}
.EventItem\.module___dateCurrentDay {
  display: block;
  margin-bottom: 8px;
  cursor: default;
}
.EventItem\.module___dateCurrent {
  text-align: left;
  cursor: default;
  pointer-events: none;
}
.EventItem\.module___sessionsList {
  padding: 8px;
  border-radius: var(--border-radius-base);
  background-color: var(--bg-color);
  cursor: pointer;
}
/* Sessions checkbox */
.EventItem\.module___deleteSessions {
  background: var(--bg-color);
  border-radius: 10px;
  height: 138px;
  width: 100%;
  padding: 10px 16px 10px 16px;
  margin-bottom: 14px;
}
.EventItem\.module___deleteSessionsWrap {
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
}
.EventItem\.module___formItemWrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 2px;
}
.EventItem\.module___checkboxWrapper {
  padding-right: 5px;
  line-height: inherit;
}
.EventItem\.module___checkbox-disabled {
  opacity: 0.7;
}
.EventItem\.module___participantWrapper-disabled {
  color: var(--black-color);
  opacity: 0.5;
}
.EventItem\.module___noSessionStyle {
  display: table-cell;
  vertical-align: middle;
  width: 40%;
  margin: 0 auto;
  text-align: center;
  height: 300px;
}
@media (max-width: 767px) {
  .EventItem\.module___noSessionStyle {
    height: 30vh;
  }
}
.EventItem\.module___loadingStyle {
  display: table-cell;
  vertical-align: middle;
  width: 1%;
  margin: 0 auto;
  text-align: center;
  height: 300px;
}
@media (max-width: 767px) {
  .EventItem\.module___loadingStyle {
    height: 30vh;
  }
}
.EventItem\.module___upcomingBookingIndividualItem {
  padding-bottom: 15px;
}
.EventItem\.module___upcomingBookingIndividualItem > p {
  margin: 0 0 2px;
  color: var(--label-color);
  padding-left: 16px;
  font-size: 14px;
  text-transform: uppercase;
}
.EventItem\.module___refundModalIcon svg {
  color: var(--warning-color);
  width: 22px;
  height: 22px;
}
.EventItem\.module___adminRefundModalContent-header {
  font-size: 16px;
}
.EventItem\.module___adminRefundModalContent-text {
  margin-bottom: 8px;
}
.EventItem\.module___adminRefundModalContent-amountInput .ant-input-group-addon {
  border: 1px solid var(--black-color);
  border-right: 0;
  box-shadow: var(--box-shadow);
  background: #fafafa;
  border-radius: 0;
}
.EventItem\.module___adminRefundModalContent-amountInput .ant-input {
  border-radius: 0;
}
.EventItem\.module___adminRefundModalContent-amountInput .ant-input:focus {
  box-shadow: var(--box-shadow);
}
.EventItem\.module___adminRefundModalContent-validation {
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--error-color);
}
.EventItem\.module___adminRefundModalContent-transactionHistory {
  margin-top: 8px;
}
.EventItem\.module___adminRefundModalContent-transactionHistory > p {
  font-size: 13px;
  margin: 0;
}
.EventItem\.module___refundMoreBtn {
  width: 90px;
}

/* Setting Modules */
.Upcoming\.module___titlearrow {
  font-size: 16px;
}
.Upcoming\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Upcoming\.module___branddivider {
  margin: 30px 0;
  background-color: transparent;
}
.Upcoming\.module___labelHeader {
  padding: 10px 0 0 24px;
}
.Upcoming\.module___emptySearchList {
  padding: 16px 24px;
}
.Upcoming\.module___cardWithFilterHead {
  padding: 16px 24px;
  border-bottom: 1px solid var(--primary-color);
  display: grid;
  grid-template-columns: minmax(100px, 200px) minmax(100px, 148px);
  margin-bottom: 40px;
  grid-gap: 22px;
}
@media (min-width: 768px) {
  .Upcoming\.module___cardWithFilterHead {
    grid-template-columns: minmax(100px, 200px) minmax(100px, 148px) minmax(100px, 148px) minmax(100px, 1fr);
    grid-gap: 22px;
  }
}
.Upcoming\.module___titles {
  padding: 0 12px;
}
@media (min-width: 768px) {
  .Upcoming\.module___titles {
    padding: 0 24px;
  }
}
.ant-picker {
  width: 250px;
  height: 40px;
}
.ant-picker-input > input::placeholder {
  color: var(--primary-color);
}
.ant-picker-large .ant-picker-input > input {
  color: var(--primary-color);
}

/* Setting Modules */
.APIDocs\.module___embedContainer {
  height: 800px;
}
.APIDocs\.module___titlearrow {
  font-size: 16px;
}
.APIDocs\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.APIDocs\.module___branddivider {
  margin: 30px 0;
  background-color: transparent;
}
.APIDocs\.module___formactions {
  display: flex;
  justify-content: flex-end;
}
.APIDocs\.module___radio {
  width: 20px;
  height: 20px;
  display: block;
}
.APIDocs\.module___breadcrumblink {
  color: #000 !important;
}
.APIDocs\.module___breadcrumblink:hover {
  color: gray !important;
}

.SEO\.module___titlearrow {
  font-size: 16px;
}
.SEO\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.SEO\.module___section-seo__help-text {
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);
}
.SEO\.module___section-seo__container {
  margin-top: 40px;
}
.SEO\.module___section-seo__container-text {
  font-size: 16px;
  margin-bottom: 10px !important;
}
.SEO\.module___section-seo__container-sitemap {
  margin-top: 60px;
}
.SEO\.module___section-seo__container-sitemap > div {
  width: 100%;
}
.SEO\.module___section-seo__container-sitemapURL {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  width: 100%;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  column-gap: 8px;
}
.SEO\.module___section-seo__container-sitemapURL p {
  font-size: 16px;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.SEO\.module___section-seo__container-sitemapURL svg {
  width: 20px;
  height: 20px;
}
.SEO\.module___copyBtn {
  display: flex;
  align-items: center;
  column-gap: 6px;
  cursor: pointer;
}
.SEO\.module___copyBtn p {
  margin: 0;
}

/* Financial Modules */
.Financial\.module___container .ant-tabs {
  overflow: visible;
  padding: 0 !important;
}
.Financial\.module___container .ant-tabs-nav .ant-tabs-tab {
  border-bottom: 3px solid transparent;
  font-size: 14px;
  padding: 15px 0;
}
.Financial\.module___container .ant-tabs-nav-container {
  justify-content: flex-start;
  min-height: 55px;
}
.Financial\.module___container .ant-tabs-bar {
  margin-bottom: 25px;
  border-bottom: solid;
  border-color: gray;
  border-width: 1px;
}
.Financial\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Financial\.module___spacing {
  margin-bottom: 52px;
}
.Financial\.module___spacingSmall {
  margin-bottom: 20px;
}
.Financial\.module___dateContainer {
  display: flex;
  flex-direction: column;
}
@media (min-width: 767px) {
  .Financial\.module___dateContainer {
    flex-direction: row;
  }
}
.Financial\.module___dateContainer > div {
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
}
.Financial\.module___dateContainer > div .ant-select {
  margin-right: 12px;
  min-width: 90px;
}
.Financial\.module___dateContainer .Financial\.module___monthSelect {
  min-width: 170px !important;
}
.Financial\.module___dateContainer .Financial\.module___selectLabelContainer {
  position: relative;
}
.Financial\.module___dateContainer .Financial\.module___selectLabelContainer .Financial\.module___label {
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  position: absolute;
  z-index: 1;
  left: 15px;
  top: 9.5px;
}
.Financial\.module___dateContainer .ant-select-selection-item {
  position: absolute;
}
.Financial\.module___dateContainer .Financial\.module___fromMonth .ant-select-selection-item {
  left: 60px;
}
.Financial\.module___dateContainer .Financial\.module___toMonth .ant-select-selection-item {
  left: 40px;
}

/* Brand */
.Brand\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Brand\.module___para {
  margin-bottom: 40px !important;
}

/* Setting Modules */
.Payment\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Payment\.module___separator {
  margin: 30px 0;
  background: transparent;
}
.Payment\.module___table {
  display: block;
  overflow: hidden;
}
.Payment\.module___table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.Payment\.module___flexaction {
  display: flex;
  margin-left: auto;
  align-items: center;
}
.Payment\.module___flexaction .ant-input-affix-wrapper {
  margin-right: 30px;
  min-width: 90px;
}
.Payment\.module___flexaction .ant-btn {
  padding: 6px 12px;
  height: 40px;
}
.Payment\.module___table-with-header {
  background: var(--bg-color);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
}
.Payment\.module___table-with-header .ant-table-container table > thead > tr th {
  background: var(--primary-color);
  color: var(--white-color);
  text-transform: uppercase;
}
.Payment\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
  border-left: 1px solid var(--black-color);
  padding-left: 24px;
  white-space: normal;
}
.Payment\.module___table-with-header .ant-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
  padding-left: 24px;
}
.Payment\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
  padding-right: 24px;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .Payment\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
    padding-left: 12px;
    padding-right: 12px;
  }
  .Payment\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
    border-radius: 0;
    padding-right: 12px;
    padding-left: 12px;
  }
}
.Payment\.module___refundModalIcon svg {
  color: #faad14;
  width: 22px;
  height: 22px;
}
.Payment\.module___adminRefundModalContent-header {
  font-size: 16px;
}
.Payment\.module___adminRefundModalContent-text {
  margin-bottom: 8px;
}
.Payment\.module___adminRefundModalContent-amountInput .ant-input-group-addon {
  border: 1px solid var(--black-color);
  border-right: 0;
  box-shadow: var(--box-shadow);
  background: #fafafa;
  border-radius: 0;
}
.Payment\.module___adminRefundModalContent-amountInput .ant-input {
  border-radius: 0;
}
.Payment\.module___adminRefundModalContent-amountInput .ant-input:focus {
  box-shadow: var(--box-shadow);
}
.Payment\.module___adminRefundModalContent-validation {
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--error-color);
}
.Payment\.module___adminRefundModalContent-transactionHistory {
  margin-top: 8px;
}
.Payment\.module___adminRefundModalContent-transactionHistory > p {
  font-size: 13px;
  margin: 0;
}
.Payment\.module___adminCancelModalContent .ant-checkbox-group {
  width: 100%;
}
.Payment\.module___adminCancelModalContent .ant-checkbox + span {
  padding-left: 16px;
}
.Payment\.module___adminCancelModalContent-subtext {
  margin-bottom: 8px;
}
.Payment\.module___adminCancelModalContent-allTiers {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 12px 0;
  margin: 0 !important;
  border-bottom: 1px solid #f0f0f0;
}
.Payment\.module___adminCancelModalContent-tierItem {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  margin: 0 !important;
}
.Payment\.module___adminCancelModalContent-tierDescription > p {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
}
.Payment\.module___adminCancelModalContent-tierDescription > h3 {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  margin: 0;
}

/* Setting Modules */
.Setting\.module___headdivider {
  margin-top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.Setting\.module___cardsetting {
  background-color: var(--bg-color);
}
.Setting\.module___cardsetting .ant-typography {
  margin-bottom: 48px;
  font-weight: normal;
}
.Setting\.module___menuwrap {
  font-size: 18px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 32px;
}
.Setting\.module___menulink {
  margin-bottom: 16px;
  display: block;
}

/* Setting Modules */
.AnalyticsTable\.module___dynamicLoadingContainer {
  padding: 10px;
}
.AnalyticsTable\.module___separator {
  margin: 30px 0;
  background: transparent;
}
.AnalyticsTable\.module___table {
  display: block;
  overflow: hidden;
  margin-bottom: 60px;
}
.AnalyticsTable\.module___table-header {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.AnalyticsTable\.module___table-header .ant-select-single:not(.ant-select-customize-input) > div {
  border: 0.5px solid #000;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.AnalyticsTable\.module___table-header__select {
  width: 190px;
}
.AnalyticsTable\.module___masterTable {
  background-color: var(--bg-color);
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  margin-bottom: 60px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.AnalyticsTable\.module___masterTable > div {
  margin-bottom: 16px;
}
.AnalyticsTable\.module___masterTable .ant-pagination {
  margin-right: 5px !important;
  margin-bottom: 0 !important;
}
.AnalyticsTable\.module___masterTable .ant-pagination-item-active {
  border: 1px solid #102438 !important;
  border-radius: 4px !important;
}
.AnalyticsTable\.module___masterTable .ant-pagination-item-active > a {
  margin-top: 3px;
}
.AnalyticsTable\.module___masterTable .ant-pagination > li {
  border-radius: 0;
  margin: 0;
  min-width: 24px;
  height: 24px;
  border-color: transparent;
  background-color: transparent;
}
.AnalyticsTable\.module___masterTable .ant-pagination > li > a {
  margin-top: -3px;
}
.AnalyticsTable\.module___masterTable .ant-pagination-item-link {
  border: none !important;
  background-color: transparent !important;
}
.AnalyticsTable\.module___masterAnalyticsTab {
  padding: 0 !important;
}
.AnalyticsTable\.module___masterAnalyticsTab .ant-tabs-nav .ant-tabs-tab {
  border-bottom: 3px solid transparent;
  font-size: 14px;
  padding: 15px 0;
}
.AnalyticsTable\.module___masterAnalyticsTab .ant-tabs-tab-active {
  color: var(--current-tab-color) !important;
}
.AnalyticsTable\.module___masterAnalyticsTab .ant-tabs-ink-bar {
  background-color: var(--current-tab-color) !important;
}
.AnalyticsTable\.module___masterAnalyticsTab .ant-tabs-nav-container {
  justify-content: flex-start;
  min-height: 55px;
}
.AnalyticsTable\.module___masterAnalyticsTab .ant-tabs-bar {
  margin-bottom: 40px;
  border-bottom: solid;
  border-color: #bfbfbf;
  border-width: 1px;
}
.AnalyticsTable\.module___table-with-header {
  border: 1px solid var(--primary-color);
  background: var(--bg-color);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
}
.AnalyticsTable\.module___table-with-header .ant-table-container table > thead > tr th {
  background: var(--primary-color);
  color: var(--white-color);
  text-transform: uppercase;
}
.AnalyticsTable\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
  /* border-left: 1px solid var(--black-color); */
  padding-left: 24px;
  white-space: normal;
}
.AnalyticsTable\.module___table-with-header .ant-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
  padding-left: 24px;
}
.AnalyticsTable\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
  padding-right: 24px;
  padding-left: 24px;
}
.AnalyticsTable\.module___table-with-header .ant-table-thead th.ant-table-column-has-sorters:hover {
  background: var(--primary-color);
}
.AnalyticsTable\.module___table-with-header .ant-table-column-sorter-down.active,
.AnalyticsTable\.module___table-with-header .ant-table-column-sorter-up.active {
  color: #fff;
}
@media (max-width: 767px) {
  .AnalyticsTable\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
    padding-left: 12px;
    padding-right: 12px;
  }
  .AnalyticsTable\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
    border-radius: 0;
    padding-right: 12px;
    padding-left: 12px;
  }
}
.AnalyticsTable\.module___row {
  display: flex;
  align-items: center;
}
.AnalyticsTable\.module___masterTableContent .ant-table-cell {
  border-radius: 0;
  padding-left: 3px;
  padding-right: 5px;
}
.AnalyticsTable\.module___masterTableContent .ant-table-thead th.ant-table-column-has-sorters:hover {
  background: var(--primary-color);
  filter: brightness(90%);
}
.AnalyticsTable\.module___masterTableContent .ant-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
}
.AnalyticsTable\.module___masterTableContent .ant-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
}
.AnalyticsTable\.module___masterTableContent .ant-table-thead th.ant-table-column-sort {
  background-color: var(--primary-color);
}
.AnalyticsTable\.module___masterTableContent .anticon.active {
  color: var(--bg-color);
}
.AnalyticsTable\.module___masterTableContent thead > tr > th {
  background-color: var(--primary-color);
  color: white;
}
.AnalyticsTable\.module___masterTableContent thead > tr > th:first-child {
  text-align: left;
  padding-left: 100px;
}
@media screen and (max-width: 1350px) {
  .AnalyticsTable\.module___masterTableContent thead > tr > th:first-child {
    padding-left: 80px;
  }
}
@media screen and (max-width: 1200px) {
  .AnalyticsTable\.module___masterTableContent thead > tr > th:first-child {
    width: 300px;
  }
}
.AnalyticsTable\.module___masterTableContent thead > tr > th:last-child,
.AnalyticsTable\.module___masterTableContent tbody > tr > td:last-child {
  text-align: right;
  padding-left: 24px;
  padding-right: 27px;
}
.AnalyticsTable\.module___masterTableContent tbody > tr > td {
  text-align: left;
  padding-left: 20px !important;
}
.AnalyticsTable\.module___masterTableContent tbody > tr > td > a {
  color: #1890ff;
}
.AnalyticsTable\.module___brandRow {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 0;
}
.AnalyticsTable\.module___brandRow > span {
  margin-left: 105px;
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 1350px) {
  .AnalyticsTable\.module___brandRow > span {
    margin-left: 90px;
  }
}
@media screen and (max-width: 1160px) {
  .AnalyticsTable\.module___brandRow > span {
    margin-left: 75px;
  }
}
.AnalyticsTable\.module___roundedImageContainer {
  height: 51px;
  width: 51px;
  min-height: 51px;
  min-width: 51px;
  border-radius: 50%;
  background-color: var(--bg-color);
  overflow: hidden;
  position: absolute;
  left: 5%;
}
@media screen and (max-width: 1160px) {
  .AnalyticsTable\.module___roundedImageContainer {
    left: 2%;
  }
}
.AnalyticsTable\.module___roundedImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.AnalyticsTable\.module___analyticsTablePagination {
  margin-top: -45px;
}
.AnalyticsTable\.module___analyticsTablePagination__content {
  display: flex;
  align-items: center;
  color: var(--custom-pagination-color);
}
.AnalyticsTable\.module___analyticsTablePagination__content > *:nth-child(1) {
  margin-left: auto;
}
.AnalyticsTable\.module___analyticsTablePagination__content > p:nth-child(2) {
  margin-left: 50px;
  margin-right: 50px;
}
@media screen and (max-width: 568px) {
  .AnalyticsTable\.module___analyticsTablePagination__content > p:nth-child(2) {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.Analytics\.module___analyticsMasterTab {
  padding: 0 !important;
}
.Analytics\.module___analyticsMasterTab .ant-tabs-nav .ant-tabs-tab {
  border-bottom: 3px solid transparent;
  font-size: 14px;
  padding: 10px 0;
}
.Analytics\.module___analyticsMasterTab .ant-tabs-content {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1400px) {
  .Analytics\.module___analyticsMasterTab .ant-tabs-content {
    padding-left: 10px;
  }
}
.Analytics\.module___analyticsMasterTab .ant-tabs-tab-active {
  color: var(--current-tab-color) !important;
}
.Analytics\.module___analyticsMasterTab .ant-tabs-ink-bar {
  background-color: var(--current-tab-color) !important;
}
.Analytics\.module___analyticsMasterTab .ant-tabs-nav-container {
  justify-content: flex-start;
}
.Analytics\.module___analyticsMasterTab .ant-tabs-bar {
  margin-bottom: 0;
  border-bottom: solid;
  border-color: #bfbfbf;
  border-width: 1px;
}
.Analytics\.module___masterAnalyticsDashboard .ant-layout {
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  .Analytics\.module___masterAnalyticsDashboard .ant-layout {
    padding-bottom: 50px !important;
  }
}
@media screen and (max-width: 568px) {
  .Analytics\.module___masterAnalyticsDashboard .ant-layout {
    padding-bottom: 10px !important;
  }
}
.Analytics\.module___masterAnalyticsDashboard .ant-tabs-tabpane {
  padding-bottom: 10px;
}
.Analytics\.module___masterAnalyticsDashboard .ant-card {
  height: 100%;
}

.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterHeadDivider {
  background-color: #bfbfbf;
  margin-bottom: 22px;
  margin-top: 0;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable {
  background: #fafafa;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 24px 0;
  border: 1px solid var(--primary-color);
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableHeader {
  margin-left: 24px;
}
@media screen and (max-width: 600px) {
  .BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableHeader {
    margin-left: 10px;
  }
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableHeader .ant-input {
  border-right: 1px solid lightgray;
  border-radius: 0;
  margin-right: 5px;
  padding: 8px 0;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableHeader .ant-input-search {
  border-radius: 0;
  border: 1px solid #d9d9d9;
  padding: 0 12px;
  box-shadow: none;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableHeader .ant-input-affix-wrapper-focused {
  box-shadow: none;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableHeader .anticon {
  font-size: 17px;
  padding: 8px 0;
  margin-top: 2px;
  color: #000;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent {
  margin-top: 24px;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent .ant-table-cell {
  border-radius: 0;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent .ant-pagination {
  margin-top: 20px;
  margin-bottom: 0;
  margin-right: 24px;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent .ant-pagination-item-active {
  border: 1px solid #102438 !important;
  border-radius: 4px !important;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent .ant-pagination-item-active > a {
  margin-top: 3px;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent .ant-pagination > li {
  border-radius: 0;
  margin: 0;
  min-width: 24px;
  height: 24px;
  border-color: transparent;
  background-color: transparent;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent .ant-pagination > li > a {
  margin-top: -3px;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent .ant-table-tbody > * {
  height: 55px;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent .ant-pagination-item-link {
  border: none;
  background-color: transparent;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent thead > tr > th {
  background-color: var(--primary-color);
  color: white;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent thead > tr > th:first-child {
  padding-left: 40px;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent tbody > tr > td:nth-child(3),
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent tbody > tr > td:nth-child(4) {
  text-transform: capitalize;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent tbody > tr > td:first-child {
  padding-left: 35px;
}
.BrandMasterView\.module___brandMasterViewContainer > .BrandMasterView\.module___masterTable > .BrandMasterView\.module___masterTableContent tbody > tr > td > a {
  color: #1890ff;
}

/* Staff Form */

/* Footer css */

/* Footer css */
.Message\.module___titlearrow {
  font-size: 16px;
}
.Message\.module___table {
  display: block;
  overflow: hidden;
}
.Message\.module___table-header-message {
  display: flex;
  flex-wrap: wrap;
  padding: 14px var(--padding-lg);
}
@media (min-width: 768px) {
  .Message\.module___table-header-message {
    justify-content: space-between;
    align-items: center;
  }
}
/* stylelint-disable */
.Message\.module___breadcrumblink {
  color: #000 !important;
}
.Message\.module___breadcrumblink:hover {
  color: gray !important;
}
.Message\.module___table-with-header {
  border: none;
  background: var(--bg-color);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
}
.Message\.module___table-with-header .ant-table-pagination.ant-pagination {
  padding: 14px 24px;
  margin: 0;
}
.Message\.module___table-with-header .ant-table-container table > thead > tr th {
  background: var(--primary-color);
  color: var(--white-color);
  text-transform: uppercase;
  padding: 14px 24px;
}
.Message\.module___table-with-header .ant-table-container table > tbody > tr td {
  border-color: var(--primary-color);
  padding: 16px 24px;
}
.Message\.module___para {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.Message\.module___headdivider {
  margin-top: 0;
}
.Message\.module___switchWrap {
  margin-left: 30px;
}
.Message\.module___messageLabel {
  display: flex;
  margin-left: auto;
}
.Message\.module___hostLabel {
  position: relative;
  padding-left: 32px;
}
.Message\.module___hostLabel:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  left: 0;
}
.Message\.module___participantsLabel {
  position: relative;
  padding-left: 32px;
  margin-left: 30px;
}
.Message\.module___participantsLabel:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black-color);
  position: absolute;
  left: 0;
}

/* PaymentHost Module */
.PaymentHost\.module___separator {
  margin: 30px 0;
  background: transparent;
}
.PaymentHost\.module___table {
  display: block;
  overflow: hidden;
}
.PaymentHost\.module___table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.PaymentHost\.module___table-with-header {
  background: var(--bg-color);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
}
.PaymentHost\.module___table-with-header .ant-table-container table > thead > tr th {
  background: var(--primary-color);
  color: var(--white-color);
  text-transform: uppercase;
}
.PaymentHost\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
  padding-left: 24px;
  white-space: normal;
}
.PaymentHost\.module___table-with-header .ant-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
  padding-left: 24px;
}
.PaymentHost\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
  padding-right: 24px;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .PaymentHost\.module___table-with-header .ant-table-container table > tbody > tr td:last-child {
    padding-left: 12px;
    padding-right: 12px;
  }
  .PaymentHost\.module___table-with-header .ant-table-container table > thead > tr:first-child th:last-child {
    border-radius: 0;
    padding-right: 12px;
    padding-left: 12px;
  }
}

/* Pending Experience css */
.MyExperience\.module___titlearrow {
  font-size: 16px;
}
/* stylelint-disable */
.MyExperience\.module___breadcrumblink {
  color: #000 !important;
}
.MyExperience\.module___breadcrumblink:hover {
  color: gray !important;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.MyExperience\.module___headdivider {
  margin-top: 0;
}
.MyExperience\.module___para {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.MyExperience\.module___icons {
  font-size: 0;
  display: flex;
  width: 21px;
  height: 18px;
}
.MyExperience\.module___icons svg {
  width: inherit;
  height: inherit;
}
.MyExperience\.module___iconspreview {
  font-size: 0;
  display: flex;
  width: 21px;
  height: 13px;
}
.MyExperience\.module___iconspreview svg {
  width: inherit;
  height: inherit;
}
.MyExperience\.module___duplicateIcons svg {
  fill: #0a8080;
}

/* Active Link */
.AddAvailability\.module___deleteTitle {
  font-size: 14px;
  line-height: 16px;
  padding-left: 16px;
  padding-bottom: 8px;
}
.AddAvailability\.module___cardHeader {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.AddAvailability\.module___selectexperience {
  background: #f3f3f3;
  border-radius: 10px;
  height: 200px;
  padding: 16px 0;
  margin-bottom: 25px;
}
.AddAvailability\.module___repeatsection {
  background: #f3f3f3;
  border-radius: 10px;
  min-height: 100px;
  padding: 16px 24px 10px 16px;
  margin-bottom: 24px;
}
.AddAvailability\.module___selectexperienceWrap {
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  max-height: 90%;
}
.AddAvailability\.module___deleteSessionsTitle {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 13px;
}
.AddAvailability\.module___repeatradio {
  margin-top: 5px;
  margin-bottom: 28px;
}
.AddAvailability\.module___repeatradio .ant-radio-wrapper {
  display: block;
}
.AddAvailability\.module___repeatcontent {
  margin-bottom: 28px;
}
.AddAvailability\.module___weekDays-selector .ant-checkbox-inner {
  display: none;
}
.AddAvailability\.module___weekDays-selector .ant-checkbox-wrapper-checked {
  background: var(--primary-color);
  color: #fff;
}
.AddAvailability\.module___weekDays-selector .ant-checkbox-group label {
  margin-right: 4px;
  margin-left: 0;
}
.AddAvailability\.module___weekDays-selector .ant-checkbox-checked::after {
  display: none;
}
.AddAvailability\.module___weekDays-selector .ant-checkbox:hover::after {
  visibility: hidden;
}
.AddAvailability\.module___weekDays-selector .ant-checkbox-wrapper:hover .ant-checkbox::after {
  visibility: hidden;
}
.AddAvailability\.module___weekDays-selector label {
  border-radius: 50%;
  background: #fff;
  height: 16px;
  width: 16px;
  margin-right: 3px;
  line-height: 14px;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-indent: 0;
}
.AddAvailability\.module___weekDays-selector label span + span {
  font-size: 9px;
  line-height: 14px;
  padding: 0;
}
.AddAvailability\.module___weekDays-selector input[type='checkbox']:checked + label {
  background: var(--primary-color);
  color: #fff;
}
.AddAvailability\.module___weekDays-selector input {
  display: none !important;
}
.AddAvailability\.module___mx246 {
  width: 120px;
}
.AddAvailability\.module___startTimesSection {
  background: #f3f3f3;
  border-radius: 10px;
  min-height: 100px;
  padding: 16px 24px 10px 16px;
  margin-bottom: 24px;
}
.AddAvailability\.module___startTimesSection > div {
  margin-bottom: 8px;
}
.AddAvailability\.module___startTimesSection .ant-select-arrow > img {
  margin-left: -2px;
  margin-top: -3.5px;
}

/* Login css */
.layout-auth-forgot-password {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
}
.forgot-password-button {
  width: 100%;
}

/* Login css */
.layout-auth-forgot-password {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
}
.forgot-password-button {
  width: 100%;
}

/* Login css */
.layout-auth-login {
  max-width: 290px;
  margin: 0 auto;
}
.layout-auth--wrapper {
  width: 100%;
  background: white;
  border: none;
  box-shadow: none;
}

/* Footer css */
.Register\.module___container {
  height: 200px;
  position: relative;
}

/* Login css */
.layout-auth-reset-password {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
}

.CodeEditor\.module___codePreTag {
  text-align: left;
  overflow: hidden;
  min-width: 100%;
  width: fit-content;
  padding-top: 17px;
  padding-left: 27px;
  margin-bottom: 32px;
}
.CodeEditor\.module___codePreTag div {
  line-height: 1.1em;
  height: 1.2em;
  margin-bottom: 7px;
}
.CodeEditor\.module___lineNumber {
  display: table-cell;
  text-align: right;
  padding-right: 1em;
  user-select: none;
  opacity: 0.4;
}
.CodeEditor\.module___lineContent {
  display: table-cell;
}

.WebhookEvents\.module___webhookEventsContainer {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 4px;
}
.WebhookEvents\.module___webhookEventsContainer > div {
  flex: 0.5;
}
@media screen and (max-width: 768px) {
  .WebhookEvents\.module___webhookEventsContainer > div:nth-child(1) {
    flex: 1;
  }
}
.WebhookEvents\.module___webhookEventsContainer .ant-tag {
  text-align: center;
  border-radius: 0;
}
.WebhookEvents\.module___webhookEventsContainer__list,
.WebhookEvents\.module___webhookEventsContainer__httpBody {
  height: calc(100vh - 378px);
}
@media screen and (min-width: 1400px) {
  .WebhookEvents\.module___webhookEventsContainer__list,
  .WebhookEvents\.module___webhookEventsContainer__httpBody {
    height: calc(100vh - 364px);
  }
}
@media screen and (max-width: 1199px) {
  .WebhookEvents\.module___webhookEventsContainer__list,
  .WebhookEvents\.module___webhookEventsContainer__httpBody {
    height: calc(100vh - 362px);
  }
}
@media screen and (max-width: 768px) {
  .WebhookEvents\.module___webhookEventsContainer__list,
  .WebhookEvents\.module___webhookEventsContainer__httpBody {
    height: calc(100vh - 410px);
  }
}
@media screen and (max-width: 500px) {
  .WebhookEvents\.module___webhookEventsContainer__list,
  .WebhookEvents\.module___webhookEventsContainer__httpBody {
    height: calc(100vh - 430px);
  }
}
.WebhookEvents\.module___webhookEventsContainer__list {
  border-right: 1px solid #f0f0f0;
}
.WebhookEvents\.module___webhookEventsContainer__httpBody {
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .WebhookEvents\.module___webhookEventsContainer__httpBody {
    display: none;
  }
}
.WebhookEvents\.module___webhookEventsContainer__httpBody-response {
  height: 100%;
  display: grid;
  place-items: center;
}
.WebhookEvents\.module___webhookEventsContainer__httpBody-response strong {
  font-size: 25px;
  font-weight: 500;
}
.WebhookEvents\.module___webhookEventsContainer__empty {
  margin-top: 22px;
  font-size: 15px;
}
.WebhookEvents\.module___webhookEventsContainer__hideBody {
  display: none;
}
.WebhookEvents\.module___webhookEventsContainer__result {
  min-width: fit-content;
}
.WebhookEvents\.module___webhookEventsContainer__resultresponse {
  padding-top: 17px;
  padding-left: 27px;
}
.WebhookEvents\.module___webhookEventsContainer__resultresponse h5 {
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 14px;
  margin: 0;
}
.WebhookEvents\.module___webhookEventsContainer__resultresponse strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.WebhookEvents\.module___webhookEventsContainer__resultresponse p {
  margin-bottom: 15px;
}
.WebhookEvents\.module___webhookEventsContainer__resultresponsecode {
  border-bottom: 1px solid #f0f0f0;
}
.WebhookEvents\.module___webhookEventsContainer__resultresponsecode p {
  margin-bottom: 22px;
  margin-left: 27px;
}
.WebhookEvents\.module___logItemWrapper {
  margin: 10px 0;
}
.WebhookEvents\.module___logItemWrapper h3 {
  margin-left: 10px;
}
.WebhookEvents\.module___logItemWrapper__first {
  margin-top: 22px;
}
.WebhookEvents\.module___logItemWrapper__item {
  border-bottom: 1px solid #f0f0f0;
  padding: 6px 10px 6px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.WebhookEvents\.module___logItemWrapper__item:hover {
  background-color: rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.WebhookEvents\.module___logItemWrapper__item-icon-wrapper {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
@media screen and (max-width: 500px) {
  .WebhookEvents\.module___logItemWrapper__item-icon-wrapper {
    column-gap: 5px;
  }
}
.WebhookEvents\.module___logItemWrapper__item p {
  margin: 0;
}
.WebhookEvents\.module___logItemWrapper__borderedItem {
  border-top: 1px solid #f0f0f0;
}
.WebhookEvents\.module___logItemWrapper__overlay {
  background-color: rgba(0, 0, 0, 0.05);
}
.WebhookEvents\.module___logItemWrapper__button {
  margin-top: 22px;
}
.WebhookEvents\.module___logItemWrapper__button button {
  border-radius: 4px;
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 15px;
}
.WebhookEvents\.module___requestBody {
  padding-top: 17px;
}
.WebhookEvents\.module___requestBody strong {
  padding-left: 27px;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Table css */
.ListItemMessage\.module___listItemCenter .ant-list-item-action {
  align-items: center;
  display: flex;
}
.ListItemMessage\.module___unread {
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50px;
  margin-right: 8px;
}

/* Pending Experience css */
.Message\.module___titlearrow {
  font-size: 16px;
}
/* stylelint-disable */
.Message\.module___breadcrumblink {
  color: #000 !important;
}
.Message\.module___breadcrumblink:hover {
  color: gray !important;
}
.ant-divider-horizontal {
  background-color: rgba(0, 0, 0, 0.5);
}
.ant-divider-horizontal.Message\.module___headdivider {
  margin-top: 0;
}
.Message\.module___para {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.Message\.module___icons {
  font-size: 0;
  display: flex;
  width: 21px;
  height: 18px;
}
.Message\.module___icons svg {
  width: inherit;
  height: inherit;
}
.Message\.module___iconspreview {
  font-size: 0;
  display: flex;
  width: 21px;
  height: 13px;
}
.Message\.module___iconspreview svg {
  width: inherit;
  height: inherit;
}

