body {
  font-family: 'Rubik', sans-serif;
}
.display-1 {
  font-family: 'Rubik-Black';
  font-size: 3.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-2 {
  font-family: 'Rubik-Black';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Rubik-Black';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.59rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 2rem;
  border-radius: 10px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 10px;
}
.bg-primary {
  background-color: #1eca9e !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #b9abe5 !important;
}
.bg-warning {
  background-color: #fd4343 !important;
}
.bg-danger {
  background-color: #212428 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1eca9e !important;
  border-color: #1eca9e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #1eca9e !important;
  border-color: #1eca9e !important;
  box-shadow: #1eca9e 2px 2px 20px 0px;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #137f63 !important;
  border-color: #137f63 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-info,
.btn-info:active {
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
  box-shadow: #b9abe5 2px 2px 20px 0px;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8269d1 !important;
  border-color: #8269d1 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  box-shadow: #40b0bf 2px 2px 20px 0px;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fd4343 !important;
  border-color: #fd4343 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #fd4343 !important;
  border-color: #fd4343 !important;
  box-shadow: #fd4343 2px 2px 20px 0px;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #e70202 !important;
  border-color: #e70202 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #212428 !important;
  border-color: #212428 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #212428 !important;
  border-color: #212428 !important;
  box-shadow: #212428 2px 2px 20px 0px;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #1eca9e !important;
  background-color: white;
}
.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: white 2px 2px 20px 0px;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white:hover,
.btn-white:active {
  color: #1eca9e !important;
  box-shadow: #1eca9e 2px 2px 20px 0px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: #232323 2px 2px 20px 0px;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1eca9e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #137f63 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1eca9e !important;
  border-color: #1eca9e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8364e2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #4e26ca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b9abe5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #8269d1 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #b9abe5 !important;
  border-color: #b9abe5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fd4343;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #e70202 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #fd4343 !important;
  border-color: #fd4343 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212428;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #212428 !important;
  border-color: #212428 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1eca9e !important;
}
.text-secondary {
  color: #8364e2 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #b9abe5 !important;
}
.text-warning {
  color: #fd4343 !important;
}
.text-danger {
  color: #212428 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #117159 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4923bd !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #785dcd !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #d80202 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #1eca9e;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b9abe5;
}
.alert-warning {
  background-color: #fd4343;
}
.alert-danger {
  background-color: #212428;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1eca9e;
  border-color: #1eca9e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1eca9e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bff5e7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d3d6db;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #1eca9e !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #1eca9e;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1eca9e;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1eca9e;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1eca9e;
  border-bottom-color: #1eca9e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #1eca9e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #8364e2 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%231eca9e' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-v5hUSJQ0NY {
  z-index: 1000;
  width: 100%;
}
.cid-v5hUSJQ0NY .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 992px) {
  .cid-v5hUSJQ0NY {
    flex-wrap: wrap;
  }
  .cid-v5hUSJQ0NY .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v5hUSJQ0NY .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v5hUSJQ0NY .icons-menu,
  .cid-v5hUSJQ0NY .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v5hUSJQ0NY .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v5hUSJQ0NY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0);
}
.cid-v5hUSJQ0NY .navbar.opened {
  transition: all 0.3s;
}
.cid-v5hUSJQ0NY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v5hUSJQ0NY .navbar .navbar-logo img {
  width: auto;
}
.cid-v5hUSJQ0NY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v5hUSJQ0NY .navbar.collapsed {
  justify-content: center;
}
.cid-v5hUSJQ0NY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5hUSJQ0NY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v5hUSJQ0NY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v5hUSJQ0NY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5hUSJQ0NY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5hUSJQ0NY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v5hUSJQ0NY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5hUSJQ0NY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v5hUSJQ0NY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v5hUSJQ0NY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5hUSJQ0NY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5hUSJQ0NY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5hUSJQ0NY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5hUSJQ0NY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v5hUSJQ0NY .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v5hUSJQ0NY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v5hUSJQ0NY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v5hUSJQ0NY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v5hUSJQ0NY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v5hUSJQ0NY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v5hUSJQ0NY .navbar.navbar-short {
  min-height: 60px;
}
.cid-v5hUSJQ0NY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v5hUSJQ0NY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v5hUSJQ0NY .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v5hUSJQ0NY .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v5hUSJQ0NY .btn {
  padding: 0.3rem 2rem;
}
.cid-v5hUSJQ0NY .nav-link {
  position: relative;
}
.cid-v5hUSJQ0NY .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #1eca9e;
}
.cid-v5hUSJQ0NY .nav-link:hover:before {
  width: 100%;
}
.cid-v5hUSJQ0NY nav.navbar {
  position: fixed;
}
.cid-v5hUSJQ0NY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5hUSJQ0NY .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-v5hUSJQ0NY .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5hUSJQ0NY .dropdown-item:hover,
.cid-v5hUSJQ0NY .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v5hUSJQ0NY .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v5hUSJQ0NY .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v5hUSJQ0NY .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v5hUSJQ0NY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v5hUSJQ0NY .container {
  display: flex;
  margin: auto;
}
.cid-v5hUSJQ0NY .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v5hUSJQ0NY .dropdown-menu,
.cid-v5hUSJQ0NY .navbar.opened {
  background: #000000 !important;
}
.cid-v5hUSJQ0NY .nav-item:focus,
.cid-v5hUSJQ0NY .nav-link:focus {
  outline: none;
}
.cid-v5hUSJQ0NY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v5hUSJQ0NY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5hUSJQ0NY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v5hUSJQ0NY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5hUSJQ0NY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5hUSJQ0NY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5hUSJQ0NY .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000 !important;
  transition: all 0.3s;
}
.cid-v5hUSJQ0NY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5hUSJQ0NY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5hUSJQ0NY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5hUSJQ0NY .dropdown-item.active,
.cid-v5hUSJQ0NY .dropdown-item:active {
  background-color: transparent;
}
.cid-v5hUSJQ0NY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5hUSJQ0NY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5hUSJQ0NY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5hUSJQ0NY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v5hUSJQ0NY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v5hUSJQ0NY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5hUSJQ0NY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v5hUSJQ0NY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v5hUSJQ0NY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v5hUSJQ0NY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v5hUSJQ0NY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v5hUSJQ0NY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5hUSJQ0NY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5hUSJQ0NY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v5hUSJQ0NY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5hUSJQ0NY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v5hUSJQ0NY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v5hUSJQ0NY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5hUSJQ0NY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v5hUSJQ0NY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v5hUSJQ0NY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5hUSJQ0NY .navbar {
    height: 70px;
  }
  .cid-v5hUSJQ0NY .navbar.opened {
    height: auto;
  }
  .cid-v5hUSJQ0NY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5hVcEf2zy {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, #090909, #000000);
}
.cid-v5hVcEf2zy .mbr-section-title {
  color: #ffffff;
}
.cid-v5hVcEf2zy .mbr-text,
.cid-v5hVcEf2zy .mbr-section-btn {
  color: #f4f4f4;
}
.cid-v5hVcEf2zy .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-v5hVcEf2zy .mbr-section-subtitle {
  color: #1eca9e;
}
.cid-v5hVcEf2zy iframe {
  border-radius: 10px;
  border: solid 1px #1eca9e;
}
.cid-v5hVcEf2zy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5hVcEf2zy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-4 {
  /* Scrolling banner container */
  /* Scrolling text */
  /* Keyframes for the scroll animation */
}
#custom-html-4 body {
  background: black;
}
#custom-html-4 .banner-wrapper {
  position: relative;
  background-color: black;
  /* Black background box behind the banner */
  padding: 30px 0;
  /* Adjust padding to increase/decrease the size of the black box */
}
#custom-html-4 .scrolling-banner {
  position: relative;
  overflow: hidden;
  background-color: #1eca9e;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
