.instantHelpChatIcon svg {
  margin: 0;
}
.chatModuleContainer {
  svg {
    margin: 0;
    fill: none;
  }
}

.gardient-text-invite-anyone {
  background: linear-gradient(89.92deg, #8b67f5 20.28%, #e65fdc 80.42%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.w-fit-important {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.w-150px {
  width: 150px !important;
}

.card-wrapper {
  padding: var(--small) var(--xx-small);
  width: 100%;
}

.expandable-div {
  overflow: hidden;
  transition: 0.4s max-height ease-in;
}

.title-container {
  display: flex;
}

.main-content {
  padding-top: var(--small);
}

.primary-icon {
  cursor: pointer;
  margin: auto;
  max-width: 80%;
}

.primary-cta {
  text-align: center;
  margin-top: var(--large);
}

.list-item {
  border-bottom: var(--px) solid var(--mint-gray-300);
  border-top: var(--px) solid var(--mint-gray-300);
}

.list-title {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  float: left;
  padding: var(--0) var(--x-small);
}

.list-subtitle {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
  float: right;
}

.summary-card-line-item {
  background-color: var(--mint-gray-100);
  padding: var(--xxx-small) var(--x-small);
  border-bottom: var(--px) solid var(--mint-gray-300);
}

.highlighted {
  background-color: var(--mint-black-200);
}

.switchview-wrapper {
  background-color: var(--mint-black-100);
  padding: var(--x-small);
  margin-bottom: var(--small);
  border-radius: var(--small-rounded);
  width: 100%;
}

.switchview-wrapper-expanded {
  background-color: var(--mint-black-200);
  width: 100%;
}

.switch-preview {
  margin-left: 0px;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  height: auto;
}

.ml-30 {
  margin-left: 30px;
}

.bg-color-lightblue {
  background-color: #eef5ff;
}

.border-bottom-large-important {
  border-bottom-left-radius: var(--large) !important;
  border-bottom-right-radius: var(--large) !important;
}

.wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-preview {
  border-radius: 12px;
}

.preview-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 1;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: all;
  transition-duration: 0.5s;
  border-radius: 12px;
}

.playIcon {
  position: absolute;
  z-index: 2;
}

.preview-overlay:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.playIcon:hover + .preview-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.video-overlay {
  width: 100vw;
  height: 100vh;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.3);
}

.close-icon {
  z-index: 11;
  float: right;
  cursor: pointer;
  position: absolute;
}

.picker-large {
  background: none;
  width: 100%;
  border-width: var(--px);
  border-color: var(--mint-gray-500);
  border-radius: var(--small-rounded);
  padding: var(--small);
}

.picker-medium {
  background: none;
  width: 100%;
  border-width: var(--px);
  border-color: var(--mint-gray-500);
  border-radius: var(--small-rounded);
  padding: var(--xx-small);
}

.div-label {
  margin-top: var(--medium);
}

.div-label-with-description {
  margin-top: var(--xx-small);
}

.div-label-2 {
  display: flex;
  margin-top: 48px;
}

.shine-effect {
  position: relative;
  z-index: 0;
}

/* Shine */

.shine-effect:after {
  content: '';
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  -webkit-animation: slide 2s infinite;
          animation: slide 2s infinite;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.404) 35%,
    rgba(128, 186, 232, 0) 45%,
    rgba(125, 186, 232, 0) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#007db9e8', GradientType=1);
}

@-webkit-keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