#custom-html-4 .scrolling-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 3em;
  /* Font size of the text */
  font-weight: bold;
  color: white;
  /* Make text fill transparent */
  -webkit-text-stroke: 1px white;
  /* White stroke around the text */
  animation: scroll 20s linear infinite;
  /* Animation for scrolling */
}
@keyframes scroll {
  0% {
    transform: translateX(0);
    /* Start at normal position */
  }
  100% {
    transform: translateX(-50%);
    /* Move to the left by 50% of the container's width */
  }
}
.cid-v5i2VupYhp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v5i2VupYhp .mbr-section-title {
  color: #ffffff;
}
.cid-v5i2VupYhp .mbr-section-subtitle {
  color: #f4f4f4;
}
.cid-v5i2VupYhp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5i2VupYhp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5i2btONUK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v5i2btONUK .item-img {
  position: relative;
}
.cid-v5i2btONUK .price {
  text-align: left;
}
.cid-v5i2btONUK .hashtags .badge {
  display: inline-block;
  background-color: #1eca9e25;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-left: 5px;
  margin-bottom: 10px;
}
.cid-v5i2btONUK .hashtags .badge:first-child {
  margin-left: 15px;
}
@media (max-width: 768px) {
  .cid-v5i2btONUK .badge-grey {
    padding: 8px 16px;
    font-size: 14px;
    top: -40px;
    max-width: 80%;
    white-space: nowrap;
  }
}
.cid-v5i2btONUK .text-center.mb-4 {
  margin-bottom: 30px;
}
.cid-v5i2btONUK .tag {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}
.cid-v5i2btONUK .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-v5i2btONUK .btn-tag:hover,
.cid-v5i2btONUK .btn-tag:focus {
  box-shadow: none;
}
.cid-v5i2btONUK img,
.cid-v5i2btONUK .item-img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.cid-v5i2btONUK .item:focus,
.cid-v5i2btONUK span:focus {
  outline: none;
}
.cid-v5i2btONUK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v5i2btONUK .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  background: #1eca9e05;
  background-image: linear-gradient(90deg, rgba(89, 30, 250, 0.05) 1px, transparent 1px), linear-gradient(rgba(89, 30, 250, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  position: relative;
  transition: all 0.25s ease;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}
.cid-v5i2btONUK .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.cid-v5i2btONUK .item-wrapper > * {
  position: relative;
  z-index: 2;
}
.cid-v5i2btONUK .item-wrapper:hover {
  transform: translateY(-2px) translateZ(0);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-v5i2btONUK .mbr-section-btn {
  margin-top: auto !important;
  padding: 0 1rem;
}
.cid-v5i2btONUK .mbr-section-title {
  color: #ffffff;
}
.cid-v5i2btONUK .mbr-text,
.cid-v5i2btONUK .mbr-section-btn {
  color: #f4f4f4;
  padding: 0 1rem;
  text-align: left;
}
.cid-v5i2btONUK .item-title {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-v5i2btONUK .item-subtitle {
  color: #5518fa;
  text-align: center;
}
.cid-v5i2btONUK .mbr-section-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-v5i2btONUK .mbr-section-subtitle1 {
  text-align: center;
  color: #f8363c;
}
.cid-v5i2btONUK P {
  color: #591efa;
}
.cid-v5ikmzrd9u {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v5ikmzrd9u .mbr-section-title {
  color: #ffffff;
}
.cid-v5ikmzrd9u .mbr-section-subtitle {
  color: #f4f4f4;
}
.cid-v5ikmzrd9u .line {
  background: #353535;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-v5ikmzrd9u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ikmzrd9u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ikmzrd9u .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-v5im5IrFNC {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v5im5IrFNC .discord-banner {
  max-width: 1290px;
  width: 100%;
  background: #1eca9e05;
  background-image: linear-gradient(90deg, rgba(30, 202, 158, 0.05) 1px, transparent 1px), linear-gradient(rgba(30, 202, 158, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  margin-bottom: 30px;
  padding: 40px 20px;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 600px) {
  .cid-v5im5IrFNC .discord-banner {
    width: 95%;
  }
}
.cid-v5im5IrFNC .discord-banner:hover {
  transform: translateY(-2px) translateZ(0);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-v5im5IrFNC .mbr-text {
  color: #f4f4f4;
  text-align: center;
}
.cid-v5im5IrFNC .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v5im5IrFNC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v5im773T7L {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-v5im773T7L .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v5im773T7L .first-column .mbr-text {
  margin: 0;
}
.cid-v5im773T7L .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-v5im773T7L .row {
  background: #0a0a0a;
  background-image: linear-gradient(90deg, rgba(89, 30, 250, 0.05) 1px, transparent 1px), linear-gradient(rgba(89, 30, 250, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v5im773T7L .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v5im773T7L .form-group {
  max-width: 55%;
}
.cid-v5im773T7L .form-group,
.cid-v5im773T7L .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v5im773T7L .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-v5im773T7L .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v5im773T7L .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v5im773T7L .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v5im773T7L .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v5im773T7L .form-control:hover,
.cid-v5im773T7L .form-control:focus {
  border: none !important;
}
.cid-v5im773T7L .col + .mbr-section-btn .btn,
.cid-v5im773T7L .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-v5im773T7L .dragArea > *:nth-last-child(2).col,
.cid-v5im773T7L .dragArea > *:nth-last-child(2).col-auto,
.cid-v5im773T7L .col + .mbr-section-btn,
.cid-v5im773T7L .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5im773T7L .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v5im773T7L .mbr-section-title {
  color: #e6e6e6;
}
.cid-v5im773T7L .mbr-section-subtitle,
.cid-v5im773T7L .icons-wrapper {
  color: #f4f4f4;
}
.cid-v5im773T7L P {
  color: #ffffff;
}
.cid-v5im773T7L .mbr-section-title,
.cid-v5im773T7L .icons-wrapper {
  color: #ffffff;
}
.cid-v5im773T7L .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-v5k6e19rFs.popup-builder {
  background-color: #ffffff;
}
.cid-v5k6e19rFs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5k6e19rFs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5k6e19rFs .hashtags .badge {
  display: inline-block;
  background-color: #1eca9e25;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.cid-v5k6e19rFs .modal-content,
.cid-v5k6e19rFs .modal-dialog {
  height: auto;
}
.cid-v5k6e19rFs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5k6e19rFs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5k6e19rFs .form-wrapper .mbr-form .form-group,
  .cid-v5k6e19rFs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5k6e19rFs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5k6e19rFs .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5k6e19rFs .mbr-text {
  text-align: left;
  color: #f4f4f4;
}
.cid-v5k6e19rFs .pt-0 {
  padding-top: 0 !important;
}
.cid-v5k6e19rFs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5k6e19rFs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5k6e19rFs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5k6e19rFs .modal-open {
  overflow: hidden;
}
.cid-v5k6e19rFs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5k6e19rFs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5k6e19rFs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5k6e19rFs .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5k6e19rFs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5k6e19rFs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5k6e19rFs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5k6e19rFs .modal-content {
  background: #0a0a0a;
  background-image: linear-gradient(90deg, rgba(30, 202, 158, 0.05) 1px, transparent 1px), linear-gradient(rgba(30, 202, 158, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  outline: 0;
}
.cid-v5k6e19rFs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5k6e19rFs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5k6e19rFs .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5k6e19rFs .modal-backdrop.show {
  opacity: .5;
}
.cid-v5k6e19rFs .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5k6e19rFs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5k6e19rFs .modal-header {
    padding: 1rem;
  }
}
.cid-v5k6e19rFs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5k6e19rFs .modal-header .close svg {
  fill: #1eca9e;
}
.cid-v5k6e19rFs .modal-header .close:hover {
  opacity: 1;
}
.cid-v5k6e19rFs .modal-header .close:focus {
  outline: none;
}
.cid-v5k6e19rFs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #ffffff;
}
.cid-v5k6e19rFs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5k6e19rFs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5k6e19rFs .modal-body {
    padding: 1rem;
  }
}
.cid-v5k6e19rFs .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5k6e19rFs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5k6e19rFs .modal-footer {
    padding: 1rem;
  }
}
.cid-v5k6e19rFs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5k6e19rFs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5k6e19rFs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5k6e19rFs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5k6e19rFs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5k6e19rFs .modal-lg,
  .cid-v5k6e19rFs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5k6e19rFs .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5k6e19rFs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5k6e19rFs .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5k6e19rFs .form-group {
  margin-bottom: 1rem;
}
.cid-v5k6e19rFs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5k6e19rFs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5k6e19rFs .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5k6e19rFs .mbr-section-btn {
  margin: 0;
}
.cid-v5k6e19rFs .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5kc0fzOeu.popup-builder {
  background-color: #ffffff;
}
.cid-v5kc0fzOeu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5kc0fzOeu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5kc0fzOeu .modal-content,
.cid-v5kc0fzOeu .modal-dialog {
  height: auto;
}
.cid-v5kc0fzOeu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5kc0fzOeu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5kc0fzOeu .form-wrapper .mbr-form .form-group,
  .cid-v5kc0fzOeu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5kc0fzOeu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5kc0fzOeu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5kc0fzOeu .mbr-text {
  text-align: left;
  color: #f4f4f4;
}
.cid-v5kc0fzOeu .pt-0 {
  padding-top: 0 !important;
}
.cid-v5kc0fzOeu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5kc0fzOeu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5kc0fzOeu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5kc0fzOeu .modal-open {
  overflow: hidden;
}
.cid-v5kc0fzOeu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5kc0fzOeu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5kc0fzOeu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5kc0fzOeu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5kc0fzOeu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5kc0fzOeu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5kc0fzOeu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5kc0fzOeu .modal-content {
  background: #0a0a0a;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.05);
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(90deg, rgba(30, 202, 158, 0.05) 1px, transparent 1px), linear-gradient(rgba(30, 202, 158, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border-radius: 0 0 10px 10px;
}
.cid-v5kc0fzOeu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5kc0fzOeu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5kc0fzOeu .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5kc0fzOeu .modal-backdrop.show {
  opacity: .5;
}
.cid-v5kc0fzOeu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5kc0fzOeu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kc0fzOeu .modal-header {
    padding: 1rem;
  }
}
.cid-v5kc0fzOeu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5kc0fzOeu .modal-header .close svg {
  fill: #1eca9e;
}
.cid-v5kc0fzOeu .modal-header .close:hover {
  opacity: 1;
}
.cid-v5kc0fzOeu .modal-header .close:focus {
  outline: none;
}
.cid-v5kc0fzOeu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #ffffff;
}
.cid-v5kc0fzOeu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5kc0fzOeu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kc0fzOeu .modal-body {
    padding: 1rem;
  }
}
.cid-v5kc0fzOeu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5kc0fzOeu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kc0fzOeu .modal-footer {
    padding: 1rem;
  }
}
.cid-v5kc0fzOeu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5kc0fzOeu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5kc0fzOeu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5kc0fzOeu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5kc0fzOeu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5kc0fzOeu .modal-lg,
  .cid-v5kc0fzOeu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5kc0fzOeu .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5kc0fzOeu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5kc0fzOeu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5kc0fzOeu .form-group {
  margin-bottom: 1rem;
}
.cid-v5kc0fzOeu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5kc0fzOeu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5kc0fzOeu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5kc0fzOeu .mbr-section-btn {
  margin: 0;
}
.cid-v5kc0fzOeu .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5kc0fzOeu .hashtags .badge {
  display: inline-block;
  background-color: #1eca9e25;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.cid-v5kckHN9cd.popup-builder {
  background-color: #ffffff;
}
.cid-v5kckHN9cd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5kckHN9cd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5kckHN9cd .modal-content,
.cid-v5kckHN9cd .modal-dialog {
  height: auto;
}
.cid-v5kckHN9cd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5kckHN9cd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5kckHN9cd .form-wrapper .mbr-form .form-group,
  .cid-v5kckHN9cd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5kckHN9cd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5kckHN9cd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5kckHN9cd .mbr-text {
  text-align: left;
  color: #f4f4f4;
}
.cid-v5kckHN9cd .pt-0 {
  padding-top: 0 !important;
}
.cid-v5kckHN9cd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5kckHN9cd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5kckHN9cd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5kckHN9cd .modal-open {
  overflow: hidden;
}
.cid-v5kckHN9cd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5kckHN9cd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5kckHN9cd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5kckHN9cd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5kckHN9cd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5kckHN9cd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5kckHN9cd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5kckHN9cd .modal-content {
  background: #0a0a0a;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.05);
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(90deg, rgba(30, 202, 158, 0.05) 1px, transparent 1px), linear-gradient(rgba(30, 202, 158, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border-radius: 0 0 10px 10px;
}
.cid-v5kckHN9cd .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5kckHN9cd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5kckHN9cd .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5kckHN9cd .modal-backdrop.show {
  opacity: .5;
}
.cid-v5kckHN9cd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5kckHN9cd .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kckHN9cd .modal-header {
    padding: 1rem;
  }
}
.cid-v5kckHN9cd .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5kckHN9cd .modal-header .close svg {
  fill: #1eca9e;
}
.cid-v5kckHN9cd .modal-header .close:hover {
  opacity: 1;
}
.cid-v5kckHN9cd .modal-header .close:focus {
  outline: none;
}
.cid-v5kckHN9cd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #ffffff;
}
.cid-v5kckHN9cd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5kckHN9cd .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kckHN9cd .modal-body {
    padding: 1rem;
  }
}
.cid-v5kckHN9cd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5kckHN9cd .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kckHN9cd .modal-footer {
    padding: 1rem;
  }
}
.cid-v5kckHN9cd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5kckHN9cd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5kckHN9cd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5kckHN9cd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5kckHN9cd .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5kckHN9cd .modal-lg,
  .cid-v5kckHN9cd .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5kckHN9cd .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5kckHN9cd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5kckHN9cd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5kckHN9cd .form-group {
  margin-bottom: 1rem;
}
.cid-v5kckHN9cd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5kckHN9cd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5kckHN9cd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5kckHN9cd .mbr-section-btn {
  margin: 0;
}
.cid-v5kckHN9cd .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5kckHN9cd .hashtags .badge {
  display: inline-block;
  background-color: #1eca9e25;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.cid-v5kcD0va7i.popup-builder {
  background-color: #ffffff;
}
.cid-v5kcD0va7i.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5kcD0va7i.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5kcD0va7i .modal-content,
.cid-v5kcD0va7i .modal-dialog {
  height: auto;
}
.cid-v5kcD0va7i .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5kcD0va7i .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5kcD0va7i .form-wrapper .mbr-form .form-group,
  .cid-v5kcD0va7i .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5kcD0va7i .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5kcD0va7i .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5kcD0va7i .mbr-text {
  text-align: left;
  color: #f4f4f4;
}
.cid-v5kcD0va7i .pt-0 {
  padding-top: 0 !important;
}
.cid-v5kcD0va7i .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5kcD0va7i .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5kcD0va7i .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5kcD0va7i .modal-open {
  overflow: hidden;
}
.cid-v5kcD0va7i .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5kcD0va7i .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5kcD0va7i .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5kcD0va7i .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5kcD0va7i .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5kcD0va7i .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5kcD0va7i .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5kcD0va7i .modal-content {
  background: #0a0a0a;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.05);
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(90deg, rgba(30, 202, 158, 0.05) 1px, transparent 1px), linear-gradient(rgba(30, 202, 158, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border-radius: 0 0 10px 10px;
}
.cid-v5kcD0va7i .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5kcD0va7i .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5kcD0va7i .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5kcD0va7i .modal-backdrop.show {
  opacity: .5;
}
.cid-v5kcD0va7i .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5kcD0va7i .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kcD0va7i .modal-header {
    padding: 1rem;
  }
}
.cid-v5kcD0va7i .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5kcD0va7i .modal-header .close svg {
  fill: #1eca9e;
}
.cid-v5kcD0va7i .modal-header .close:hover {
  opacity: 1;
}
.cid-v5kcD0va7i .modal-header .close:focus {
  outline: none;
}
.cid-v5kcD0va7i .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #ffffff;
}
.cid-v5kcD0va7i .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5kcD0va7i .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kcD0va7i .modal-body {
    padding: 1rem;
  }
}
.cid-v5kcD0va7i .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5kcD0va7i .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kcD0va7i .modal-footer {
    padding: 1rem;
  }
}
.cid-v5kcD0va7i .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5kcD0va7i .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5kcD0va7i .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5kcD0va7i .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5kcD0va7i .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5kcD0va7i .modal-lg,
  .cid-v5kcD0va7i .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5kcD0va7i .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5kcD0va7i .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5kcD0va7i .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5kcD0va7i .form-group {
  margin-bottom: 1rem;
}
.cid-v5kcD0va7i .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5kcD0va7i .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5kcD0va7i .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5kcD0va7i .mbr-section-btn {
  margin: 0;
}
.cid-v5kcD0va7i .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5kcD0va7i .hashtags .badge {
  display: inline-block;
  background-color: #1eca9e25;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.cid-v5kd6Zg1se.popup-builder {
  background-color: #ffffff;
}
.cid-v5kd6Zg1se.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5kd6Zg1se.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5kd6Zg1se .modal-content,
.cid-v5kd6Zg1se .modal-dialog {
  height: auto;
}
.cid-v5kd6Zg1se .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5kd6Zg1se .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5kd6Zg1se .form-wrapper .mbr-form .form-group,
  .cid-v5kd6Zg1se .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5kd6Zg1se .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5kd6Zg1se .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5kd6Zg1se .mbr-text {
  text-align: left;
  color: #f4f4f4;
}
.cid-v5kd6Zg1se .pt-0 {
  padding-top: 0 !important;
}
.cid-v5kd6Zg1se .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5kd6Zg1se .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5kd6Zg1se .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5kd6Zg1se .modal-open {
  overflow: hidden;
}
.cid-v5kd6Zg1se .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5kd6Zg1se .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5kd6Zg1se .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5kd6Zg1se .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5kd6Zg1se .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5kd6Zg1se .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5kd6Zg1se .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5kd6Zg1se .modal-content {
  background: #0a0a0a;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.05);
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(90deg, rgba(30, 202, 158, 0.05) 1px, transparent 1px), linear-gradient(rgba(30, 202, 158, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border-radius: 0 0 10px 10px;
}
.cid-v5kd6Zg1se .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5kd6Zg1se .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5kd6Zg1se .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5kd6Zg1se .modal-backdrop.show {
  opacity: .5;
}
.cid-v5kd6Zg1se .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5kd6Zg1se .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kd6Zg1se .modal-header {
    padding: 1rem;
  }
}
.cid-v5kd6Zg1se .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5kd6Zg1se .modal-header .close svg {
  fill: #1eca9e;
}
.cid-v5kd6Zg1se .modal-header .close:hover {
  opacity: 1;
}
.cid-v5kd6Zg1se .modal-header .close:focus {
  outline: none;
}
.cid-v5kd6Zg1se .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #ffffff;
}
.cid-v5kd6Zg1se .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5kd6Zg1se .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kd6Zg1se .modal-body {
    padding: 1rem;
  }
}
.cid-v5kd6Zg1se .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5kd6Zg1se .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kd6Zg1se .modal-footer {
    padding: 1rem;
  }
}
.cid-v5kd6Zg1se .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5kd6Zg1se .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5kd6Zg1se .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5kd6Zg1se .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5kd6Zg1se .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5kd6Zg1se .modal-lg,
  .cid-v5kd6Zg1se .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5kd6Zg1se .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5kd6Zg1se .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5kd6Zg1se .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5kd6Zg1se .form-group {
  margin-bottom: 1rem;
}
.cid-v5kd6Zg1se .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5kd6Zg1se .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5kd6Zg1se .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5kd6Zg1se .mbr-section-btn {
  margin: 0;
}
.cid-v5kd6Zg1se .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5kd6Zg1se .hashtags .badge {
  display: inline-block;
  background-color: #1eca9e25;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.cid-v5kdfFTosE.popup-builder {
  background-color: #ffffff;
}
.cid-v5kdfFTosE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5kdfFTosE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5kdfFTosE .modal-content,
.cid-v5kdfFTosE .modal-dialog {
  height: auto;
}
.cid-v5kdfFTosE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5kdfFTosE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5kdfFTosE .form-wrapper .mbr-form .form-group,
  .cid-v5kdfFTosE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5kdfFTosE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5kdfFTosE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5kdfFTosE .mbr-text {
  text-align: left;
  color: #f4f4f4;
}
.cid-v5kdfFTosE .pt-0 {
  padding-top: 0 !important;
}
.cid-v5kdfFTosE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5kdfFTosE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5kdfFTosE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5kdfFTosE .modal-open {
  overflow: hidden;
}
.cid-v5kdfFTosE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5kdfFTosE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5kdfFTosE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5kdfFTosE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v5kdfFTosE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5kdfFTosE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5kdfFTosE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5kdfFTosE .modal-content {
  background: #0a0a0a;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.05);
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(90deg, rgba(30, 202, 158, 0.05) 1px, transparent 1px), linear-gradient(rgba(30, 202, 158, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border-radius: 0 0 10px 10px;
}
.cid-v5kdfFTosE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5kdfFTosE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5kdfFTosE .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5kdfFTosE .modal-backdrop.show {
  opacity: .5;
}
.cid-v5kdfFTosE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v5kdfFTosE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kdfFTosE .modal-header {
    padding: 1rem;
  }
}
.cid-v5kdfFTosE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5kdfFTosE .modal-header .close svg {
  fill: #1eca9e;
}
.cid-v5kdfFTosE .modal-header .close:hover {
  opacity: 1;
}
.cid-v5kdfFTosE .modal-header .close:focus {
  outline: none;
}
.cid-v5kdfFTosE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #ffffff;
}
.cid-v5kdfFTosE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5kdfFTosE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kdfFTosE .modal-body {
    padding: 1rem;
  }
}
.cid-v5kdfFTosE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v5kdfFTosE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5kdfFTosE .modal-footer {
    padding: 1rem;
  }
}
.cid-v5kdfFTosE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5kdfFTosE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5kdfFTosE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5kdfFTosE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5kdfFTosE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5kdfFTosE .modal-lg,
  .cid-v5kdfFTosE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5kdfFTosE .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5kdfFTosE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5kdfFTosE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v5kdfFTosE .form-group {
  margin-bottom: 1rem;
}
.cid-v5kdfFTosE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5kdfFTosE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5kdfFTosE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v5kdfFTosE .mbr-section-btn {
  margin: 0;
}
.cid-v5kdfFTosE .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5kdfFTosE .hashtags .badge {
  display: inline-block;
  background-color: #1eca9e25;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.cid-v5iJsppbUR {
  z-index: 1000;
  width: 100%;
}
.cid-v5iJsppbUR .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 992px) {
  .cid-v5iJsppbUR {
    flex-wrap: wrap;
  }
  .cid-v5iJsppbUR .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v5iJsppbUR .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v5iJsppbUR .icons-menu,
  .cid-v5iJsppbUR .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v5iJsppbUR .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v5iJsppbUR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0);
}
.cid-v5iJsppbUR .navbar.opened {
  transition: all 0.3s;
}
.cid-v5iJsppbUR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v5iJsppbUR .navbar .navbar-logo img {
  width: auto;
}
.cid-v5iJsppbUR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v5iJsppbUR .navbar.collapsed {
  justify-content: center;
}
.cid-v5iJsppbUR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5iJsppbUR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v5iJsppbUR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v5iJsppbUR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5iJsppbUR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5iJsppbUR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v5iJsppbUR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5iJsppbUR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v5iJsppbUR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v5iJsppbUR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5iJsppbUR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5iJsppbUR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5iJsppbUR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5iJsppbUR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v5iJsppbUR .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v5iJsppbUR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v5iJsppbUR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v5iJsppbUR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v5iJsppbUR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v5iJsppbUR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v5iJsppbUR .navbar.navbar-short {
  min-height: 60px;
}
.cid-v5iJsppbUR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v5iJsppbUR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v5iJsppbUR .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v5iJsppbUR .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v5iJsppbUR .btn {
  padding: 0.3rem 2rem;
}
.cid-v5iJsppbUR .nav-link {
  position: relative;
}
.cid-v5iJsppbUR .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #1eca9e;
}
.cid-v5iJsppbUR .nav-link:hover:before {
  width: 100%;
}
.cid-v5iJsppbUR nav.navbar {
  position: fixed;
}
.cid-v5iJsppbUR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5iJsppbUR .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-v5iJsppbUR .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5iJsppbUR .dropdown-item:hover,
.cid-v5iJsppbUR .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v5iJsppbUR .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v5iJsppbUR .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v5iJsppbUR .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v5iJsppbUR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v5iJsppbUR .container {
  display: flex;
  margin: auto;
}
.cid-v5iJsppbUR .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v5iJsppbUR .dropdown-menu,
.cid-v5iJsppbUR .navbar.opened {
  background: #000000 !important;
}
.cid-v5iJsppbUR .nav-item:focus,
.cid-v5iJsppbUR .nav-link:focus {
  outline: none;
}
.cid-v5iJsppbUR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v5iJsppbUR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5iJsppbUR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v5iJsppbUR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5iJsppbUR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5iJsppbUR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5iJsppbUR .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000 !important;
  transition: all 0.3s;
}
.cid-v5iJsppbUR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5iJsppbUR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5iJsppbUR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5iJsppbUR .dropdown-item.active,
.cid-v5iJsppbUR .dropdown-item:active {
  background-color: transparent;
}
.cid-v5iJsppbUR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5iJsppbUR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5iJsppbUR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5iJsppbUR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v5iJsppbUR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v5iJsppbUR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5iJsppbUR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v5iJsppbUR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v5iJsppbUR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v5iJsppbUR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v5iJsppbUR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v5iJsppbUR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5iJsppbUR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5iJsppbUR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v5iJsppbUR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5iJsppbUR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v5iJsppbUR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v5iJsppbUR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5iJsppbUR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v5iJsppbUR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v5iJsppbUR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5iJsppbUR .navbar {
    height: 70px;
  }
  .cid-v5iJsppbUR .navbar.opened {
    height: auto;
  }
  .cid-v5iJsppbUR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5jsx0R9OU {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, #090909, #000000);
}
.cid-v5jsx0R9OU .mbr-section-title {
  color: #ffffff;
}
.cid-v5jsx0R9OU .mbr-text,
.cid-v5jsx0R9OU .mbr-section-btn {
  color: #f4f4f4;
}
.cid-v5jsx0R9OU .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-v5jsx0R9OU .mbr-section-subtitle {
  color: #1eca9e;
}
.cid-v5jsx0R9OU iframe {
  border-radius: 10px;
  border: solid 1px #1eca9e;
}
.cid-v5jsx0R9OU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5jsx0R9OU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-e {
  /* Scrolling banner container */
  /* Scrolling text */
  /* Keyframes for the scroll animation */
}
#custom-html-e body {
  background: black;
}
#custom-html-e .banner-wrapper {
  position: relative;
  background-color: black;
  /* Black background box behind the banner */
  padding: 30px 0;
  /* Adjust padding to increase/decrease the size of the black box */
}
#custom-html-e .scrolling-banner {
  position: relative;
  overflow: hidden;
  background-color: #1eca9e;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
#custom-html-e .scrolling-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 3em;
  /* Font size of the text */
  font-weight: bold;
  color: white;
  /* Make text fill transparent */
  -webkit-text-stroke: 1px white;
  /* White stroke around the text */
  animation: scroll 20s linear infinite;
  /* Animation for scrolling */
}
@keyframes scroll {
  0% {
    transform: translateX(0);
    /* Start at normal position */
  }
  100% {
    transform: translateX(-50%);
    /* Move to the left by 50% of the container's width */
  }
}
.cid-v5iJsqFN5g {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v5iJsqFN5g .mbr-section-title {
  color: #ffffff;
}
.cid-v5iJsqFN5g .mbr-section-subtitle {
  color: #f4f4f4;
}
.cid-v5iJsqFN5g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5iJsqFN5g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5iJstdChf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-v5iJstdChf .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v5iJstdChf .first-column .mbr-text {
  margin: 0;
}
.cid-v5iJstdChf .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-v5iJstdChf .row {
  background: #0a0a0a;
  background-image: linear-gradient(90deg, rgba(89, 30, 250, 0.05) 1px, transparent 1px), linear-gradient(rgba(89, 30, 250, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v5iJstdChf .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v5iJstdChf .form-group {
  max-width: 55%;
}
.cid-v5iJstdChf .form-group,
.cid-v5iJstdChf .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v5iJstdChf .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-v5iJstdChf .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v5iJstdChf .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v5iJstdChf .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v5iJstdChf .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v5iJstdChf .form-control:hover,
.cid-v5iJstdChf .form-control:focus {
  border: none !important;
}
.cid-v5iJstdChf .col + .mbr-section-btn .btn,
.cid-v5iJstdChf .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-v5iJstdChf .dragArea > *:nth-last-child(2).col,
.cid-v5iJstdChf .dragArea > *:nth-last-child(2).col-auto,
.cid-v5iJstdChf .col + .mbr-section-btn,
.cid-v5iJstdChf .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5iJstdChf .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v5iJstdChf .mbr-section-title {
  color: #e6e6e6;
}
.cid-v5iJstdChf .mbr-section-subtitle,
.cid-v5iJstdChf .icons-wrapper {
  color: #f4f4f4;
}
.cid-v5iJstdChf P {
  color: #ffffff;
}
.cid-v5iJstdChf .mbr-section-title,
.cid-v5iJstdChf .icons-wrapper {
  color: #ffffff;
}
.cid-v5iJstdChf .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.cid-v5iQLITTdD {
  z-index: 1000;
  width: 100%;
}
.cid-v5iQLITTdD .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 992px) {
  .cid-v5iQLITTdD {
    flex-wrap: wrap;
  }
  .cid-v5iQLITTdD .navbar-collapse {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .cid-v5iQLITTdD .navbar-nav {
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
  }
  .cid-v5iQLITTdD .icons-menu,
  .cid-v5iQLITTdD .navbar-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .cid-v5iQLITTdD .navbar > .container {
    flex-wrap: nowrap;
  }
}
.cid-v5iQLITTdD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0);
}
.cid-v5iQLITTdD .navbar.opened {
  transition: all 0.3s;
}
.cid-v5iQLITTdD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v5iQLITTdD .navbar .navbar-logo img {
  width: auto;
}
.cid-v5iQLITTdD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  flex-basis: auto!important;
}
.cid-v5iQLITTdD .navbar.collapsed {
  justify-content: center;
}
.cid-v5iQLITTdD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5iQLITTdD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v5iQLITTdD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v5iQLITTdD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5iQLITTdD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5iQLITTdD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v5iQLITTdD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5iQLITTdD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v5iQLITTdD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-v5iQLITTdD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5iQLITTdD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5iQLITTdD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5iQLITTdD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5iQLITTdD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v5iQLITTdD .navbar .navbar-logo img {
    height: 5rem !important;
  }
  .cid-v5iQLITTdD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v5iQLITTdD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v5iQLITTdD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v5iQLITTdD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v5iQLITTdD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v5iQLITTdD .navbar.navbar-short {
  min-height: 60px;
}
.cid-v5iQLITTdD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v5iQLITTdD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v5iQLITTdD .opened .container {
    flex-wrap: wrap;
  }
}
.cid-v5iQLITTdD .opened .container .navbar-collapse {
  width: 100%;
}
.cid-v5iQLITTdD .btn {
  padding: 0.3rem 2rem;
}
.cid-v5iQLITTdD .nav-link {
  position: relative;
}
.cid-v5iQLITTdD .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #1eca9e;
}
.cid-v5iQLITTdD .nav-link:hover:before {
  width: 100%;
}
.cid-v5iQLITTdD nav.navbar {
  position: fixed;
}
.cid-v5iQLITTdD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5iQLITTdD .dropdown-item small {
  display: block;
  font-size: 0.8em;
  color: #bbbbbb;
  margin-top: 2px;
}
.cid-v5iQLITTdD .dropdown-menu {
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5iQLITTdD .dropdown-item:hover,
.cid-v5iQLITTdD .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.04) !important;
  color: white !important;
}
.cid-v5iQLITTdD .dropdown-item:first-child {
  border-radius: 10px;
}
.cid-v5iQLITTdD .dropdown-item:last-child {
  border-radius: 10px;
}
.cid-v5iQLITTdD .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}
.cid-v5iQLITTdD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
}
.cid-v5iQLITTdD .container {
  display: flex;
  margin: auto;
}
.cid-v5iQLITTdD .iconfont-wrapper {
  color: #4f4fe0 !important;
  font-size: 2rem;
  padding-right: 0.5rem;
}
.cid-v5iQLITTdD .dropdown-menu,
.cid-v5iQLITTdD .navbar.opened {
  background: #000000 !important;
}
.cid-v5iQLITTdD .nav-item:focus,
.cid-v5iQLITTdD .nav-link:focus {
  outline: none;
}
.cid-v5iQLITTdD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v5iQLITTdD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5iQLITTdD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v5iQLITTdD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5iQLITTdD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5iQLITTdD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5iQLITTdD .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000 !important;
  transition: all 0.3s;
}
.cid-v5iQLITTdD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5iQLITTdD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5iQLITTdD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5iQLITTdD .dropdown-item.active,
.cid-v5iQLITTdD .dropdown-item:active {
  background-color: transparent;
}
.cid-v5iQLITTdD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5iQLITTdD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5iQLITTdD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5iQLITTdD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v5iQLITTdD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v5iQLITTdD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5iQLITTdD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v5iQLITTdD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v5iQLITTdD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v5iQLITTdD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v5iQLITTdD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v5iQLITTdD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5iQLITTdD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5iQLITTdD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v5iQLITTdD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5iQLITTdD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v5iQLITTdD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v5iQLITTdD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5iQLITTdD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v5iQLITTdD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v5iQLITTdD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5iQLITTdD .navbar {
    height: 70px;
  }
  .cid-v5iQLITTdD .navbar.opened {
    height: auto;
  }
  .cid-v5iQLITTdD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5jszNbbTs {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, #090909, #000000);
}
.cid-v5jszNbbTs .mbr-section-title {
  color: #ffffff;
}
.cid-v5jszNbbTs .mbr-text,
.cid-v5jszNbbTs .mbr-section-btn {
  color: #f4f4f4;
}
.cid-v5jszNbbTs .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-v5jszNbbTs .mbr-section-subtitle {
  color: #1eca9e;
}
.cid-v5jszNbbTs iframe {
  border-radius: 10px;
  border: solid 1px #1eca9e;
}
.cid-v5jszNbbTs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5jszNbbTs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-o {
  /* Scrolling banner container */
  /* Scrolling text */
  /* Keyframes for the scroll animation */
}
#custom-html-o body {
  background: black;
}
#custom-html-o .banner-wrapper {
  position: relative;
  background-color: black;
  /* Black background box behind the banner */
  padding: 30px 0;
  /* Adjust padding to increase/decrease the size of the black box */
}
#custom-html-o .scrolling-banner {
  position: relative;
  overflow: hidden;
  background-color: #1eca9e;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
#custom-html-o .scrolling-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 3em;
  /* Font size of the text */
  font-weight: bold;
  color: white;
  /* Make text fill transparent */
  -webkit-text-stroke: 1px white;
  /* White stroke around the text */
  animation: scroll 20s linear infinite;
  /* Animation for scrolling */
}
@keyframes scroll {
  0% {
    transform: translateX(0);
    /* Start at normal position */
  }
  100% {
    transform: translateX(-50%);
    /* Move to the left by 50% of the container's width */
  }
}
.cid-v5iQLK0wpp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v5iQLK0wpp .mbr-section-title {
  color: #ffffff;
}
.cid-v5iQLK0wpp .mbr-section-subtitle {
  color: #f4f4f4;
}
.cid-v5iQLK0wpp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5iQLK0wpp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5iQYMHftN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v5iQYMHftN .item-img {
  position: relative;
}
.cid-v5iQYMHftN .price {
  text-align: left;
}
.cid-v5iQYMHftN .hashtags .badge {
  display: inline-block;
  background-color: #1eca9e25;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-left: 5px;
  margin-bottom: 10px;
}
.cid-v5iQYMHftN .hashtags .badge:first-child {
  margin-left: 15px;
}
@media (max-width: 768px) {
  .cid-v5iQYMHftN .badge-grey {
    padding: 8px 16px;
    font-size: 14px;
    top: -40px;
    max-width: 80%;
    white-space: nowrap;
  }
}
.cid-v5iQYMHftN .text-center.mb-4 {
  margin-bottom: 30px;
}
.cid-v5iQYMHftN .tag {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
}
.cid-v5iQYMHftN .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-v5iQYMHftN .btn-tag:hover,
.cid-v5iQYMHftN .btn-tag:focus {
  box-shadow: none;
}
.cid-v5iQYMHftN img,
.cid-v5iQYMHftN .item-img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.cid-v5iQYMHftN .item:focus,
.cid-v5iQYMHftN span:focus {
  outline: none;
}
.cid-v5iQYMHftN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v5iQYMHftN .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  background: #1eca9e05;
  background-image: linear-gradient(90deg, rgba(89, 30, 250, 0.05) 1px, transparent 1px), linear-gradient(rgba(89, 30, 250, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 10px 10px;
  position: relative;
  transition: all 0.25s ease;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}
.cid-v5iQYMHftN .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.cid-v5iQYMHftN .item-wrapper > * {
  position: relative;
  z-index: 2;
}
.cid-v5iQYMHftN .item-wrapper:hover {
  transform: translateY(-2px) translateZ(0);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-v5iQYMHftN .mbr-section-btn {
  margin-top: auto !important;
  padding: 0 1rem;
}
.cid-v5iQYMHftN .mbr-section-title {
  color: #ffffff;
}
.cid-v5iQYMHftN .mbr-text,
.cid-v5iQYMHftN .mbr-section-btn {
  color: #f4f4f4;
  padding: 0 1rem;
  text-align: left;
}
.cid-v5iQYMHftN .item-title {
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}
.cid-v5iQYMHftN .item-subtitle {
  color: #5518fa;
  text-align: center;
}
.cid-v5iQYMHftN .mbr-section-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-v5iQYMHftN .mbr-section-subtitle1 {
  text-align: center;
  color: #f8363c;
}
.cid-v5iQYMHftN P {
  color: #591efa;
}
.cid-v5iQLKzbrk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-v5iQLKzbrk .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #b4d8a4;
}
.cid-v5iQLKzbrk .first-column .mbr-text {
  margin: 0;
}
.cid-v5iQLKzbrk .gradient-text {
  background: linear-gradient(90deg, #1eca9e, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cid-v5iQLKzbrk .row {
  background: #0a0a0a;
  background-image: linear-gradient(90deg, rgba(89, 30, 250, 0.05) 1px, transparent 1px), linear-gradient(rgba(89, 30, 250, 0.03) 1px, transparent 1px);
  background-size: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  color: white;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-v5iQLKzbrk .row {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-v5iQLKzbrk .form-group {
  max-width: 55%;
}
.cid-v5iQLKzbrk .form-group,
.cid-v5iQLKzbrk .mbr-section-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-v5iQLKzbrk .form-control {
  font-size: 0.9rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none !important;
  width: 100%;
  padding: 0.3rem 1rem;
  background: #353535;
  color: #bbbbbb;
}
.cid-v5iQLKzbrk .form-control::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-v5iQLKzbrk .form-control::-moz-placeholder {
  color: #bbbbbb;
}
.cid-v5iQLKzbrk .form-control:-moz-placeholder {
  color: #bbbbbb;
}
.cid-v5iQLKzbrk .form-control:-ms-input-placeholder {
  color: #bbbbbb;
}
.cid-v5iQLKzbrk .form-control:hover,
.cid-v5iQLKzbrk .form-control:focus {
  border: none !important;
}
.cid-v5iQLKzbrk .col + .mbr-section-btn .btn,
.cid-v5iQLKzbrk .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2.2rem !important;
}
.cid-v5iQLKzbrk .dragArea > *:nth-last-child(2).col,
.cid-v5iQLKzbrk .dragArea > *:nth-last-child(2).col-auto,
.cid-v5iQLKzbrk .col + .mbr-section-btn,
.cid-v5iQLKzbrk .col-auto + .mbr-section-btn {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-v5iQLKzbrk .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v5iQLKzbrk .mbr-section-title {
  color: #e6e6e6;
}
.cid-v5iQLKzbrk .mbr-section-subtitle,
.cid-v5iQLKzbrk .icons-wrapper {
  color: #f4f4f4;
}
.cid-v5iQLKzbrk P {
  color: #ffffff;
}
.cid-v5iQLKzbrk .mbr-section-title,
.cid-v5iQLKzbrk .icons-wrapper {
  color: #ffffff;
}
.cid-v5iQLKzbrk .custom-gradient {
  background-image: linear-gradient(90deg, #7311d0, #a74dfd);
  text-shadow: 0 0 18px #7311d0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
