body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.375rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.2rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1875rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 20px 30px;
  border-radius: 8px;
}
.bg-primary {
  background-color: #38346b !important;
}
.bg-success {
  background-color: #5ca7db !important;
}
.bg-info {
  background-color: #8b8c4d !important;
}
.bg-warning {
  background-color: #59307c !important;
}
.bg-danger {
  background-color: #fcfd83 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #38346b !important;
  border-color: #38346b !important;
  color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1d1b38 !important;
  border-color: #1d1b38 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #244f9f !important;
  border-color: #244f9f !important;
}
.btn-info,
.btn-info:active {
  background-color: #8b8c4d !important;
  border-color: #8b8c4d !important;
  color: #ffffff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5a5b32 !important;
  border-color: #5a5b32 !important;
}
.btn-success,
.btn-success:active {
  background-color: #5ca7db !important;
  border-color: #5ca7db !important;
  color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a83c0 !important;
  border-color: #2a83c0 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #59307c !important;
  border-color: #59307c !important;
  color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #311b45 !important;
  border-color: #311b45 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fcfd83 !important;
  border-color: #fcfd83 !important;
  color: #7e7f02 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #7e7f02 !important;
  background-color: #fafc38 !important;
  border-color: #fafc38 !important;
}
.btn-white {
  color: #404040 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #38346b;
  color: #38346b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #38346b;
  border-color: #38346b;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #38346b !important;
  border-color: #38346b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #3c71d3;
  color: #3c71d3;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #3c71d3;
  border-color: #3c71d3;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #8b8c4d;
  color: #8b8c4d;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #8b8c4d;
  border-color: #8b8c4d;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #8b8c4d !important;
  border-color: #8b8c4d !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #5ca7db;
  color: #5ca7db;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #5ca7db;
  border-color: #5ca7db;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #5ca7db !important;
  border-color: #5ca7db !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #59307c;
  color: #59307c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #59307c;
  border-color: #59307c;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #59307c !important;
  border-color: #59307c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #fcfd83;
  color: #fcfd83;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #7e7f02;
  background-color: #fcfd83;
  border-color: #fcfd83;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #7e7f02 !important;
  background-color: #fcfd83 !important;
  border-color: #fcfd83 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #38346b !important;
}
.text-secondary {
  color: #3c71d3 !important;
}
.text-success {
  color: #5ca7db !important;
}
.text-info {
  color: #8b8c4d !important;
}
.text-warning {
  color: #59307c !important;
}
.text-danger {
  color: #fcfd83 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5e57ae !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8faee6 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #b0d4ed !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #babb84 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8d55bd !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #feffe7 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #8b8c4d;
}
.alert-warning {
  background-color: #59307c;
}
.alert-danger {
  background-color: #fcfd83;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #38346b;
  border-color: #38346b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #38346b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6e69b6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c4c494;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9967c4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #38346b;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #38346b;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #38346b;
  border-bottom-color: #38346b;
}
.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: #ffffff !important;
  background-color: #38346b !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: #3c71d3 !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='%2338346b' %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-u0Qw2CYgL4 .dropdown-menu {
  padding: 12px 0;
}
.cid-u0Qw2CYgL4 .dropdown-item:hover,
.cid-u0Qw2CYgL4 .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-u0Qw2CYgL4 .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-u0Qw2CYgL4 .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-u0Qw2CYgL4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0Qw2CYgL4 .nav-link {
  position: relative;
}
.cid-u0Qw2CYgL4 .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-u0Qw2CYgL4 .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0Qw2CYgL4 .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-u0Qw2CYgL4 .dropdown-menu,
.cid-u0Qw2CYgL4 .navbar.opened {
  background: #1f0931 !important;
}
.cid-u0Qw2CYgL4 .nav-item:focus,
.cid-u0Qw2CYgL4 .nav-link:focus {
  outline: none;
}
.cid-u0Qw2CYgL4 .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-u0Qw2CYgL4 .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-u0Qw2CYgL4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u0Qw2CYgL4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0Qw2CYgL4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u0Qw2CYgL4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u0Qw2CYgL4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0Qw2CYgL4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0Qw2CYgL4 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-u0Qw2CYgL4 .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-u0Qw2CYgL4 .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-u0Qw2CYgL4 .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-u0Qw2CYgL4 .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-u0Qw2CYgL4 .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-u0Qw2CYgL4 .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-u0Qw2CYgL4 .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-u0Qw2CYgL4 .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-u0Qw2CYgL4 .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-u0Qw2CYgL4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u0Qw2CYgL4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0Qw2CYgL4 .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-u0Qw2CYgL4 .navbar.collapsed.opened {
  position: fixed;
}
.cid-u0Qw2CYgL4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-u0Qw2CYgL4 .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u0Qw2CYgL4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-u0Qw2CYgL4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0Qw2CYgL4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0Qw2CYgL4 .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: 55%;
}
.cid-u0Qw2CYgL4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0Qw2CYgL4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0Qw2CYgL4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0Qw2CYgL4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0Qw2CYgL4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0Qw2CYgL4 .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-u0Qw2CYgL4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0Qw2CYgL4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0Qw2CYgL4 .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: 41%;
  }
  .cid-u0Qw2CYgL4 .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-u0Qw2CYgL4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u0Qw2CYgL4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0Qw2CYgL4 .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0Qw2CYgL4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-u0Qw2CYgL4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u0Qw2CYgL4 .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-u0Qw2CYgL4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u0Qw2CYgL4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u0Qw2CYgL4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u0Qw2CYgL4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0Qw2CYgL4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0Qw2CYgL4 .dropdown-item.active,
.cid-u0Qw2CYgL4 .dropdown-item:active {
  background-color: transparent;
}
.cid-u0Qw2CYgL4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0Qw2CYgL4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0Qw2CYgL4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0Qw2CYgL4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-u0Qw2CYgL4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0Qw2CYgL4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0Qw2CYgL4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u0Qw2CYgL4 .navbar-buttons {
  text-align: center;
}
.cid-u0Qw2CYgL4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u0Qw2CYgL4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-u0Qw2CYgL4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0Qw2CYgL4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Qw2CYgL4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0Qw2CYgL4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0Qw2CYgL4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Qw2CYgL4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0Qw2CYgL4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0Qw2CYgL4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0Qw2CYgL4 .navbar-dropdown {
  position: fixed;
}
.cid-u0Qw2CYgL4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u0Qw2CYgL4 .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-u0Qw2CYgL4 .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-u0Qw2CYgL4 .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u0Qw2CYgL4 .navbar {
    height: 77px;
  }
  .cid-u0Qw2CYgL4 .navbar.opened {
    height: auto;
  }
  .cid-u0Qw2CYgL4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0Qw2Dv7uI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-u0Qw2Dv7uI .container-fluid {
  padding: 0 3rem;
}
.cid-u0Qw2Dv7uI .media-container-column {
  padding: 0 2rem;
}
.cid-u0Qw2Dv7uI .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-u0Qw2Dv7uI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u1nqwuMSaw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #38346b;
}
.cid-u1nqwuMSaw .container-fluid {
  padding: 0 3rem;
}
.cid-u1nqwuMSaw .media-container-column {
  padding: 0 2rem;
}
.cid-u1nqwuMSaw .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-u1nqwuMSaw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u1nqwuMSaw .mbr-section-subtitle {
  color: #f3f3f3;
}
.cid-u0Qw2E8BRC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u0Qw2E8BRC .container-fluid {
  padding: 0 3rem;
}
.cid-u0Qw2E8BRC .media-container-column {
  padding: 0 2rem;
}
.cid-u0Qw2E8BRC .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-u0Qw2E8BRC .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u23WqNfmoj.popup-builder {
  background-color: #ffffff;
}
.cid-u23WqNfmoj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u23WqNfmoj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u23WqNfmoj .modal-content,
.cid-u23WqNfmoj .modal-dialog {
  height: auto;
}
.cid-u23WqNfmoj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u23WqNfmoj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u23WqNfmoj .form-wrapper .mbr-form .form-group,
  .cid-u23WqNfmoj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u23WqNfmoj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u23WqNfmoj .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-u23WqNfmoj .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-u23WqNfmoj .pt-0 {
  padding-top: 0 !important;
}
.cid-u23WqNfmoj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u23WqNfmoj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u23WqNfmoj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u23WqNfmoj .modal-open {
  overflow: hidden;
}
.cid-u23WqNfmoj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u23WqNfmoj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u23WqNfmoj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u23WqNfmoj .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-u23WqNfmoj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u23WqNfmoj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u23WqNfmoj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u23WqNfmoj .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-u23WqNfmoj .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u23WqNfmoj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u23WqNfmoj .modal-backdrop.fade {
  opacity: 0;
}
.cid-u23WqNfmoj .modal-backdrop.show {
  opacity: .5;
}
.cid-u23WqNfmoj .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-u23WqNfmoj .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u23WqNfmoj .modal-header {
    padding: 1rem;
  }
}
.cid-u23WqNfmoj .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u23WqNfmoj .modal-header .close svg {
  fill: #ffffff;
}
.cid-u23WqNfmoj .modal-header .close:hover {
  opacity: 1;
}
.cid-u23WqNfmoj .modal-header .close:focus {
  outline: none;
}
.cid-u23WqNfmoj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-u23WqNfmoj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u23WqNfmoj .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u23WqNfmoj .modal-body {
    padding: 1rem;
  }
}
.cid-u23WqNfmoj .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-u23WqNfmoj .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u23WqNfmoj .modal-footer {
    padding: 1rem;
  }
}
.cid-u23WqNfmoj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u23WqNfmoj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u23WqNfmoj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u23WqNfmoj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u23WqNfmoj .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u23WqNfmoj .modal-lg,
  .cid-u23WqNfmoj .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u23WqNfmoj .modal-xl {
    max-width: 1140px;
  }
}
.cid-u23WqNfmoj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u23WqNfmoj .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-u23WqNfmoj .form-group {
  margin-bottom: 1rem;
}
.cid-u23WqNfmoj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u23WqNfmoj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u23WqNfmoj .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-u23WqNfmoj .mbr-section-btn {
  margin: 0;
}
.cid-u23WqNfmoj .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwNdAoawDR.popup-builder {
  background-color: #ffffff;
}
.cid-uwNdAoawDR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwNdAoawDR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwNdAoawDR .modal-content,
.cid-uwNdAoawDR .modal-dialog {
  height: auto;
}
.cid-uwNdAoawDR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwNdAoawDR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwNdAoawDR .form-wrapper .mbr-form .form-group,
  .cid-uwNdAoawDR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwNdAoawDR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwNdAoawDR .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-uwNdAoawDR .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwNdAoawDR .pt-0 {
  padding-top: 0 !important;
}
.cid-uwNdAoawDR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwNdAoawDR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwNdAoawDR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwNdAoawDR .modal-open {
  overflow: hidden;
}
.cid-uwNdAoawDR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwNdAoawDR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwNdAoawDR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwNdAoawDR .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-uwNdAoawDR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwNdAoawDR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwNdAoawDR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwNdAoawDR .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwNdAoawDR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwNdAoawDR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwNdAoawDR .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwNdAoawDR .modal-backdrop.show {
  opacity: .5;
}
.cid-uwNdAoawDR .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-uwNdAoawDR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoawDR .modal-header {
    padding: 1rem;
  }
}
.cid-uwNdAoawDR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwNdAoawDR .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwNdAoawDR .modal-header .close:hover {
  opacity: 1;
}
.cid-uwNdAoawDR .modal-header .close:focus {
  outline: none;
}
.cid-uwNdAoawDR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwNdAoawDR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwNdAoawDR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoawDR .modal-body {
    padding: 1rem;
  }
}
.cid-uwNdAoawDR .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-uwNdAoawDR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoawDR .modal-footer {
    padding: 1rem;
  }
}
.cid-uwNdAoawDR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwNdAoawDR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwNdAoawDR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwNdAoawDR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwNdAoawDR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwNdAoawDR .modal-lg,
  .cid-uwNdAoawDR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwNdAoawDR .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwNdAoawDR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwNdAoawDR .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-uwNdAoawDR .form-group {
  margin-bottom: 1rem;
}
.cid-uwNdAoawDR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwNdAoawDR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwNdAoawDR .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-uwNdAoawDR .mbr-section-btn {
  margin: 0;
}
.cid-uwNdAoawDR .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMfNyD.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMfNyD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMfNyD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMfNyD .modal-content,
.cid-uO9WTMfNyD .modal-dialog {
  height: auto;
}
.cid-uO9WTMfNyD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMfNyD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMfNyD .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMfNyD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMfNyD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMfNyD .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-uO9WTMfNyD .mbr-text {
  text-align: center;
}
.cid-uO9WTMfNyD .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMfNyD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMfNyD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMfNyD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMfNyD .modal-open {
  overflow: hidden;
}
.cid-uO9WTMfNyD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMfNyD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMfNyD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMfNyD .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-uO9WTMfNyD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMfNyD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMfNyD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMfNyD .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMfNyD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMfNyD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMfNyD .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMfNyD .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMfNyD .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-uO9WTMfNyD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMfNyD .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMfNyD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMfNyD .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMfNyD .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMfNyD .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMfNyD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMfNyD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMfNyD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMfNyD .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMfNyD .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-uO9WTMfNyD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMfNyD .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMfNyD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMfNyD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMfNyD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMfNyD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMfNyD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMfNyD .modal-lg,
  .cid-uO9WTMfNyD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMfNyD .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMfNyD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMfNyD .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-uO9WTMfNyD .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMfNyD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMfNyD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMfNyD .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-uO9WTMfNyD .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMfNyD .mbr-section-btn .btn {
  margin: 0;
}
.cid-u4AhDr3Vag {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1f0931;
}
.cid-u4AhDr3Vag .container-fluid {
  padding: 0 3rem;
}
.cid-u4AhDr3Vag .media-container-column {
  padding: 0 2rem;
}
.cid-u4AhDr3Vag .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #bdbe5a;
}
@media (max-width: 767px) {
  .cid-u4AhDr3Vag .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u4AhDr3Vag .mbr-section-subtitle {
  color: #f3f3f3;
}
.cid-u4AhDrrGZn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u4AhDrrGZn .container-fluid {
  padding: 0 3rem;
}
.cid-u4AhDrrGZn .media-container-column {
  padding: 0 2rem;
}
.cid-u4AhDrrGZn .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-u4AhDrrGZn .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u4AhDrRWRX.popup-builder {
  background-color: #ffffff;
}
.cid-u4AhDrRWRX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u4AhDrRWRX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u4AhDrRWRX .modal-content,
.cid-u4AhDrRWRX .modal-dialog {
  height: auto;
}
.cid-u4AhDrRWRX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u4AhDrRWRX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u4AhDrRWRX .form-wrapper .mbr-form .form-group,
  .cid-u4AhDrRWRX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u4AhDrRWRX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u4AhDrRWRX .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-u4AhDrRWRX .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-u4AhDrRWRX .pt-0 {
  padding-top: 0 !important;
}
.cid-u4AhDrRWRX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u4AhDrRWRX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u4AhDrRWRX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u4AhDrRWRX .modal-open {
  overflow: hidden;
}
.cid-u4AhDrRWRX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u4AhDrRWRX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u4AhDrRWRX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u4AhDrRWRX .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-u4AhDrRWRX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u4AhDrRWRX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u4AhDrRWRX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u4AhDrRWRX .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-u4AhDrRWRX .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u4AhDrRWRX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u4AhDrRWRX .modal-backdrop.fade {
  opacity: 0;
}
.cid-u4AhDrRWRX .modal-backdrop.show {
  opacity: .5;
}
.cid-u4AhDrRWRX .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-u4AhDrRWRX .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u4AhDrRWRX .modal-header {
    padding: 1rem;
  }
}
.cid-u4AhDrRWRX .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u4AhDrRWRX .modal-header .close svg {
  fill: #ffffff;
}
.cid-u4AhDrRWRX .modal-header .close:hover {
  opacity: 1;
}
.cid-u4AhDrRWRX .modal-header .close:focus {
  outline: none;
}
.cid-u4AhDrRWRX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-u4AhDrRWRX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u4AhDrRWRX .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4AhDrRWRX .modal-body {
    padding: 1rem;
  }
}
.cid-u4AhDrRWRX .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-u4AhDrRWRX .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4AhDrRWRX .modal-footer {
    padding: 1rem;
  }
}
.cid-u4AhDrRWRX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u4AhDrRWRX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u4AhDrRWRX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u4AhDrRWRX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u4AhDrRWRX .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u4AhDrRWRX .modal-lg,
  .cid-u4AhDrRWRX .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u4AhDrRWRX .modal-xl {
    max-width: 1140px;
  }
}
.cid-u4AhDrRWRX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u4AhDrRWRX .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-u4AhDrRWRX .form-group {
  margin-bottom: 1rem;
}
.cid-u4AhDrRWRX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u4AhDrRWRX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u4AhDrRWRX .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-u4AhDrRWRX .mbr-section-btn {
  margin: 0;
}
.cid-u4AhDrRWRX .mbr-section-btn .btn {
  margin: 0;
}
.cid-u4SmM5pT5L .dropdown-menu {
  padding: 12px 0;
}
.cid-u4SmM5pT5L .dropdown-item:hover,
.cid-u4SmM5pT5L .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-u4SmM5pT5L .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-u4SmM5pT5L .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-u4SmM5pT5L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4SmM5pT5L .nav-link {
  position: relative;
}
.cid-u4SmM5pT5L .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-u4SmM5pT5L .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4SmM5pT5L .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-u4SmM5pT5L .dropdown-menu,
.cid-u4SmM5pT5L .navbar.opened {
  background: #1f0931 !important;
}
.cid-u4SmM5pT5L .nav-item:focus,
.cid-u4SmM5pT5L .nav-link:focus {
  outline: none;
}
.cid-u4SmM5pT5L .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-u4SmM5pT5L .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-u4SmM5pT5L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u4SmM5pT5L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4SmM5pT5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u4SmM5pT5L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u4SmM5pT5L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4SmM5pT5L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4SmM5pT5L .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-u4SmM5pT5L .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-u4SmM5pT5L .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-u4SmM5pT5L .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-u4SmM5pT5L .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-u4SmM5pT5L .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-u4SmM5pT5L .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-u4SmM5pT5L .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-u4SmM5pT5L .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-u4SmM5pT5L .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-u4SmM5pT5L .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u4SmM5pT5L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4SmM5pT5L .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-u4SmM5pT5L .navbar.collapsed.opened {
  position: fixed;
}
.cid-u4SmM5pT5L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-u4SmM5pT5L .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u4SmM5pT5L .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-u4SmM5pT5L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4SmM5pT5L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4SmM5pT5L .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: 55%;
}
.cid-u4SmM5pT5L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4SmM5pT5L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4SmM5pT5L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4SmM5pT5L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4SmM5pT5L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4SmM5pT5L .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-u4SmM5pT5L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4SmM5pT5L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4SmM5pT5L .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: 41%;
  }
  .cid-u4SmM5pT5L .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-u4SmM5pT5L .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u4SmM5pT5L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4SmM5pT5L .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4SmM5pT5L .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-u4SmM5pT5L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4SmM5pT5L .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-u4SmM5pT5L .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u4SmM5pT5L .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u4SmM5pT5L .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4SmM5pT5L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4SmM5pT5L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4SmM5pT5L .dropdown-item.active,
.cid-u4SmM5pT5L .dropdown-item:active {
  background-color: transparent;
}
.cid-u4SmM5pT5L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4SmM5pT5L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4SmM5pT5L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4SmM5pT5L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-u4SmM5pT5L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4SmM5pT5L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4SmM5pT5L ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u4SmM5pT5L .navbar-buttons {
  text-align: center;
}
.cid-u4SmM5pT5L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u4SmM5pT5L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-u4SmM5pT5L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4SmM5pT5L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4SmM5pT5L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4SmM5pT5L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4SmM5pT5L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4SmM5pT5L nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4SmM5pT5L nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4SmM5pT5L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4SmM5pT5L .navbar-dropdown {
  position: fixed;
}
.cid-u4SmM5pT5L a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u4SmM5pT5L .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-u4SmM5pT5L .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-u4SmM5pT5L .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4SmM5pT5L .navbar {
    height: 77px;
  }
  .cid-u4SmM5pT5L .navbar.opened {
    height: auto;
  }
  .cid-u4SmM5pT5L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4SmM6pWU5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-u4SmM6pWU5 .container-fluid {
  padding: 0 3rem;
}
.cid-u4SmM6pWU5 .media-container-column {
  padding: 0 2rem;
}
.cid-u4SmM6pWU5 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-u4SmM6pWU5 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u4SmM6XLb5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-u4SmM6XLb5 .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-u4SmM6XLb5 img {
    width: 90%;
  }
}
.cid-u4SmM6XLb5 .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-u4SmM6XLb5 .items {
  margin-bottom: 0;
}
.cid-u4SmM6XLb5 .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-u4SmM6XLb5 .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-u4SmM6XLb5 .soc-item:hover span {
  color: #38346b !important;
}
.cid-u4SmM6XLb5 .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-u4SmM6XLb5 .social-list {
    justify-content: center;
  }
}
.cid-u4SmM6XLb5 .card-title {
  text-align: left;
  color: #e6eaf1;
}
.cid-u4SthbuerY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #260641;
}
.cid-u4SthbuerY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4SthbuerY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4SthbuerY .container {
  max-width: 1600px;
}
.cid-u4SthbuerY .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #260641;
  padding: 4rem 4rem 6.5rem;
  border-radius: 4.17rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-u4SthbuerY .content-wrapper {
    padding: 40px 40px 5rem;
  }
}
@media (max-width: 767px) {
  .cid-u4SthbuerY .content-wrapper {
    padding: 4rem 6vw 5rem;
  }
}
.cid-u4SthbuerY .col-title {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-u4SthbuerY .col-title {
    margin-bottom: 50px;
  }
}
.cid-u4SthbuerY .mbr-section-title {
  color: #FFDD65;
}
.cid-u4SthbuerY .panel-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.83rem;
  border: none;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-u4SthbuerY .panel-group {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
  }
}
.cid-u4SthbuerY .card {
  padding: 0 !important;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0.83rem;
  border-radius: 1.25rem !important;
  background-color: rgba(255, 255, 255, 0.01);
}
.cid-u4SthbuerY .sign.mbr-iconfont {
  font-size: 22px !important;
  font-family: 'Moririse2' !important;
  color: #ae5eff;
  margin-left: 1.2rem;
  transition: all ease-in-out 0.3s;
}
.cid-u4SthbuerY .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-u4SthbuerY .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-u4SthbuerY .panel-title-edit {
  color: #fcfd83;
  transition: all ease-in-out 0.3s;
}
.cid-u4SthbuerY .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px !important;
}
@media (max-width: 991px) {
  .cid-u4SthbuerY .panel-title {
    padding: 16px 24px !important;
  }
}
.cid-u4SthbuerY .panel-title:hover .panel-title-edit {
  color: #38346b;
}
.cid-u4SthbuerY .panel-body {
  padding: 16px 40px 32px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u4SthbuerY .panel-body {
    padding: 16px 24px 24px;
  }
}
.cid-u4SthbuerY .panel-text {
  color: #e6eaf1;
  margin-bottom: 0 !important;
}
.cid-u4SthbuerY .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u4SthbuerY .col-text {
  width: 100%;
  margin-top: 64px;
}
@media (max-width: 991px) {
  .cid-u4SthbuerY .col-text {
    margin-top: 40px;
  }
}
.cid-u4SthbuerY .mbr-section-subtitle {
  color: #AE5EFF;
}
.cid-u4SthbuerY .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u4SthbuerY .mbr-text {
    margin-top: 16px;
  }
}
.cid-u4SthbuerY .btn-container {
  padding: 0 4rem;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-u4SthbuerY .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-u4SthbuerY .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-u4SthbuerY .btn-container .btn {
    width: 100%;
  }
}
.cid-u4SmM8r5xv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u4SmM8r5xv .container-fluid {
  padding: 0 3rem;
}
.cid-u4SmM8r5xv .media-container-column {
  padding: 0 2rem;
}
.cid-u4SmM8r5xv .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-u4SmM8r5xv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-u4SmM8Y6JT {
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-u4SmM8Y6JT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4SmM8Y6JT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u4SmM8Y6JT .container {
    padding: 0 16px;
  }
}
.cid-u4SmM8Y6JT .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u4SmM8Y6JT .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u4SmM8Y6JT .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-u4SmM8Y6JT .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u4SmM8Y6JT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u4SmM8Y6JT .mbr-text {
  color: #ffffff;
}
.cid-u4SmM8Y6JT .mbr-text,
.cid-u4SmM8Y6JT .mbr-section-btn {
  text-align: center;
}
.cid-u4SmM8Y6JT .mbr-section-title,
.cid-u4SmM8Y6JT .title-wrap {
  color: #410078;
}
.cid-u4SmM9xBkh.popup-builder {
  background-color: #ffffff;
}
.cid-u4SmM9xBkh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u4SmM9xBkh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u4SmM9xBkh .modal-content,
.cid-u4SmM9xBkh .modal-dialog {
  height: auto;
}
.cid-u4SmM9xBkh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u4SmM9xBkh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u4SmM9xBkh .form-wrapper .mbr-form .form-group,
  .cid-u4SmM9xBkh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u4SmM9xBkh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u4SmM9xBkh .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-u4SmM9xBkh .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-u4SmM9xBkh .pt-0 {
  padding-top: 0 !important;
}
.cid-u4SmM9xBkh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u4SmM9xBkh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u4SmM9xBkh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u4SmM9xBkh .modal-open {
  overflow: hidden;
}
.cid-u4SmM9xBkh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u4SmM9xBkh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u4SmM9xBkh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u4SmM9xBkh .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-u4SmM9xBkh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u4SmM9xBkh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u4SmM9xBkh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u4SmM9xBkh .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-u4SmM9xBkh .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u4SmM9xBkh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u4SmM9xBkh .modal-backdrop.fade {
  opacity: 0;
}
.cid-u4SmM9xBkh .modal-backdrop.show {
  opacity: .5;
}
.cid-u4SmM9xBkh .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-u4SmM9xBkh .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u4SmM9xBkh .modal-header {
    padding: 1rem;
  }
}
.cid-u4SmM9xBkh .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u4SmM9xBkh .modal-header .close svg {
  fill: #59307c;
}
.cid-u4SmM9xBkh .modal-header .close:hover {
  opacity: 1;
}
.cid-u4SmM9xBkh .modal-header .close:focus {
  outline: none;
}
.cid-u4SmM9xBkh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-u4SmM9xBkh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u4SmM9xBkh .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4SmM9xBkh .modal-body {
    padding: 1rem;
  }
}
.cid-u4SmM9xBkh .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-u4SmM9xBkh .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4SmM9xBkh .modal-footer {
    padding: 1rem;
  }
}
.cid-u4SmM9xBkh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u4SmM9xBkh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u4SmM9xBkh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u4SmM9xBkh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u4SmM9xBkh .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u4SmM9xBkh .modal-lg,
  .cid-u4SmM9xBkh .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u4SmM9xBkh .modal-xl {
    max-width: 1140px;
  }
}
.cid-u4SmM9xBkh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u4SmM9xBkh .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-u4SmM9xBkh .form-group {
  margin-bottom: 1rem;
}
.cid-u4SmM9xBkh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u4SmM9xBkh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u4SmM9xBkh .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-u4SmM9xBkh .mbr-section-btn {
  margin: 0;
}
.cid-u4SmM9xBkh .mbr-section-btn .btn {
  margin: 0;
}
.cid-u4SmMasTHe.popup-builder {
  background-color: #ffffff;
}
.cid-u4SmMasTHe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u4SmMasTHe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u4SmMasTHe .modal-content,
.cid-u4SmMasTHe .modal-dialog {
  height: auto;
}
.cid-u4SmMasTHe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u4SmMasTHe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u4SmMasTHe .form-wrapper .mbr-form .form-group,
  .cid-u4SmMasTHe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u4SmMasTHe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u4SmMasTHe .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-u4SmMasTHe .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-u4SmMasTHe .pt-0 {
  padding-top: 0 !important;
}
.cid-u4SmMasTHe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u4SmMasTHe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u4SmMasTHe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u4SmMasTHe .modal-open {
  overflow: hidden;
}
.cid-u4SmMasTHe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u4SmMasTHe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u4SmMasTHe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u4SmMasTHe .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-u4SmMasTHe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u4SmMasTHe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u4SmMasTHe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u4SmMasTHe .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-u4SmMasTHe .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u4SmMasTHe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u4SmMasTHe .modal-backdrop.fade {
  opacity: 0;
}
.cid-u4SmMasTHe .modal-backdrop.show {
  opacity: .5;
}
.cid-u4SmMasTHe .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-u4SmMasTHe .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u4SmMasTHe .modal-header {
    padding: 1rem;
  }
}
.cid-u4SmMasTHe .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u4SmMasTHe .modal-header .close svg {
  fill: #ffffff;
}
.cid-u4SmMasTHe .modal-header .close:hover {
  opacity: 1;
}
.cid-u4SmMasTHe .modal-header .close:focus {
  outline: none;
}
.cid-u4SmMasTHe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-u4SmMasTHe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u4SmMasTHe .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4SmMasTHe .modal-body {
    padding: 1rem;
  }
}
.cid-u4SmMasTHe .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-u4SmMasTHe .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4SmMasTHe .modal-footer {
    padding: 1rem;
  }
}
.cid-u4SmMasTHe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u4SmMasTHe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u4SmMasTHe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u4SmMasTHe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u4SmMasTHe .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u4SmMasTHe .modal-lg,
  .cid-u4SmMasTHe .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u4SmMasTHe .modal-xl {
    max-width: 1140px;
  }
}
.cid-u4SmMasTHe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u4SmMasTHe .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-u4SmMasTHe .form-group {
  margin-bottom: 1rem;
}
.cid-u4SmMasTHe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u4SmMasTHe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u4SmMasTHe .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-u4SmMasTHe .mbr-section-btn {
  margin: 0;
}
.cid-u4SmMasTHe .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwNdAoaq03.popup-builder {
  background-color: #ffffff;
}
.cid-uwNdAoaq03.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwNdAoaq03.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwNdAoaq03 .modal-content,
.cid-uwNdAoaq03 .modal-dialog {
  height: auto;
}
.cid-uwNdAoaq03 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwNdAoaq03 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwNdAoaq03 .form-wrapper .mbr-form .form-group,
  .cid-uwNdAoaq03 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwNdAoaq03 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwNdAoaq03 .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-uwNdAoaq03 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwNdAoaq03 .pt-0 {
  padding-top: 0 !important;
}
.cid-uwNdAoaq03 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwNdAoaq03 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwNdAoaq03 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwNdAoaq03 .modal-open {
  overflow: hidden;
}
.cid-uwNdAoaq03 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwNdAoaq03 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwNdAoaq03 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwNdAoaq03 .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-uwNdAoaq03 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwNdAoaq03 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwNdAoaq03 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwNdAoaq03 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwNdAoaq03 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwNdAoaq03 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwNdAoaq03 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwNdAoaq03 .modal-backdrop.show {
  opacity: .5;
}
.cid-uwNdAoaq03 .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-uwNdAoaq03 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoaq03 .modal-header {
    padding: 1rem;
  }
}
.cid-uwNdAoaq03 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwNdAoaq03 .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwNdAoaq03 .modal-header .close:hover {
  opacity: 1;
}
.cid-uwNdAoaq03 .modal-header .close:focus {
  outline: none;
}
.cid-uwNdAoaq03 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwNdAoaq03 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwNdAoaq03 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoaq03 .modal-body {
    padding: 1rem;
  }
}
.cid-uwNdAoaq03 .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-uwNdAoaq03 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoaq03 .modal-footer {
    padding: 1rem;
  }
}
.cid-uwNdAoaq03 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwNdAoaq03 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwNdAoaq03 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwNdAoaq03 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwNdAoaq03 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwNdAoaq03 .modal-lg,
  .cid-uwNdAoaq03 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwNdAoaq03 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwNdAoaq03 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwNdAoaq03 .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-uwNdAoaq03 .form-group {
  margin-bottom: 1rem;
}
.cid-uwNdAoaq03 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwNdAoaq03 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwNdAoaq03 .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-uwNdAoaq03 .mbr-section-btn {
  margin: 0;
}
.cid-uwNdAoaq03 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMgjwv.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMgjwv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMgjwv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMgjwv .modal-content,
.cid-uO9WTMgjwv .modal-dialog {
  height: auto;
}
.cid-uO9WTMgjwv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMgjwv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMgjwv .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMgjwv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMgjwv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMgjwv .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-uO9WTMgjwv .mbr-text {
  text-align: center;
}
.cid-uO9WTMgjwv .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMgjwv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMgjwv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMgjwv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMgjwv .modal-open {
  overflow: hidden;
}
.cid-uO9WTMgjwv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMgjwv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMgjwv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMgjwv .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-uO9WTMgjwv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMgjwv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMgjwv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMgjwv .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMgjwv .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMgjwv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMgjwv .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMgjwv .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMgjwv .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-uO9WTMgjwv .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMgjwv .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMgjwv .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMgjwv .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMgjwv .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMgjwv .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMgjwv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMgjwv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMgjwv .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMgjwv .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMgjwv .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-uO9WTMgjwv .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMgjwv .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMgjwv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMgjwv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMgjwv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMgjwv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMgjwv .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMgjwv .modal-lg,
  .cid-uO9WTMgjwv .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMgjwv .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMgjwv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMgjwv .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-uO9WTMgjwv .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMgjwv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMgjwv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMgjwv .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-uO9WTMgjwv .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMgjwv .mbr-section-btn .btn {
  margin: 0;
}
.cid-urqk5ELDhP .dropdown-menu {
  padding: 12px 0;
}
.cid-urqk5ELDhP .dropdown-item:hover,
.cid-urqk5ELDhP .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-urqk5ELDhP .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-urqk5ELDhP .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-urqk5ELDhP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urqk5ELDhP .nav-link {
  position: relative;
}
.cid-urqk5ELDhP .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-urqk5ELDhP .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urqk5ELDhP .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-urqk5ELDhP .dropdown-menu,
.cid-urqk5ELDhP .navbar.opened {
  background: #1f0931 !important;
}
.cid-urqk5ELDhP .nav-item:focus,
.cid-urqk5ELDhP .nav-link:focus {
  outline: none;
}
.cid-urqk5ELDhP .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-urqk5ELDhP .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-urqk5ELDhP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-urqk5ELDhP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urqk5ELDhP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-urqk5ELDhP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-urqk5ELDhP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urqk5ELDhP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urqk5ELDhP .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-urqk5ELDhP .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-urqk5ELDhP .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-urqk5ELDhP .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-urqk5ELDhP .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-urqk5ELDhP .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-urqk5ELDhP .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-urqk5ELDhP .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-urqk5ELDhP .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-urqk5ELDhP .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-urqk5ELDhP .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-urqk5ELDhP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urqk5ELDhP .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-urqk5ELDhP .navbar.collapsed.opened {
  position: fixed;
}
.cid-urqk5ELDhP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-urqk5ELDhP .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-urqk5ELDhP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-urqk5ELDhP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urqk5ELDhP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urqk5ELDhP .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: 55%;
}
.cid-urqk5ELDhP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urqk5ELDhP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urqk5ELDhP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urqk5ELDhP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urqk5ELDhP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urqk5ELDhP .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-urqk5ELDhP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urqk5ELDhP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urqk5ELDhP .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: 41%;
  }
  .cid-urqk5ELDhP .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-urqk5ELDhP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-urqk5ELDhP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urqk5ELDhP .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urqk5ELDhP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-urqk5ELDhP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urqk5ELDhP .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-urqk5ELDhP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-urqk5ELDhP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-urqk5ELDhP .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urqk5ELDhP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urqk5ELDhP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urqk5ELDhP .dropdown-item.active,
.cid-urqk5ELDhP .dropdown-item:active {
  background-color: transparent;
}
.cid-urqk5ELDhP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urqk5ELDhP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urqk5ELDhP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urqk5ELDhP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-urqk5ELDhP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urqk5ELDhP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urqk5ELDhP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-urqk5ELDhP .navbar-buttons {
  text-align: center;
}
.cid-urqk5ELDhP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-urqk5ELDhP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-urqk5ELDhP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urqk5ELDhP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urqk5ELDhP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urqk5ELDhP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urqk5ELDhP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urqk5ELDhP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urqk5ELDhP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urqk5ELDhP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urqk5ELDhP .navbar-dropdown {
  position: fixed;
}
.cid-urqk5ELDhP a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-urqk5ELDhP .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-urqk5ELDhP .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-urqk5ELDhP .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urqk5ELDhP .navbar {
    height: 77px;
  }
  .cid-urqk5ELDhP .navbar.opened {
    height: auto;
  }
  .cid-urqk5ELDhP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urqk5FvCXm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-urqk5FvCXm .container-fluid {
  padding: 0 3rem;
}
.cid-urqk5FvCXm .media-container-column {
  padding: 0 2rem;
}
.cid-urqk5FvCXm .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-urqk5FvCXm .container-fluid {
    padding: 0 1rem;
  }
}
.cid-urqk5FUp4F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-urqk5FUp4F .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-urqk5FUp4F img {
    width: 90%;
  }
}
.cid-urqk5FUp4F .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-urqk5FUp4F .items {
  margin-bottom: 0;
}
.cid-urqk5FUp4F .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-urqk5FUp4F .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-urqk5FUp4F .soc-item:hover span {
  color: #38346b !important;
}
.cid-urqk5FUp4F .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-urqk5FUp4F .social-list {
    justify-content: center;
  }
}
.cid-urqk5FUp4F .card-title {
  text-align: center;
  color: #bdbe5a;
}
.cid-usQe5vVNbs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-usQe5vVNbs .container {
    padding: 0 22px;
  }
}
.cid-usQe5vVNbs .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-usQe5vVNbs .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-usQe5vVNbs .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-usQe5vVNbs .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-usQe5vVNbs .content-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.cid-usQe5vVNbs .content-wrapper img {
  position: absolute;
  top: 0;
  width: 200vh;
  height: 100%;
  object-fit: cover;
}
.cid-usQe5vVNbs .content-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 40%;
  background-image: linear-gradient(transparent, #000000 65%);
  z-index: 1;
}
.cid-usQe5vVNbs .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-usQe5vVNbs .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-usQe5vVNbs .embla__slide .slide-content {
  width: 100%;
}
.cid-usQe5vVNbs .embla__slide .slide-content .item-wrapper .item-date {
  margin-bottom: 10px;
}
.cid-usQe5vVNbs .embla__slide .slide-content .item-wrapper .list {
  padding: 0;
  margin-bottom: 30px;
  list-style-position: inside;
}
.cid-usQe5vVNbs .embla__slide .slide-content .item-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-usQe5vVNbs .embla__slide .slide-content .item-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-usQe5vVNbs .embla__slide .slide-content .item-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 30px;
  width: 32px;
  height: 32px;
  color: #ffffff;
}
.cid-usQe5vVNbs .embla__button--next,
.cid-usQe5vVNbs .embla__button--prev {
  display: flex;
}
.cid-usQe5vVNbs .embla__button {
  top: 50%;
  width: 55px;
  height: 55px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: transparent !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-usQe5vVNbs .embla__button::before {
  content: '';
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  opacity: .4;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .cid-usQe5vVNbs .embla__button {
    display: none;
  }
}
.cid-usQe5vVNbs .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-usQe5vVNbs .embla__button:hover {
  opacity: 1 !important;
}
.cid-usQe5vVNbs .embla__button.embla__button--prev {
  left: 0;
}
@media (max-width: 992px) {
  .cid-usQe5vVNbs .embla__button.embla__button--prev {
    left: 20px;
  }
}
.cid-usQe5vVNbs .embla__button.embla__button--next {
  right: 0;
}
@media (max-width: 992px) {
  .cid-usQe5vVNbs .embla__button.embla__button--next {
    right: 20px;
  }
}
@media (max-width: 992px) {
  .cid-usQe5vVNbs .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-usQe5vVNbs .card {
  justify-content: center;
}
.cid-usQe5vVNbs .embla {
  position: relative;
  z-index: 1;
  padding: 40px 55px;
}
@media (max-width: 992px) {
  .cid-usQe5vVNbs .embla {
    padding: 40px 20px 4rem;
  }
}
.cid-usQe5vVNbs .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-usQe5vVNbs .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-usQe5vVNbs .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-usQe5vVNbs .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-usQe5vVNbs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-usQe5vVNbs .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-usQe5vVNbs .item-date {
  color: #ffffff;
}
.cid-usQe5vVNbs .list {
  color: #ffffff;
  text-align: center;
}
.cid-usQe5vVNbs .item-date,
.cid-usQe5vVNbs .icon-wrapper {
  text-align: center;
}
.cid-usQjtzGSgK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-usQjtzGSgK .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-usQjtzGSgK .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-usQjtzGSgK .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-usQjtzGSgK .main-title.display-2 {
  line-height: 1.375;
}
.cid-usQjtzGSgK .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-usQjtzGSgK .mbr-text {
  color: #606060;
}
.cid-usQjtzGSgK .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-usQjtzGSgK .mbr-section-btn {
  margin-top: 24px;
}
.cid-usQjtzGSgK .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-usQjtzGSgK .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-usQjtzGSgK .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-usQjtzGSgK .mbr-fallback-image.disabled {
  display: none;
}
.cid-usQjtzGSgK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usQjtzGSgK .mbr-text,
.cid-usQjtzGSgK .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-usQjtzGSgK .main-title,
.cid-usQjtzGSgK .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-usQjtzGSgK .mbr-section-subtitle,
.cid-usQjtzGSgK .mbr-section-btn {
  color: #624977;
  text-align: center;
}
.cid-usQ6kNG9NO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-usQ6kNG9NO .container-fluid {
  padding: 0 3rem;
}
.cid-usQ6kNG9NO .media-container-column {
  padding: 0 2rem;
}
.cid-usQ6kNG9NO .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-usQ6kNG9NO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-us5SifqOUM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-us5SifqOUM .mbr-section-title {
  color: #404040;
}
.cid-us5SifqOUM .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-us5SifqOUM .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-us5SifqOUM .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-us5SifqOUM .mbr-fallback-image.disabled {
  display: none;
}
.cid-us5SifqOUM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us5eWri8cb {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f9fafb;
}
.cid-us5eWri8cb .mbr-fallback-image.disabled {
  display: none;
}
.cid-us5eWri8cb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-us5eWri8cb .container {
    padding: 0 20px;
  }
}
.cid-us5eWri8cb .row {
  margin: 0;
}
.cid-us5eWri8cb .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-us5eWri8cb .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-us5eWri8cb .row .panel-group .card {
  border-bottom: 2px solid #000000;
  border-radius: 0;
}
.cid-us5eWri8cb .row .panel-group .card:first-child {
  border-top: 2px solid #000000;
}
.cid-us5eWri8cb .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-us5eWri8cb .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-us5eWri8cb .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-us5eWri8cb .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-us5eWri8cb .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-us5eWri8cb .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-us5eWri8cb .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-us5eWri8cb .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-us5eWri8cb .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-us5eWri8cb .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-us5eWri8cb .panel-title-edit,
.cid-us5eWri8cb .mbr-iconfont {
  color: #410078;
}
.cid-us5eWri8cb .mbr-text {
  color: #000000;
}
.cid-us5QSJ9PkI {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-us5QSJ9PkI .mbr-fallback-image.disabled {
  display: none;
}
.cid-us5QSJ9PkI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us5QSJ9PkI .user {
  background: #1e1e1e;
  border-radius: 2rem;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-us5QSJ9PkI .user_image {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .cid-us5QSJ9PkI .user {
    padding: 1rem;
  }
}
.cid-us5QSJ9PkI .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-us5QSJ9PkI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 700px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .cid-us5QSJ9PkI .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-us5QSJ9PkI .embla__button--next,
.cid-us5QSJ9PkI .embla__button--prev {
  display: flex;
}
.cid-us5QSJ9PkI .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-us5QSJ9PkI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-us5QSJ9PkI .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-us5QSJ9PkI .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-us5QSJ9PkI .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-us5QSJ9PkI .embla__button {
    top: auto;
  }
}
.cid-us5QSJ9PkI .img-wrapper img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-us5QSJ9PkI .img-wrapper img {
    margin-right: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 230px) {
  .cid-us5QSJ9PkI .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-us5QSJ9PkI .embla {
  position: relative;
  width: 100%;
}
.cid-us5QSJ9PkI .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-us5QSJ9PkI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-us5QSJ9PkI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-us5QSJ9PkI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-us5QSJ9PkI .user_desk {
  color: #bbbbbb;
}
.cid-us5QSJ9PkI H3 {
  text-align: center;
  color: #d4a4e4;
}
.cid-us5QSJ9PkI .user_text {
  color: #ffffff;
  text-align: center;
}
.cid-us5QSJ9PkI .user_name {
  color: #ffffff;
  text-align: center;
}
.cid-urqk5HnDvi {
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-urqk5HnDvi .mbr-fallback-image.disabled {
  display: none;
}
.cid-urqk5HnDvi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urqk5HnDvi .container {
    padding: 0 16px;
  }
}
.cid-urqk5HnDvi .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-urqk5HnDvi .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-urqk5HnDvi .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-urqk5HnDvi .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-urqk5HnDvi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-urqk5HnDvi .mbr-text {
  color: #ffffff;
}
.cid-urqk5HnDvi .mbr-text,
.cid-urqk5HnDvi .mbr-section-btn {
  text-align: center;
  color: #410078;
}
.cid-urqk5HnDvi .mbr-section-title,
.cid-urqk5HnDvi .title-wrap {
  color: #410078;
}
.cid-urqk5H1XLd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-urqk5H1XLd .container-fluid {
  padding: 0 3rem;
}
.cid-urqk5H1XLd .media-container-column {
  padding: 0 2rem;
}
.cid-urqk5H1XLd .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-urqk5H1XLd .container-fluid {
    padding: 0 1rem;
  }
}
.cid-v1k4VK6cuJ.popup-builder {
  background-color: #ffffff;
}
.cid-v1k4VK6cuJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v1k4VK6cuJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v1k4VK6cuJ .modal-content,
.cid-v1k4VK6cuJ .modal-dialog {
  height: auto;
}
.cid-v1k4VK6cuJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v1k4VK6cuJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v1k4VK6cuJ .form-wrapper .mbr-form .form-group,
  .cid-v1k4VK6cuJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v1k4VK6cuJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v1k4VK6cuJ .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-v1k4VK6cuJ .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v1k4VK6cuJ .pt-0 {
  padding-top: 0 !important;
}
.cid-v1k4VK6cuJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v1k4VK6cuJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v1k4VK6cuJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v1k4VK6cuJ .modal-open {
  overflow: hidden;
}
.cid-v1k4VK6cuJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v1k4VK6cuJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v1k4VK6cuJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v1k4VK6cuJ .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-v1k4VK6cuJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v1k4VK6cuJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v1k4VK6cuJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v1k4VK6cuJ .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-v1k4VK6cuJ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v1k4VK6cuJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v1k4VK6cuJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-v1k4VK6cuJ .modal-backdrop.show {
  opacity: .5;
}
.cid-v1k4VK6cuJ .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-v1k4VK6cuJ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v1k4VK6cuJ .modal-header {
    padding: 1rem;
  }
}
.cid-v1k4VK6cuJ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v1k4VK6cuJ .modal-header .close svg {
  fill: #353535;
}
.cid-v1k4VK6cuJ .modal-header .close:hover {
  opacity: 1;
}
.cid-v1k4VK6cuJ .modal-header .close:focus {
  outline: none;
}
.cid-v1k4VK6cuJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #98bec8;
}
.cid-v1k4VK6cuJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v1k4VK6cuJ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1k4VK6cuJ .modal-body {
    padding: 1rem;
  }
}
.cid-v1k4VK6cuJ .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-v1k4VK6cuJ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1k4VK6cuJ .modal-footer {
    padding: 1rem;
  }
}
.cid-v1k4VK6cuJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v1k4VK6cuJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v1k4VK6cuJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v1k4VK6cuJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v1k4VK6cuJ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v1k4VK6cuJ .modal-lg,
  .cid-v1k4VK6cuJ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v1k4VK6cuJ .modal-xl {
    max-width: 1140px;
  }
}
.cid-v1k4VK6cuJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v1k4VK6cuJ .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-v1k4VK6cuJ .form-group {
  margin-bottom: 1rem;
}
.cid-v1k4VK6cuJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v1k4VK6cuJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v1k4VK6cuJ .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-v1k4VK6cuJ .mbr-section-btn {
  margin: 0;
}
.cid-v1k4VK6cuJ .mbr-section-btn .btn {
  margin: 0;
}
.cid-v1kcFrxJ9Z.popup-builder {
  background-color: #ffffff;
}
.cid-v1kcFrxJ9Z.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v1kcFrxJ9Z.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v1kcFrxJ9Z .modal-content,
.cid-v1kcFrxJ9Z .modal-dialog {
  height: auto;
}
.cid-v1kcFrxJ9Z .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v1kcFrxJ9Z .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v1kcFrxJ9Z .form-wrapper .mbr-form .form-group,
  .cid-v1kcFrxJ9Z .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v1kcFrxJ9Z .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v1kcFrxJ9Z .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-v1kcFrxJ9Z .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v1kcFrxJ9Z .pt-0 {
  padding-top: 0 !important;
}
.cid-v1kcFrxJ9Z .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v1kcFrxJ9Z .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v1kcFrxJ9Z .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v1kcFrxJ9Z .modal-open {
  overflow: hidden;
}
.cid-v1kcFrxJ9Z .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v1kcFrxJ9Z .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v1kcFrxJ9Z .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v1kcFrxJ9Z .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-v1kcFrxJ9Z .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v1kcFrxJ9Z .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v1kcFrxJ9Z .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v1kcFrxJ9Z .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-v1kcFrxJ9Z .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v1kcFrxJ9Z .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v1kcFrxJ9Z .modal-backdrop.fade {
  opacity: 0;
}
.cid-v1kcFrxJ9Z .modal-backdrop.show {
  opacity: .5;
}
.cid-v1kcFrxJ9Z .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-v1kcFrxJ9Z .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v1kcFrxJ9Z .modal-header {
    padding: 1rem;
  }
}
.cid-v1kcFrxJ9Z .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v1kcFrxJ9Z .modal-header .close svg {
  fill: #f3f6f9;
}
.cid-v1kcFrxJ9Z .modal-header .close:hover {
  opacity: 1;
}
.cid-v1kcFrxJ9Z .modal-header .close:focus {
  outline: none;
}
.cid-v1kcFrxJ9Z .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #98bec8;
}
.cid-v1kcFrxJ9Z .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v1kcFrxJ9Z .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1kcFrxJ9Z .modal-body {
    padding: 1rem;
  }
}
.cid-v1kcFrxJ9Z .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-v1kcFrxJ9Z .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1kcFrxJ9Z .modal-footer {
    padding: 1rem;
  }
}
.cid-v1kcFrxJ9Z .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v1kcFrxJ9Z .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v1kcFrxJ9Z .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v1kcFrxJ9Z .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v1kcFrxJ9Z .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v1kcFrxJ9Z .modal-lg,
  .cid-v1kcFrxJ9Z .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v1kcFrxJ9Z .modal-xl {
    max-width: 1140px;
  }
}
.cid-v1kcFrxJ9Z .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v1kcFrxJ9Z .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-v1kcFrxJ9Z .form-group {
  margin-bottom: 1rem;
}
.cid-v1kcFrxJ9Z .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v1kcFrxJ9Z .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v1kcFrxJ9Z .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-v1kcFrxJ9Z .mbr-section-btn {
  margin: 0;
}
.cid-v1kcFrxJ9Z .mbr-section-btn .btn {
  margin: 0;
}
.cid-usWNKynjuy.popup-builder {
  background-color: #ffffff;
}
.cid-usWNKynjuy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usWNKynjuy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usWNKynjuy .modal-content,
.cid-usWNKynjuy .modal-dialog {
  height: auto;
}
.cid-usWNKynjuy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usWNKynjuy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usWNKynjuy .form-wrapper .mbr-form .form-group,
  .cid-usWNKynjuy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usWNKynjuy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usWNKynjuy .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-usWNKynjuy .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-usWNKynjuy .pt-0 {
  padding-top: 0 !important;
}
.cid-usWNKynjuy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usWNKynjuy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usWNKynjuy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usWNKynjuy .modal-open {
  overflow: hidden;
}
.cid-usWNKynjuy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usWNKynjuy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usWNKynjuy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usWNKynjuy .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-usWNKynjuy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usWNKynjuy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usWNKynjuy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usWNKynjuy .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usWNKynjuy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usWNKynjuy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usWNKynjuy .modal-backdrop.fade {
  opacity: 0;
}
.cid-usWNKynjuy .modal-backdrop.show {
  opacity: .5;
}
.cid-usWNKynjuy .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-usWNKynjuy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usWNKynjuy .modal-header {
    padding: 1rem;
  }
}
.cid-usWNKynjuy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usWNKynjuy .modal-header .close svg {
  fill: #260641;
}
.cid-usWNKynjuy .modal-header .close:hover {
  opacity: 1;
}
.cid-usWNKynjuy .modal-header .close:focus {
  outline: none;
}
.cid-usWNKynjuy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-usWNKynjuy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usWNKynjuy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usWNKynjuy .modal-body {
    padding: 1rem;
  }
}
.cid-usWNKynjuy .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-usWNKynjuy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usWNKynjuy .modal-footer {
    padding: 1rem;
  }
}
.cid-usWNKynjuy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usWNKynjuy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usWNKynjuy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usWNKynjuy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usWNKynjuy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usWNKynjuy .modal-lg,
  .cid-usWNKynjuy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usWNKynjuy .modal-xl {
    max-width: 1140px;
  }
}
.cid-usWNKynjuy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usWNKynjuy .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-usWNKynjuy .form-group {
  margin-bottom: 1rem;
}
.cid-usWNKynjuy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usWNKynjuy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usWNKynjuy .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-usWNKynjuy .mbr-section-btn {
  margin: 0;
}
.cid-usWNKynjuy .mbr-section-btn .btn {
  margin: 0;
}
.cid-usQgdZWgBD.popup-builder {
  background-color: #ffffff;
}
.cid-usQgdZWgBD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usQgdZWgBD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usQgdZWgBD .modal-content,
.cid-usQgdZWgBD .modal-dialog {
  height: auto;
}
.cid-usQgdZWgBD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usQgdZWgBD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usQgdZWgBD .form-wrapper .mbr-form .form-group,
  .cid-usQgdZWgBD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usQgdZWgBD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usQgdZWgBD .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-usQgdZWgBD .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-usQgdZWgBD .pt-0 {
  padding-top: 0 !important;
}
.cid-usQgdZWgBD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usQgdZWgBD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usQgdZWgBD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usQgdZWgBD .modal-open {
  overflow: hidden;
}
.cid-usQgdZWgBD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usQgdZWgBD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usQgdZWgBD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usQgdZWgBD .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-usQgdZWgBD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usQgdZWgBD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usQgdZWgBD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usQgdZWgBD .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usQgdZWgBD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usQgdZWgBD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usQgdZWgBD .modal-backdrop.fade {
  opacity: 0;
}
.cid-usQgdZWgBD .modal-backdrop.show {
  opacity: .5;
}
.cid-usQgdZWgBD .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-usQgdZWgBD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usQgdZWgBD .modal-header {
    padding: 1rem;
  }
}
.cid-usQgdZWgBD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usQgdZWgBD .modal-header .close svg {
  fill: #5849aa;
}
.cid-usQgdZWgBD .modal-header .close:hover {
  opacity: 1;
}
.cid-usQgdZWgBD .modal-header .close:focus {
  outline: none;
}
.cid-usQgdZWgBD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-usQgdZWgBD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usQgdZWgBD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usQgdZWgBD .modal-body {
    padding: 1rem;
  }
}
.cid-usQgdZWgBD .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-usQgdZWgBD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usQgdZWgBD .modal-footer {
    padding: 1rem;
  }
}
.cid-usQgdZWgBD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usQgdZWgBD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usQgdZWgBD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usQgdZWgBD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usQgdZWgBD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usQgdZWgBD .modal-lg,
  .cid-usQgdZWgBD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usQgdZWgBD .modal-xl {
    max-width: 1140px;
  }
}
.cid-usQgdZWgBD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usQgdZWgBD .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-usQgdZWgBD .form-group {
  margin-bottom: 1rem;
}
.cid-usQgdZWgBD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usQgdZWgBD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usQgdZWgBD .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-usQgdZWgBD .mbr-section-btn {
  margin: 0;
}
.cid-usQgdZWgBD .mbr-section-btn .btn {
  margin: 0;
}
.cid-usQ6zk5tDw.popup-builder {
  background-color: #ffffff;
}
.cid-usQ6zk5tDw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usQ6zk5tDw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usQ6zk5tDw .modal-content,
.cid-usQ6zk5tDw .modal-dialog {
  height: auto;
}
.cid-usQ6zk5tDw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usQ6zk5tDw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usQ6zk5tDw .form-wrapper .mbr-form .form-group,
  .cid-usQ6zk5tDw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usQ6zk5tDw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usQ6zk5tDw .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-usQ6zk5tDw .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-usQ6zk5tDw .pt-0 {
  padding-top: 0 !important;
}
.cid-usQ6zk5tDw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usQ6zk5tDw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usQ6zk5tDw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usQ6zk5tDw .modal-open {
  overflow: hidden;
}
.cid-usQ6zk5tDw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usQ6zk5tDw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usQ6zk5tDw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usQ6zk5tDw .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-usQ6zk5tDw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usQ6zk5tDw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usQ6zk5tDw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usQ6zk5tDw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usQ6zk5tDw .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usQ6zk5tDw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usQ6zk5tDw .modal-backdrop.fade {
  opacity: 0;
}
.cid-usQ6zk5tDw .modal-backdrop.show {
  opacity: .5;
}
.cid-usQ6zk5tDw .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-usQ6zk5tDw .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usQ6zk5tDw .modal-header {
    padding: 1rem;
  }
}
.cid-usQ6zk5tDw .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usQ6zk5tDw .modal-header .close svg {
  fill: #611750;
}
.cid-usQ6zk5tDw .modal-header .close:hover {
  opacity: 1;
}
.cid-usQ6zk5tDw .modal-header .close:focus {
  outline: none;
}
.cid-usQ6zk5tDw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-usQ6zk5tDw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usQ6zk5tDw .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usQ6zk5tDw .modal-body {
    padding: 1rem;
  }
}
.cid-usQ6zk5tDw .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-usQ6zk5tDw .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usQ6zk5tDw .modal-footer {
    padding: 1rem;
  }
}
.cid-usQ6zk5tDw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usQ6zk5tDw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usQ6zk5tDw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usQ6zk5tDw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usQ6zk5tDw .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usQ6zk5tDw .modal-lg,
  .cid-usQ6zk5tDw .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usQ6zk5tDw .modal-xl {
    max-width: 1140px;
  }
}
.cid-usQ6zk5tDw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usQ6zk5tDw .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-usQ6zk5tDw .form-group {
  margin-bottom: 1rem;
}
.cid-usQ6zk5tDw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usQ6zk5tDw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usQ6zk5tDw .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-usQ6zk5tDw .mbr-section-btn {
  margin: 0;
}
.cid-usQ6zk5tDw .mbr-section-btn .btn {
  margin: 0;
}
.cid-urqk5HK0Di.popup-builder {
  background-color: #ffffff;
}
.cid-urqk5HK0Di.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-urqk5HK0Di.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-urqk5HK0Di .modal-content,
.cid-urqk5HK0Di .modal-dialog {
  height: auto;
}
.cid-urqk5HK0Di .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-urqk5HK0Di .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-urqk5HK0Di .form-wrapper .mbr-form .form-group,
  .cid-urqk5HK0Di .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-urqk5HK0Di .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-urqk5HK0Di .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-urqk5HK0Di .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-urqk5HK0Di .pt-0 {
  padding-top: 0 !important;
}
.cid-urqk5HK0Di .pb-0 {
  padding-bottom: 0 !important;
}
.cid-urqk5HK0Di .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-urqk5HK0Di .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-urqk5HK0Di .modal-open {
  overflow: hidden;
}
.cid-urqk5HK0Di .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-urqk5HK0Di .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-urqk5HK0Di .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-urqk5HK0Di .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-urqk5HK0Di .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-urqk5HK0Di .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-urqk5HK0Di .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-urqk5HK0Di .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-urqk5HK0Di .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-urqk5HK0Di .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-urqk5HK0Di .modal-backdrop.fade {
  opacity: 0;
}
.cid-urqk5HK0Di .modal-backdrop.show {
  opacity: .5;
}
.cid-urqk5HK0Di .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-urqk5HK0Di .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urqk5HK0Di .modal-header {
    padding: 1rem;
  }
}
.cid-urqk5HK0Di .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-urqk5HK0Di .modal-header .close svg {
  fill: #59307c;
}
.cid-urqk5HK0Di .modal-header .close:hover {
  opacity: 1;
}
.cid-urqk5HK0Di .modal-header .close:focus {
  outline: none;
}
.cid-urqk5HK0Di .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-urqk5HK0Di .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-urqk5HK0Di .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urqk5HK0Di .modal-body {
    padding: 1rem;
  }
}
.cid-urqk5HK0Di .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-urqk5HK0Di .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urqk5HK0Di .modal-footer {
    padding: 1rem;
  }
}
.cid-urqk5HK0Di .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-urqk5HK0Di .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-urqk5HK0Di .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-urqk5HK0Di .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-urqk5HK0Di .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-urqk5HK0Di .modal-lg,
  .cid-urqk5HK0Di .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-urqk5HK0Di .modal-xl {
    max-width: 1140px;
  }
}
.cid-urqk5HK0Di .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-urqk5HK0Di .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-urqk5HK0Di .form-group {
  margin-bottom: 1rem;
}
.cid-urqk5HK0Di .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-urqk5HK0Di .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-urqk5HK0Di .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-urqk5HK0Di .mbr-section-btn {
  margin: 0;
}
.cid-urqk5HK0Di .mbr-section-btn .btn {
  margin: 0;
}
.cid-urqk5IcmL6.popup-builder {
  background-color: #ffffff;
}
.cid-urqk5IcmL6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-urqk5IcmL6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-urqk5IcmL6 .modal-content,
.cid-urqk5IcmL6 .modal-dialog {
  height: auto;
}
.cid-urqk5IcmL6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-urqk5IcmL6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-urqk5IcmL6 .form-wrapper .mbr-form .form-group,
  .cid-urqk5IcmL6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-urqk5IcmL6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-urqk5IcmL6 .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-urqk5IcmL6 .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-urqk5IcmL6 .pt-0 {
  padding-top: 0 !important;
}
.cid-urqk5IcmL6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-urqk5IcmL6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-urqk5IcmL6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-urqk5IcmL6 .modal-open {
  overflow: hidden;
}
.cid-urqk5IcmL6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-urqk5IcmL6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-urqk5IcmL6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-urqk5IcmL6 .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-urqk5IcmL6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-urqk5IcmL6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-urqk5IcmL6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-urqk5IcmL6 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-urqk5IcmL6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-urqk5IcmL6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-urqk5IcmL6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-urqk5IcmL6 .modal-backdrop.show {
  opacity: .5;
}
.cid-urqk5IcmL6 .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-urqk5IcmL6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urqk5IcmL6 .modal-header {
    padding: 1rem;
  }
}
.cid-urqk5IcmL6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-urqk5IcmL6 .modal-header .close svg {
  fill: #ffffff;
}
.cid-urqk5IcmL6 .modal-header .close:hover {
  opacity: 1;
}
.cid-urqk5IcmL6 .modal-header .close:focus {
  outline: none;
}
.cid-urqk5IcmL6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-urqk5IcmL6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-urqk5IcmL6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urqk5IcmL6 .modal-body {
    padding: 1rem;
  }
}
.cid-urqk5IcmL6 .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-urqk5IcmL6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urqk5IcmL6 .modal-footer {
    padding: 1rem;
  }
}
.cid-urqk5IcmL6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-urqk5IcmL6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-urqk5IcmL6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-urqk5IcmL6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-urqk5IcmL6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-urqk5IcmL6 .modal-lg,
  .cid-urqk5IcmL6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-urqk5IcmL6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-urqk5IcmL6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-urqk5IcmL6 .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-urqk5IcmL6 .form-group {
  margin-bottom: 1rem;
}
.cid-urqk5IcmL6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-urqk5IcmL6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-urqk5IcmL6 .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-urqk5IcmL6 .mbr-section-btn {
  margin: 0;
}
.cid-urqk5IcmL6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwNdAoatzR.popup-builder {
  background-color: #ffffff;
}
.cid-uwNdAoatzR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwNdAoatzR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwNdAoatzR .modal-content,
.cid-uwNdAoatzR .modal-dialog {
  height: auto;
}
.cid-uwNdAoatzR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwNdAoatzR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwNdAoatzR .form-wrapper .mbr-form .form-group,
  .cid-uwNdAoatzR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwNdAoatzR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwNdAoatzR .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-uwNdAoatzR .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwNdAoatzR .pt-0 {
  padding-top: 0 !important;
}
.cid-uwNdAoatzR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwNdAoatzR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwNdAoatzR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwNdAoatzR .modal-open {
  overflow: hidden;
}
.cid-uwNdAoatzR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwNdAoatzR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwNdAoatzR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwNdAoatzR .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-uwNdAoatzR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwNdAoatzR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwNdAoatzR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwNdAoatzR .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwNdAoatzR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwNdAoatzR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwNdAoatzR .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwNdAoatzR .modal-backdrop.show {
  opacity: .5;
}
.cid-uwNdAoatzR .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-uwNdAoatzR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoatzR .modal-header {
    padding: 1rem;
  }
}
.cid-uwNdAoatzR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwNdAoatzR .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwNdAoatzR .modal-header .close:hover {
  opacity: 1;
}
.cid-uwNdAoatzR .modal-header .close:focus {
  outline: none;
}
.cid-uwNdAoatzR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwNdAoatzR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwNdAoatzR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoatzR .modal-body {
    padding: 1rem;
  }
}
.cid-uwNdAoatzR .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-uwNdAoatzR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoatzR .modal-footer {
    padding: 1rem;
  }
}
.cid-uwNdAoatzR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwNdAoatzR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwNdAoatzR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwNdAoatzR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwNdAoatzR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwNdAoatzR .modal-lg,
  .cid-uwNdAoatzR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwNdAoatzR .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwNdAoatzR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwNdAoatzR .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-uwNdAoatzR .form-group {
  margin-bottom: 1rem;
}
.cid-uwNdAoatzR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwNdAoatzR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwNdAoatzR .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-uwNdAoatzR .mbr-section-btn {
  margin: 0;
}
.cid-uwNdAoatzR .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMgzi2.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMgzi2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMgzi2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMgzi2 .modal-content,
.cid-uO9WTMgzi2 .modal-dialog {
  height: auto;
}
.cid-uO9WTMgzi2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMgzi2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMgzi2 .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMgzi2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMgzi2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMgzi2 .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-uO9WTMgzi2 .mbr-text {
  text-align: center;
}
.cid-uO9WTMgzi2 .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMgzi2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMgzi2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMgzi2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMgzi2 .modal-open {
  overflow: hidden;
}
.cid-uO9WTMgzi2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMgzi2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMgzi2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMgzi2 .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-uO9WTMgzi2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMgzi2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMgzi2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMgzi2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMgzi2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMgzi2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMgzi2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMgzi2 .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMgzi2 .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-uO9WTMgzi2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMgzi2 .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMgzi2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMgzi2 .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMgzi2 .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMgzi2 .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMgzi2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMgzi2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMgzi2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMgzi2 .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMgzi2 .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-uO9WTMgzi2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMgzi2 .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMgzi2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMgzi2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMgzi2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMgzi2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMgzi2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMgzi2 .modal-lg,
  .cid-uO9WTMgzi2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMgzi2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMgzi2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMgzi2 .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-uO9WTMgzi2 .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMgzi2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMgzi2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMgzi2 .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-uO9WTMgzi2 .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMgzi2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-usRdn8dVBq .dropdown-menu {
  padding: 12px 0;
}
.cid-usRdn8dVBq .dropdown-item:hover,
.cid-usRdn8dVBq .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-usRdn8dVBq .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-usRdn8dVBq .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-usRdn8dVBq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-usRdn8dVBq .nav-link {
  position: relative;
}
.cid-usRdn8dVBq .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-usRdn8dVBq .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-usRdn8dVBq .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-usRdn8dVBq .dropdown-menu,
.cid-usRdn8dVBq .navbar.opened {
  background: #1f0931 !important;
}
.cid-usRdn8dVBq .nav-item:focus,
.cid-usRdn8dVBq .nav-link:focus {
  outline: none;
}
.cid-usRdn8dVBq .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-usRdn8dVBq .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-usRdn8dVBq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-usRdn8dVBq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-usRdn8dVBq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-usRdn8dVBq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-usRdn8dVBq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-usRdn8dVBq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-usRdn8dVBq .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-usRdn8dVBq .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-usRdn8dVBq .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-usRdn8dVBq .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-usRdn8dVBq .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-usRdn8dVBq .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-usRdn8dVBq .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-usRdn8dVBq .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-usRdn8dVBq .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-usRdn8dVBq .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-usRdn8dVBq .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-usRdn8dVBq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-usRdn8dVBq .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-usRdn8dVBq .navbar.collapsed.opened {
  position: fixed;
}
.cid-usRdn8dVBq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-usRdn8dVBq .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-usRdn8dVBq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-usRdn8dVBq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-usRdn8dVBq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-usRdn8dVBq .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: 55%;
}
.cid-usRdn8dVBq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-usRdn8dVBq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-usRdn8dVBq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-usRdn8dVBq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-usRdn8dVBq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-usRdn8dVBq .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-usRdn8dVBq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-usRdn8dVBq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-usRdn8dVBq .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: 41%;
  }
  .cid-usRdn8dVBq .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-usRdn8dVBq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-usRdn8dVBq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-usRdn8dVBq .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-usRdn8dVBq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-usRdn8dVBq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-usRdn8dVBq .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-usRdn8dVBq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-usRdn8dVBq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-usRdn8dVBq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-usRdn8dVBq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-usRdn8dVBq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-usRdn8dVBq .dropdown-item.active,
.cid-usRdn8dVBq .dropdown-item:active {
  background-color: transparent;
}
.cid-usRdn8dVBq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-usRdn8dVBq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-usRdn8dVBq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-usRdn8dVBq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-usRdn8dVBq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-usRdn8dVBq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-usRdn8dVBq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-usRdn8dVBq .navbar-buttons {
  text-align: center;
}
.cid-usRdn8dVBq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-usRdn8dVBq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-usRdn8dVBq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-usRdn8dVBq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usRdn8dVBq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usRdn8dVBq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-usRdn8dVBq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usRdn8dVBq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-usRdn8dVBq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-usRdn8dVBq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usRdn8dVBq .navbar-dropdown {
  position: fixed;
}
.cid-usRdn8dVBq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-usRdn8dVBq .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-usRdn8dVBq .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-usRdn8dVBq .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-usRdn8dVBq .navbar {
    height: 77px;
  }
  .cid-usRdn8dVBq .navbar.opened {
    height: auto;
  }
  .cid-usRdn8dVBq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usRdn8IX89 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-usRdn8IX89 .container-fluid {
  padding: 0 3rem;
}
.cid-usRdn8IX89 .media-container-column {
  padding: 0 2rem;
}
.cid-usRdn8IX89 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-usRdn8IX89 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-usRdn8XwoU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-usRdn8XwoU .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-usRdn8XwoU img {
    width: 90%;
  }
}
.cid-usRdn8XwoU .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-usRdn8XwoU .items {
  margin-bottom: 0;
}
.cid-usRdn8XwoU .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-usRdn8XwoU .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-usRdn8XwoU .soc-item:hover span {
  color: #38346b !important;
}
.cid-usRdn8XwoU .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-usRdn8XwoU .social-list {
    justify-content: center;
  }
}
.cid-usRdn8XwoU .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-usRhvDSa2Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usRhvDSa2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-usRhvDSa2Q img {
  border-radius: 2rem;
  margin-top: 6rem;
  box-shadow: 0 0 100px 0 #38346b;
}
@media (max-width: 767px) {
  .cid-usRhvDSa2Q img {
    margin-top: 2rem;
  }
}
.cid-usRhvDSa2Q .row {
  background: #111019;
  border-radius: 4rem;
  padding: 8rem 1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-usRhvDSa2Q .row {
    border-radius: 2rem;
    padding: 2rem 1rem;
  }
}
.cid-usRhvDSa2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usRhvDSa2Q .mbr-text,
.cid-usRhvDSa2Q .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-usRhvDSa2Q .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-usRhvDSa2Q .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-usRdnbvuzR {
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-usRdnbvuzR .mbr-fallback-image.disabled {
  display: none;
}
.cid-usRdnbvuzR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-usRdnbvuzR .container {
    padding: 0 16px;
  }
}
.cid-usRdnbvuzR .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-usRdnbvuzR .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-usRdnbvuzR .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-usRdnbvuzR .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-usRdnbvuzR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-usRdnbvuzR .mbr-text {
  color: #ffffff;
}
.cid-usRdnbvuzR .mbr-text,
.cid-usRdnbvuzR .mbr-section-btn {
  text-align: center;
  color: #410078;
}
.cid-usRdnbvuzR .mbr-section-title,
.cid-usRdnbvuzR .title-wrap {
  color: #410078;
}
.cid-usRdnbPonj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-usRdnbPonj .container-fluid {
  padding: 0 3rem;
}
.cid-usRdnbPonj .media-container-column {
  padding: 0 2rem;
}
.cid-usRdnbPonj .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-usRdnbPonj .container-fluid {
    padding: 0 1rem;
  }
}
.cid-usRdnc7QQI.popup-builder {
  background-color: #ffffff;
}
.cid-usRdnc7QQI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usRdnc7QQI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usRdnc7QQI .modal-content,
.cid-usRdnc7QQI .modal-dialog {
  height: auto;
}
.cid-usRdnc7QQI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usRdnc7QQI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usRdnc7QQI .form-wrapper .mbr-form .form-group,
  .cid-usRdnc7QQI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usRdnc7QQI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usRdnc7QQI .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-usRdnc7QQI .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-usRdnc7QQI .pt-0 {
  padding-top: 0 !important;
}
.cid-usRdnc7QQI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usRdnc7QQI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usRdnc7QQI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usRdnc7QQI .modal-open {
  overflow: hidden;
}
.cid-usRdnc7QQI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usRdnc7QQI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usRdnc7QQI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usRdnc7QQI .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-usRdnc7QQI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usRdnc7QQI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usRdnc7QQI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usRdnc7QQI .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usRdnc7QQI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usRdnc7QQI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usRdnc7QQI .modal-backdrop.fade {
  opacity: 0;
}
.cid-usRdnc7QQI .modal-backdrop.show {
  opacity: .5;
}
.cid-usRdnc7QQI .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-usRdnc7QQI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdnc7QQI .modal-header {
    padding: 1rem;
  }
}
.cid-usRdnc7QQI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usRdnc7QQI .modal-header .close svg {
  fill: #5849aa;
}
.cid-usRdnc7QQI .modal-header .close:hover {
  opacity: 1;
}
.cid-usRdnc7QQI .modal-header .close:focus {
  outline: none;
}
.cid-usRdnc7QQI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-usRdnc7QQI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usRdnc7QQI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdnc7QQI .modal-body {
    padding: 1rem;
  }
}
.cid-usRdnc7QQI .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-usRdnc7QQI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdnc7QQI .modal-footer {
    padding: 1rem;
  }
}
.cid-usRdnc7QQI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usRdnc7QQI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usRdnc7QQI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usRdnc7QQI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usRdnc7QQI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usRdnc7QQI .modal-lg,
  .cid-usRdnc7QQI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usRdnc7QQI .modal-xl {
    max-width: 1140px;
  }
}
.cid-usRdnc7QQI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usRdnc7QQI .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-usRdnc7QQI .form-group {
  margin-bottom: 1rem;
}
.cid-usRdnc7QQI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usRdnc7QQI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usRdnc7QQI .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-usRdnc7QQI .mbr-section-btn {
  margin: 0;
}
.cid-usRdnc7QQI .mbr-section-btn .btn {
  margin: 0;
}
.cid-usRdncxt4D.popup-builder {
  background-color: #ffffff;
}
.cid-usRdncxt4D.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usRdncxt4D.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usRdncxt4D .modal-content,
.cid-usRdncxt4D .modal-dialog {
  height: auto;
}
.cid-usRdncxt4D .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usRdncxt4D .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usRdncxt4D .form-wrapper .mbr-form .form-group,
  .cid-usRdncxt4D .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usRdncxt4D .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usRdncxt4D .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-usRdncxt4D .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-usRdncxt4D .pt-0 {
  padding-top: 0 !important;
}
.cid-usRdncxt4D .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usRdncxt4D .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usRdncxt4D .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usRdncxt4D .modal-open {
  overflow: hidden;
}
.cid-usRdncxt4D .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usRdncxt4D .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usRdncxt4D .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usRdncxt4D .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-usRdncxt4D .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usRdncxt4D .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usRdncxt4D .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usRdncxt4D .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usRdncxt4D .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usRdncxt4D .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usRdncxt4D .modal-backdrop.fade {
  opacity: 0;
}
.cid-usRdncxt4D .modal-backdrop.show {
  opacity: .5;
}
.cid-usRdncxt4D .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-usRdncxt4D .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdncxt4D .modal-header {
    padding: 1rem;
  }
}
.cid-usRdncxt4D .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usRdncxt4D .modal-header .close svg {
  fill: #611750;
}
.cid-usRdncxt4D .modal-header .close:hover {
  opacity: 1;
}
.cid-usRdncxt4D .modal-header .close:focus {
  outline: none;
}
.cid-usRdncxt4D .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-usRdncxt4D .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usRdncxt4D .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdncxt4D .modal-body {
    padding: 1rem;
  }
}
.cid-usRdncxt4D .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-usRdncxt4D .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdncxt4D .modal-footer {
    padding: 1rem;
  }
}
.cid-usRdncxt4D .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usRdncxt4D .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usRdncxt4D .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usRdncxt4D .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usRdncxt4D .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usRdncxt4D .modal-lg,
  .cid-usRdncxt4D .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usRdncxt4D .modal-xl {
    max-width: 1140px;
  }
}
.cid-usRdncxt4D .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usRdncxt4D .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-usRdncxt4D .form-group {
  margin-bottom: 1rem;
}
.cid-usRdncxt4D .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usRdncxt4D .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usRdncxt4D .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-usRdncxt4D .mbr-section-btn {
  margin: 0;
}
.cid-usRdncxt4D .mbr-section-btn .btn {
  margin: 0;
}
.cid-usRdndc0JE.popup-builder {
  background-color: #ffffff;
}
.cid-usRdndc0JE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usRdndc0JE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usRdndc0JE .modal-content,
.cid-usRdndc0JE .modal-dialog {
  height: auto;
}
.cid-usRdndc0JE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usRdndc0JE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usRdndc0JE .form-wrapper .mbr-form .form-group,
  .cid-usRdndc0JE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usRdndc0JE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usRdndc0JE .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-usRdndc0JE .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-usRdndc0JE .pt-0 {
  padding-top: 0 !important;
}
.cid-usRdndc0JE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usRdndc0JE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usRdndc0JE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usRdndc0JE .modal-open {
  overflow: hidden;
}
.cid-usRdndc0JE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usRdndc0JE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usRdndc0JE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usRdndc0JE .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-usRdndc0JE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usRdndc0JE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usRdndc0JE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usRdndc0JE .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usRdndc0JE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usRdndc0JE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usRdndc0JE .modal-backdrop.fade {
  opacity: 0;
}
.cid-usRdndc0JE .modal-backdrop.show {
  opacity: .5;
}
.cid-usRdndc0JE .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-usRdndc0JE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdndc0JE .modal-header {
    padding: 1rem;
  }
}
.cid-usRdndc0JE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usRdndc0JE .modal-header .close svg {
  fill: #59307c;
}
.cid-usRdndc0JE .modal-header .close:hover {
  opacity: 1;
}
.cid-usRdndc0JE .modal-header .close:focus {
  outline: none;
}
.cid-usRdndc0JE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-usRdndc0JE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usRdndc0JE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdndc0JE .modal-body {
    padding: 1rem;
  }
}
.cid-usRdndc0JE .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-usRdndc0JE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdndc0JE .modal-footer {
    padding: 1rem;
  }
}
.cid-usRdndc0JE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usRdndc0JE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usRdndc0JE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usRdndc0JE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usRdndc0JE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usRdndc0JE .modal-lg,
  .cid-usRdndc0JE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usRdndc0JE .modal-xl {
    max-width: 1140px;
  }
}
.cid-usRdndc0JE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usRdndc0JE .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-usRdndc0JE .form-group {
  margin-bottom: 1rem;
}
.cid-usRdndc0JE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usRdndc0JE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usRdndc0JE .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-usRdndc0JE .mbr-section-btn {
  margin: 0;
}
.cid-usRdndc0JE .mbr-section-btn .btn {
  margin: 0;
}
.cid-usRdndSlcj.popup-builder {
  background-color: #ffffff;
}
.cid-usRdndSlcj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usRdndSlcj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usRdndSlcj .modal-content,
.cid-usRdndSlcj .modal-dialog {
  height: auto;
}
.cid-usRdndSlcj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usRdndSlcj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usRdndSlcj .form-wrapper .mbr-form .form-group,
  .cid-usRdndSlcj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usRdndSlcj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usRdndSlcj .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-usRdndSlcj .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-usRdndSlcj .pt-0 {
  padding-top: 0 !important;
}
.cid-usRdndSlcj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usRdndSlcj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usRdndSlcj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usRdndSlcj .modal-open {
  overflow: hidden;
}
.cid-usRdndSlcj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usRdndSlcj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usRdndSlcj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usRdndSlcj .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-usRdndSlcj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usRdndSlcj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usRdndSlcj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usRdndSlcj .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usRdndSlcj .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usRdndSlcj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usRdndSlcj .modal-backdrop.fade {
  opacity: 0;
}
.cid-usRdndSlcj .modal-backdrop.show {
  opacity: .5;
}
.cid-usRdndSlcj .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-usRdndSlcj .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdndSlcj .modal-header {
    padding: 1rem;
  }
}
.cid-usRdndSlcj .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usRdndSlcj .modal-header .close svg {
  fill: #ffffff;
}
.cid-usRdndSlcj .modal-header .close:hover {
  opacity: 1;
}
.cid-usRdndSlcj .modal-header .close:focus {
  outline: none;
}
.cid-usRdndSlcj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-usRdndSlcj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usRdndSlcj .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdndSlcj .modal-body {
    padding: 1rem;
  }
}
.cid-usRdndSlcj .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-usRdndSlcj .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRdndSlcj .modal-footer {
    padding: 1rem;
  }
}
.cid-usRdndSlcj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usRdndSlcj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usRdndSlcj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usRdndSlcj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usRdndSlcj .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usRdndSlcj .modal-lg,
  .cid-usRdndSlcj .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usRdndSlcj .modal-xl {
    max-width: 1140px;
  }
}
.cid-usRdndSlcj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usRdndSlcj .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-usRdndSlcj .form-group {
  margin-bottom: 1rem;
}
.cid-usRdndSlcj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usRdndSlcj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usRdndSlcj .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-usRdndSlcj .mbr-section-btn {
  margin: 0;
}
.cid-usRdndSlcj .mbr-section-btn .btn {
  margin: 0;
}
.cid-uuldH5JwWa.popup-builder {
  background-color: #ffffff;
}
.cid-uuldH5JwWa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uuldH5JwWa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uuldH5JwWa .modal-content,
.cid-uuldH5JwWa .modal-dialog {
  height: auto;
}
.cid-uuldH5JwWa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uuldH5JwWa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uuldH5JwWa .form-wrapper .mbr-form .form-group,
  .cid-uuldH5JwWa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uuldH5JwWa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uuldH5JwWa .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-uuldH5JwWa .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uuldH5JwWa .pt-0 {
  padding-top: 0 !important;
}
.cid-uuldH5JwWa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uuldH5JwWa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uuldH5JwWa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uuldH5JwWa .modal-open {
  overflow: hidden;
}
.cid-uuldH5JwWa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uuldH5JwWa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uuldH5JwWa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uuldH5JwWa .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-uuldH5JwWa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uuldH5JwWa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uuldH5JwWa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uuldH5JwWa .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uuldH5JwWa .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uuldH5JwWa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uuldH5JwWa .modal-backdrop.fade {
  opacity: 0;
}
.cid-uuldH5JwWa .modal-backdrop.show {
  opacity: .5;
}
.cid-uuldH5JwWa .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-uuldH5JwWa .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uuldH5JwWa .modal-header {
    padding: 1rem;
  }
}
.cid-uuldH5JwWa .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uuldH5JwWa .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uuldH5JwWa .modal-header .close:hover {
  opacity: 1;
}
.cid-uuldH5JwWa .modal-header .close:focus {
  outline: none;
}
.cid-uuldH5JwWa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uuldH5JwWa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uuldH5JwWa .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuldH5JwWa .modal-body {
    padding: 1rem;
  }
}
.cid-uuldH5JwWa .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-uuldH5JwWa .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuldH5JwWa .modal-footer {
    padding: 1rem;
  }
}
.cid-uuldH5JwWa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uuldH5JwWa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uuldH5JwWa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uuldH5JwWa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uuldH5JwWa .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uuldH5JwWa .modal-lg,
  .cid-uuldH5JwWa .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uuldH5JwWa .modal-xl {
    max-width: 1140px;
  }
}
.cid-uuldH5JwWa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uuldH5JwWa .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-uuldH5JwWa .form-group {
  margin-bottom: 1rem;
}
.cid-uuldH5JwWa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uuldH5JwWa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uuldH5JwWa .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-uuldH5JwWa .mbr-section-btn {
  margin: 0;
}
.cid-uuldH5JwWa .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMggGC.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMggGC.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMggGC.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMggGC .modal-content,
.cid-uO9WTMggGC .modal-dialog {
  height: auto;
}
.cid-uO9WTMggGC .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMggGC .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMggGC .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMggGC .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMggGC .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMggGC .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-uO9WTMggGC .mbr-text {
  text-align: center;
}
.cid-uO9WTMggGC .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMggGC .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMggGC .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMggGC .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMggGC .modal-open {
  overflow: hidden;
}
.cid-uO9WTMggGC .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMggGC .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMggGC .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMggGC .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-uO9WTMggGC .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMggGC .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMggGC .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMggGC .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMggGC .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMggGC .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMggGC .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMggGC .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMggGC .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-uO9WTMggGC .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMggGC .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMggGC .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMggGC .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMggGC .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMggGC .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMggGC .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMggGC .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMggGC .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMggGC .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMggGC .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-uO9WTMggGC .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMggGC .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMggGC .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMggGC .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMggGC .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMggGC .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMggGC .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMggGC .modal-lg,
  .cid-uO9WTMggGC .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMggGC .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMggGC .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMggGC .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-uO9WTMggGC .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMggGC .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMggGC .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMggGC .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-uO9WTMggGC .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMggGC .mbr-section-btn .btn {
  margin: 0;
}
.cid-usRlp4iW6V .dropdown-menu {
  padding: 12px 0;
}
.cid-usRlp4iW6V .dropdown-item:hover,
.cid-usRlp4iW6V .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-usRlp4iW6V .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-usRlp4iW6V .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-usRlp4iW6V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-usRlp4iW6V .nav-link {
  position: relative;
}
.cid-usRlp4iW6V .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-usRlp4iW6V .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-usRlp4iW6V .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-usRlp4iW6V .dropdown-menu,
.cid-usRlp4iW6V .navbar.opened {
  background: #1f0931 !important;
}
.cid-usRlp4iW6V .nav-item:focus,
.cid-usRlp4iW6V .nav-link:focus {
  outline: none;
}
.cid-usRlp4iW6V .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-usRlp4iW6V .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-usRlp4iW6V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-usRlp4iW6V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-usRlp4iW6V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-usRlp4iW6V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-usRlp4iW6V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-usRlp4iW6V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-usRlp4iW6V .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-usRlp4iW6V .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-usRlp4iW6V .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-usRlp4iW6V .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-usRlp4iW6V .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-usRlp4iW6V .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-usRlp4iW6V .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-usRlp4iW6V .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-usRlp4iW6V .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-usRlp4iW6V .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-usRlp4iW6V .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-usRlp4iW6V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-usRlp4iW6V .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-usRlp4iW6V .navbar.collapsed.opened {
  position: fixed;
}
.cid-usRlp4iW6V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-usRlp4iW6V .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-usRlp4iW6V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-usRlp4iW6V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-usRlp4iW6V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-usRlp4iW6V .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: 55%;
}
.cid-usRlp4iW6V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-usRlp4iW6V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-usRlp4iW6V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-usRlp4iW6V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-usRlp4iW6V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-usRlp4iW6V .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-usRlp4iW6V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-usRlp4iW6V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-usRlp4iW6V .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: 41%;
  }
  .cid-usRlp4iW6V .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-usRlp4iW6V .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-usRlp4iW6V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-usRlp4iW6V .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-usRlp4iW6V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-usRlp4iW6V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-usRlp4iW6V .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-usRlp4iW6V .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-usRlp4iW6V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-usRlp4iW6V .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-usRlp4iW6V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-usRlp4iW6V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-usRlp4iW6V .dropdown-item.active,
.cid-usRlp4iW6V .dropdown-item:active {
  background-color: transparent;
}
.cid-usRlp4iW6V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-usRlp4iW6V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-usRlp4iW6V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-usRlp4iW6V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-usRlp4iW6V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-usRlp4iW6V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-usRlp4iW6V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-usRlp4iW6V .navbar-buttons {
  text-align: center;
}
.cid-usRlp4iW6V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-usRlp4iW6V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-usRlp4iW6V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-usRlp4iW6V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usRlp4iW6V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usRlp4iW6V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-usRlp4iW6V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usRlp4iW6V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-usRlp4iW6V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-usRlp4iW6V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usRlp4iW6V .navbar-dropdown {
  position: fixed;
}
.cid-usRlp4iW6V a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-usRlp4iW6V .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-usRlp4iW6V .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-usRlp4iW6V .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-usRlp4iW6V .navbar {
    height: 77px;
  }
  .cid-usRlp4iW6V .navbar.opened {
    height: auto;
  }
  .cid-usRlp4iW6V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usRlp55O3l {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-usRlp55O3l .container-fluid {
  padding: 0 3rem;
}
.cid-usRlp55O3l .media-container-column {
  padding: 0 2rem;
}
.cid-usRlp55O3l .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-usRlp55O3l .container-fluid {
    padding: 0 1rem;
  }
}
.cid-usRlp5zD8I {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-usRlp5zD8I .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-usRlp5zD8I img {
    width: 90%;
  }
}
.cid-usRlp5zD8I .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-usRlp5zD8I .items {
  margin-bottom: 0;
}
.cid-usRlp5zD8I .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-usRlp5zD8I .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-usRlp5zD8I .soc-item:hover span {
  color: #38346b !important;
}
.cid-usRlp5zD8I .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-usRlp5zD8I .social-list {
    justify-content: center;
  }
}
.cid-usRlp5zD8I .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-usRlp6beI5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-usRlp6beI5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usRlp6beI5 img {
  border-radius: 2rem;
  margin-top: 6rem;
  box-shadow: 0 0 100px 0 #38346b;
}
@media (max-width: 767px) {
  .cid-usRlp6beI5 img {
    margin-top: 2rem;
  }
}
.cid-usRlp6beI5 .row {
  background: #111019;
  border-radius: 4rem;
  padding: 8rem 1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-usRlp6beI5 .row {
    border-radius: 2rem;
    padding: 2rem 1rem;
  }
}
.cid-usRlp6beI5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usRlp6beI5 .mbr-text,
.cid-usRlp6beI5 .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-usRlp6beI5 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-usRlp6beI5 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-usRlp6Prf5 {
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-usRlp6Prf5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usRlp6Prf5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-usRlp6Prf5 .container {
    padding: 0 16px;
  }
}
.cid-usRlp6Prf5 .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-usRlp6Prf5 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-usRlp6Prf5 .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-usRlp6Prf5 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-usRlp6Prf5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-usRlp6Prf5 .mbr-text {
  color: #ffffff;
}
.cid-usRlp6Prf5 .mbr-text,
.cid-usRlp6Prf5 .mbr-section-btn {
  text-align: center;
  color: #410078;
}
.cid-usRlp6Prf5 .mbr-section-title,
.cid-usRlp6Prf5 .title-wrap {
  color: #410078;
}
.cid-usRlp7l8a8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-usRlp7l8a8 .container-fluid {
  padding: 0 3rem;
}
.cid-usRlp7l8a8 .media-container-column {
  padding: 0 2rem;
}
.cid-usRlp7l8a8 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-usRlp7l8a8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-usRlp7HfPk.popup-builder {
  background-color: #ffffff;
}
.cid-usRlp7HfPk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usRlp7HfPk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usRlp7HfPk .modal-content,
.cid-usRlp7HfPk .modal-dialog {
  height: auto;
}
.cid-usRlp7HfPk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usRlp7HfPk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usRlp7HfPk .form-wrapper .mbr-form .form-group,
  .cid-usRlp7HfPk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usRlp7HfPk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usRlp7HfPk .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-usRlp7HfPk .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-usRlp7HfPk .pt-0 {
  padding-top: 0 !important;
}
.cid-usRlp7HfPk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usRlp7HfPk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usRlp7HfPk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usRlp7HfPk .modal-open {
  overflow: hidden;
}
.cid-usRlp7HfPk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usRlp7HfPk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usRlp7HfPk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usRlp7HfPk .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-usRlp7HfPk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usRlp7HfPk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usRlp7HfPk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usRlp7HfPk .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usRlp7HfPk .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usRlp7HfPk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usRlp7HfPk .modal-backdrop.fade {
  opacity: 0;
}
.cid-usRlp7HfPk .modal-backdrop.show {
  opacity: .5;
}
.cid-usRlp7HfPk .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-usRlp7HfPk .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp7HfPk .modal-header {
    padding: 1rem;
  }
}
.cid-usRlp7HfPk .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usRlp7HfPk .modal-header .close svg {
  fill: #5849aa;
}
.cid-usRlp7HfPk .modal-header .close:hover {
  opacity: 1;
}
.cid-usRlp7HfPk .modal-header .close:focus {
  outline: none;
}
.cid-usRlp7HfPk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-usRlp7HfPk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usRlp7HfPk .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp7HfPk .modal-body {
    padding: 1rem;
  }
}
.cid-usRlp7HfPk .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-usRlp7HfPk .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp7HfPk .modal-footer {
    padding: 1rem;
  }
}
.cid-usRlp7HfPk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usRlp7HfPk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usRlp7HfPk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usRlp7HfPk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usRlp7HfPk .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usRlp7HfPk .modal-lg,
  .cid-usRlp7HfPk .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usRlp7HfPk .modal-xl {
    max-width: 1140px;
  }
}
.cid-usRlp7HfPk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usRlp7HfPk .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-usRlp7HfPk .form-group {
  margin-bottom: 1rem;
}
.cid-usRlp7HfPk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usRlp7HfPk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usRlp7HfPk .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-usRlp7HfPk .mbr-section-btn {
  margin: 0;
}
.cid-usRlp7HfPk .mbr-section-btn .btn {
  margin: 0;
}
.cid-usRlp8i29D.popup-builder {
  background-color: #ffffff;
}
.cid-usRlp8i29D.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usRlp8i29D.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usRlp8i29D .modal-content,
.cid-usRlp8i29D .modal-dialog {
  height: auto;
}
.cid-usRlp8i29D .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usRlp8i29D .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usRlp8i29D .form-wrapper .mbr-form .form-group,
  .cid-usRlp8i29D .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usRlp8i29D .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usRlp8i29D .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-usRlp8i29D .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-usRlp8i29D .pt-0 {
  padding-top: 0 !important;
}
.cid-usRlp8i29D .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usRlp8i29D .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usRlp8i29D .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usRlp8i29D .modal-open {
  overflow: hidden;
}
.cid-usRlp8i29D .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usRlp8i29D .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usRlp8i29D .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usRlp8i29D .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-usRlp8i29D .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usRlp8i29D .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usRlp8i29D .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usRlp8i29D .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usRlp8i29D .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usRlp8i29D .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usRlp8i29D .modal-backdrop.fade {
  opacity: 0;
}
.cid-usRlp8i29D .modal-backdrop.show {
  opacity: .5;
}
.cid-usRlp8i29D .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-usRlp8i29D .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp8i29D .modal-header {
    padding: 1rem;
  }
}
.cid-usRlp8i29D .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usRlp8i29D .modal-header .close svg {
  fill: #611750;
}
.cid-usRlp8i29D .modal-header .close:hover {
  opacity: 1;
}
.cid-usRlp8i29D .modal-header .close:focus {
  outline: none;
}
.cid-usRlp8i29D .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-usRlp8i29D .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usRlp8i29D .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp8i29D .modal-body {
    padding: 1rem;
  }
}
.cid-usRlp8i29D .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-usRlp8i29D .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp8i29D .modal-footer {
    padding: 1rem;
  }
}
.cid-usRlp8i29D .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usRlp8i29D .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usRlp8i29D .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usRlp8i29D .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usRlp8i29D .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usRlp8i29D .modal-lg,
  .cid-usRlp8i29D .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usRlp8i29D .modal-xl {
    max-width: 1140px;
  }
}
.cid-usRlp8i29D .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usRlp8i29D .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-usRlp8i29D .form-group {
  margin-bottom: 1rem;
}
.cid-usRlp8i29D .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usRlp8i29D .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usRlp8i29D .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-usRlp8i29D .mbr-section-btn {
  margin: 0;
}
.cid-usRlp8i29D .mbr-section-btn .btn {
  margin: 0;
}
.cid-usRlp8So2V.popup-builder {
  background-color: #ffffff;
}
.cid-usRlp8So2V.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usRlp8So2V.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usRlp8So2V .modal-content,
.cid-usRlp8So2V .modal-dialog {
  height: auto;
}
.cid-usRlp8So2V .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usRlp8So2V .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usRlp8So2V .form-wrapper .mbr-form .form-group,
  .cid-usRlp8So2V .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usRlp8So2V .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usRlp8So2V .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-usRlp8So2V .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-usRlp8So2V .pt-0 {
  padding-top: 0 !important;
}
.cid-usRlp8So2V .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usRlp8So2V .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usRlp8So2V .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usRlp8So2V .modal-open {
  overflow: hidden;
}
.cid-usRlp8So2V .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usRlp8So2V .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usRlp8So2V .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usRlp8So2V .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-usRlp8So2V .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usRlp8So2V .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usRlp8So2V .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usRlp8So2V .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usRlp8So2V .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usRlp8So2V .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usRlp8So2V .modal-backdrop.fade {
  opacity: 0;
}
.cid-usRlp8So2V .modal-backdrop.show {
  opacity: .5;
}
.cid-usRlp8So2V .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-usRlp8So2V .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp8So2V .modal-header {
    padding: 1rem;
  }
}
.cid-usRlp8So2V .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usRlp8So2V .modal-header .close svg {
  fill: #59307c;
}
.cid-usRlp8So2V .modal-header .close:hover {
  opacity: 1;
}
.cid-usRlp8So2V .modal-header .close:focus {
  outline: none;
}
.cid-usRlp8So2V .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-usRlp8So2V .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usRlp8So2V .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp8So2V .modal-body {
    padding: 1rem;
  }
}
.cid-usRlp8So2V .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-usRlp8So2V .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp8So2V .modal-footer {
    padding: 1rem;
  }
}
.cid-usRlp8So2V .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usRlp8So2V .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usRlp8So2V .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usRlp8So2V .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usRlp8So2V .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usRlp8So2V .modal-lg,
  .cid-usRlp8So2V .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usRlp8So2V .modal-xl {
    max-width: 1140px;
  }
}
.cid-usRlp8So2V .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usRlp8So2V .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-usRlp8So2V .form-group {
  margin-bottom: 1rem;
}
.cid-usRlp8So2V .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usRlp8So2V .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usRlp8So2V .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-usRlp8So2V .mbr-section-btn {
  margin: 0;
}
.cid-usRlp8So2V .mbr-section-btn .btn {
  margin: 0;
}
.cid-usRlp9tUcJ.popup-builder {
  background-color: #ffffff;
}
.cid-usRlp9tUcJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usRlp9tUcJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usRlp9tUcJ .modal-content,
.cid-usRlp9tUcJ .modal-dialog {
  height: auto;
}
.cid-usRlp9tUcJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usRlp9tUcJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usRlp9tUcJ .form-wrapper .mbr-form .form-group,
  .cid-usRlp9tUcJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usRlp9tUcJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usRlp9tUcJ .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-usRlp9tUcJ .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-usRlp9tUcJ .pt-0 {
  padding-top: 0 !important;
}
.cid-usRlp9tUcJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usRlp9tUcJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usRlp9tUcJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usRlp9tUcJ .modal-open {
  overflow: hidden;
}
.cid-usRlp9tUcJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usRlp9tUcJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usRlp9tUcJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usRlp9tUcJ .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-usRlp9tUcJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usRlp9tUcJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usRlp9tUcJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usRlp9tUcJ .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usRlp9tUcJ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usRlp9tUcJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usRlp9tUcJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-usRlp9tUcJ .modal-backdrop.show {
  opacity: .5;
}
.cid-usRlp9tUcJ .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-usRlp9tUcJ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp9tUcJ .modal-header {
    padding: 1rem;
  }
}
.cid-usRlp9tUcJ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usRlp9tUcJ .modal-header .close svg {
  fill: #ffffff;
}
.cid-usRlp9tUcJ .modal-header .close:hover {
  opacity: 1;
}
.cid-usRlp9tUcJ .modal-header .close:focus {
  outline: none;
}
.cid-usRlp9tUcJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-usRlp9tUcJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usRlp9tUcJ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp9tUcJ .modal-body {
    padding: 1rem;
  }
}
.cid-usRlp9tUcJ .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-usRlp9tUcJ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usRlp9tUcJ .modal-footer {
    padding: 1rem;
  }
}
.cid-usRlp9tUcJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usRlp9tUcJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usRlp9tUcJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usRlp9tUcJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usRlp9tUcJ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usRlp9tUcJ .modal-lg,
  .cid-usRlp9tUcJ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usRlp9tUcJ .modal-xl {
    max-width: 1140px;
  }
}
.cid-usRlp9tUcJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usRlp9tUcJ .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-usRlp9tUcJ .form-group {
  margin-bottom: 1rem;
}
.cid-usRlp9tUcJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usRlp9tUcJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usRlp9tUcJ .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-usRlp9tUcJ .mbr-section-btn {
  margin: 0;
}
.cid-usRlp9tUcJ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwNdAobOF5.popup-builder {
  background-color: #ffffff;
}
.cid-uwNdAobOF5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwNdAobOF5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwNdAobOF5 .modal-content,
.cid-uwNdAobOF5 .modal-dialog {
  height: auto;
}
.cid-uwNdAobOF5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwNdAobOF5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwNdAobOF5 .form-wrapper .mbr-form .form-group,
  .cid-uwNdAobOF5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwNdAobOF5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwNdAobOF5 .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-uwNdAobOF5 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwNdAobOF5 .pt-0 {
  padding-top: 0 !important;
}
.cid-uwNdAobOF5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwNdAobOF5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwNdAobOF5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwNdAobOF5 .modal-open {
  overflow: hidden;
}
.cid-uwNdAobOF5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwNdAobOF5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwNdAobOF5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwNdAobOF5 .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-uwNdAobOF5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwNdAobOF5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwNdAobOF5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwNdAobOF5 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwNdAobOF5 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwNdAobOF5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwNdAobOF5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwNdAobOF5 .modal-backdrop.show {
  opacity: .5;
}
.cid-uwNdAobOF5 .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-uwNdAobOF5 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAobOF5 .modal-header {
    padding: 1rem;
  }
}
.cid-uwNdAobOF5 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwNdAobOF5 .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwNdAobOF5 .modal-header .close:hover {
  opacity: 1;
}
.cid-uwNdAobOF5 .modal-header .close:focus {
  outline: none;
}
.cid-uwNdAobOF5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwNdAobOF5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwNdAobOF5 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAobOF5 .modal-body {
    padding: 1rem;
  }
}
.cid-uwNdAobOF5 .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-uwNdAobOF5 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAobOF5 .modal-footer {
    padding: 1rem;
  }
}
.cid-uwNdAobOF5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwNdAobOF5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwNdAobOF5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwNdAobOF5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwNdAobOF5 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwNdAobOF5 .modal-lg,
  .cid-uwNdAobOF5 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwNdAobOF5 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwNdAobOF5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwNdAobOF5 .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-uwNdAobOF5 .form-group {
  margin-bottom: 1rem;
}
.cid-uwNdAobOF5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwNdAobOF5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwNdAobOF5 .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-uwNdAobOF5 .mbr-section-btn {
  margin: 0;
}
.cid-uwNdAobOF5 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMg8pP.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMg8pP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMg8pP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMg8pP .modal-content,
.cid-uO9WTMg8pP .modal-dialog {
  height: auto;
}
.cid-uO9WTMg8pP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMg8pP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMg8pP .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMg8pP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMg8pP .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMg8pP .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-uO9WTMg8pP .mbr-text {
  text-align: center;
}
.cid-uO9WTMg8pP .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMg8pP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMg8pP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMg8pP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMg8pP .modal-open {
  overflow: hidden;
}
.cid-uO9WTMg8pP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMg8pP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMg8pP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMg8pP .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-uO9WTMg8pP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMg8pP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMg8pP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMg8pP .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMg8pP .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMg8pP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMg8pP .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMg8pP .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMg8pP .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-uO9WTMg8pP .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMg8pP .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMg8pP .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMg8pP .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMg8pP .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMg8pP .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMg8pP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMg8pP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMg8pP .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMg8pP .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMg8pP .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-uO9WTMg8pP .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMg8pP .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMg8pP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMg8pP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMg8pP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMg8pP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMg8pP .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMg8pP .modal-lg,
  .cid-uO9WTMg8pP .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMg8pP .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMg8pP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMg8pP .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-uO9WTMg8pP .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMg8pP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMg8pP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMg8pP .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-uO9WTMg8pP .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMg8pP .mbr-section-btn .btn {
  margin: 0;
}
.cid-uuaBBCUqZr .dropdown-menu {
  padding: 12px 0;
}
.cid-uuaBBCUqZr .dropdown-item:hover,
.cid-uuaBBCUqZr .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uuaBBCUqZr .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uuaBBCUqZr .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uuaBBCUqZr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuaBBCUqZr .nav-link {
  position: relative;
}
.cid-uuaBBCUqZr .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uuaBBCUqZr .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuaBBCUqZr .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uuaBBCUqZr .dropdown-menu,
.cid-uuaBBCUqZr .navbar.opened {
  background: #1f0931 !important;
}
.cid-uuaBBCUqZr .nav-item:focus,
.cid-uuaBBCUqZr .nav-link:focus {
  outline: none;
}
.cid-uuaBBCUqZr .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uuaBBCUqZr .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uuaBBCUqZr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uuaBBCUqZr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuaBBCUqZr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uuaBBCUqZr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uuaBBCUqZr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuaBBCUqZr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuaBBCUqZr .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uuaBBCUqZr .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uuaBBCUqZr .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uuaBBCUqZr .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uuaBBCUqZr .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uuaBBCUqZr .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uuaBBCUqZr .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uuaBBCUqZr .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uuaBBCUqZr .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uuaBBCUqZr .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uuaBBCUqZr .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uuaBBCUqZr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuaBBCUqZr .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uuaBBCUqZr .navbar.collapsed.opened {
  position: fixed;
}
.cid-uuaBBCUqZr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uuaBBCUqZr .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uuaBBCUqZr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uuaBBCUqZr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuaBBCUqZr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuaBBCUqZr .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: 55%;
}
.cid-uuaBBCUqZr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuaBBCUqZr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuaBBCUqZr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuaBBCUqZr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuaBBCUqZr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuaBBCUqZr .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uuaBBCUqZr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuaBBCUqZr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuaBBCUqZr .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: 41%;
  }
  .cid-uuaBBCUqZr .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uuaBBCUqZr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uuaBBCUqZr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuaBBCUqZr .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuaBBCUqZr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uuaBBCUqZr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uuaBBCUqZr .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uuaBBCUqZr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uuaBBCUqZr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uuaBBCUqZr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuaBBCUqZr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuaBBCUqZr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuaBBCUqZr .dropdown-item.active,
.cid-uuaBBCUqZr .dropdown-item:active {
  background-color: transparent;
}
.cid-uuaBBCUqZr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuaBBCUqZr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuaBBCUqZr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuaBBCUqZr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uuaBBCUqZr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuaBBCUqZr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuaBBCUqZr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uuaBBCUqZr .navbar-buttons {
  text-align: center;
}
.cid-uuaBBCUqZr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uuaBBCUqZr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uuaBBCUqZr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuaBBCUqZr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuaBBCUqZr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuaBBCUqZr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuaBBCUqZr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuaBBCUqZr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuaBBCUqZr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuaBBCUqZr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuaBBCUqZr .navbar-dropdown {
  position: fixed;
}
.cid-uuaBBCUqZr a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uuaBBCUqZr .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uuaBBCUqZr .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uuaBBCUqZr .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuaBBCUqZr .navbar {
    height: 77px;
  }
  .cid-uuaBBCUqZr .navbar.opened {
    height: auto;
  }
  .cid-uuaBBCUqZr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuaBBDnTJM {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uuaBBDnTJM .container-fluid {
  padding: 0 3rem;
}
.cid-uuaBBDnTJM .media-container-column {
  padding: 0 2rem;
}
.cid-uuaBBDnTJM .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uuaBBDnTJM .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uuaBBDBIIz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uuaBBDBIIz .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uuaBBDBIIz img {
    width: 90%;
  }
}
.cid-uuaBBDBIIz .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uuaBBDBIIz .items {
  margin-bottom: 0;
}
.cid-uuaBBDBIIz .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uuaBBDBIIz .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uuaBBDBIIz .soc-item:hover span {
  color: #38346b !important;
}
.cid-uuaBBDBIIz .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uuaBBDBIIz .social-list {
    justify-content: center;
  }
}
.cid-uuaBBDBIIz .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uuaC1It8r6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/shield-2-1600x1200.jpg");
}
.cid-uuaC1It8r6 .mbr-section-title {
  color: #404040;
}
.cid-uuaC1It8r6 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uuaC1It8r6 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uuaC1It8r6 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uuaC1It8r6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuaC1It8r6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuaC1It8r6 .mbr-section-title,
.cid-uuaC1It8r6 .icon-wrap,
.cid-uuaC1It8r6 .mbr-section-btn {
  color: #d4a4e4;
}
.cid-uuaC1It8r6 .mbr-text,
.cid-uuaC1It8r6 .mbr-section-btn {
  color: #e6eaf1;
}
.cid-uuaBBEeoLI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uuaBBEeoLI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuaBBEeoLI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uuaBBEeoLI .container {
    padding: 0 16px;
  }
}
.cid-uuaBBEeoLI .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uuaBBEeoLI .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uuaBBEeoLI .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uuaBBEeoLI .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uuaBBEeoLI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuaBBEeoLI .mbr-text {
  color: #ffffff;
}
.cid-uuaBBEeoLI .mbr-text,
.cid-uuaBBEeoLI .mbr-section-btn {
  text-align: center;
  color: #f9fafb;
}
.cid-uuaBBEeoLI .mbr-section-title,
.cid-uuaBBEeoLI .title-wrap {
  color: #bdbe5a;
}
.cid-uuaBBEth5C {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uuaBBEth5C .container-fluid {
  padding: 0 3rem;
}
.cid-uuaBBEth5C .media-container-column {
  padding: 0 2rem;
}
.cid-uuaBBEth5C .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uuaBBEth5C .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uuaBBEIIL5.popup-builder {
  background-color: #ffffff;
}
.cid-uuaBBEIIL5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uuaBBEIIL5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uuaBBEIIL5 .modal-content,
.cid-uuaBBEIIL5 .modal-dialog {
  height: auto;
}
.cid-uuaBBEIIL5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uuaBBEIIL5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uuaBBEIIL5 .form-wrapper .mbr-form .form-group,
  .cid-uuaBBEIIL5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uuaBBEIIL5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uuaBBEIIL5 .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-uuaBBEIIL5 .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uuaBBEIIL5 .pt-0 {
  padding-top: 0 !important;
}
.cid-uuaBBEIIL5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uuaBBEIIL5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uuaBBEIIL5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uuaBBEIIL5 .modal-open {
  overflow: hidden;
}
.cid-uuaBBEIIL5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uuaBBEIIL5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uuaBBEIIL5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uuaBBEIIL5 .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-uuaBBEIIL5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uuaBBEIIL5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uuaBBEIIL5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uuaBBEIIL5 .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uuaBBEIIL5 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uuaBBEIIL5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uuaBBEIIL5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uuaBBEIIL5 .modal-backdrop.show {
  opacity: .5;
}
.cid-uuaBBEIIL5 .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-uuaBBEIIL5 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBEIIL5 .modal-header {
    padding: 1rem;
  }
}
.cid-uuaBBEIIL5 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uuaBBEIIL5 .modal-header .close svg {
  fill: #5849aa;
}
.cid-uuaBBEIIL5 .modal-header .close:hover {
  opacity: 1;
}
.cid-uuaBBEIIL5 .modal-header .close:focus {
  outline: none;
}
.cid-uuaBBEIIL5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uuaBBEIIL5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uuaBBEIIL5 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBEIIL5 .modal-body {
    padding: 1rem;
  }
}
.cid-uuaBBEIIL5 .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-uuaBBEIIL5 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBEIIL5 .modal-footer {
    padding: 1rem;
  }
}
.cid-uuaBBEIIL5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uuaBBEIIL5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uuaBBEIIL5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uuaBBEIIL5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uuaBBEIIL5 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uuaBBEIIL5 .modal-lg,
  .cid-uuaBBEIIL5 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uuaBBEIIL5 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uuaBBEIIL5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uuaBBEIIL5 .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-uuaBBEIIL5 .form-group {
  margin-bottom: 1rem;
}
.cid-uuaBBEIIL5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uuaBBEIIL5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uuaBBEIIL5 .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-uuaBBEIIL5 .mbr-section-btn {
  margin: 0;
}
.cid-uuaBBEIIL5 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uuaBBF7lKK.popup-builder {
  background-color: #ffffff;
}
.cid-uuaBBF7lKK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uuaBBF7lKK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uuaBBF7lKK .modal-content,
.cid-uuaBBF7lKK .modal-dialog {
  height: auto;
}
.cid-uuaBBF7lKK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uuaBBF7lKK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uuaBBF7lKK .form-wrapper .mbr-form .form-group,
  .cid-uuaBBF7lKK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uuaBBF7lKK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uuaBBF7lKK .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-uuaBBF7lKK .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uuaBBF7lKK .pt-0 {
  padding-top: 0 !important;
}
.cid-uuaBBF7lKK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uuaBBF7lKK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uuaBBF7lKK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uuaBBF7lKK .modal-open {
  overflow: hidden;
}
.cid-uuaBBF7lKK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uuaBBF7lKK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uuaBBF7lKK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uuaBBF7lKK .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-uuaBBF7lKK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uuaBBF7lKK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uuaBBF7lKK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uuaBBF7lKK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uuaBBF7lKK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uuaBBF7lKK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uuaBBF7lKK .modal-backdrop.fade {
  opacity: 0;
}
.cid-uuaBBF7lKK .modal-backdrop.show {
  opacity: .5;
}
.cid-uuaBBF7lKK .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-uuaBBF7lKK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBF7lKK .modal-header {
    padding: 1rem;
  }
}
.cid-uuaBBF7lKK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uuaBBF7lKK .modal-header .close svg {
  fill: #611750;
}
.cid-uuaBBF7lKK .modal-header .close:hover {
  opacity: 1;
}
.cid-uuaBBF7lKK .modal-header .close:focus {
  outline: none;
}
.cid-uuaBBF7lKK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uuaBBF7lKK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uuaBBF7lKK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBF7lKK .modal-body {
    padding: 1rem;
  }
}
.cid-uuaBBF7lKK .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-uuaBBF7lKK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBF7lKK .modal-footer {
    padding: 1rem;
  }
}
.cid-uuaBBF7lKK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uuaBBF7lKK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uuaBBF7lKK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uuaBBF7lKK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uuaBBF7lKK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uuaBBF7lKK .modal-lg,
  .cid-uuaBBF7lKK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uuaBBF7lKK .modal-xl {
    max-width: 1140px;
  }
}
.cid-uuaBBF7lKK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uuaBBF7lKK .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-uuaBBF7lKK .form-group {
  margin-bottom: 1rem;
}
.cid-uuaBBF7lKK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uuaBBF7lKK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uuaBBF7lKK .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-uuaBBF7lKK .mbr-section-btn {
  margin: 0;
}
.cid-uuaBBF7lKK .mbr-section-btn .btn {
  margin: 0;
}
.cid-uuaBBFxbXo.popup-builder {
  background-color: #ffffff;
}
.cid-uuaBBFxbXo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uuaBBFxbXo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uuaBBFxbXo .modal-content,
.cid-uuaBBFxbXo .modal-dialog {
  height: auto;
}
.cid-uuaBBFxbXo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uuaBBFxbXo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uuaBBFxbXo .form-wrapper .mbr-form .form-group,
  .cid-uuaBBFxbXo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uuaBBFxbXo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uuaBBFxbXo .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-uuaBBFxbXo .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uuaBBFxbXo .pt-0 {
  padding-top: 0 !important;
}
.cid-uuaBBFxbXo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uuaBBFxbXo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uuaBBFxbXo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uuaBBFxbXo .modal-open {
  overflow: hidden;
}
.cid-uuaBBFxbXo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uuaBBFxbXo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uuaBBFxbXo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uuaBBFxbXo .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-uuaBBFxbXo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uuaBBFxbXo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uuaBBFxbXo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uuaBBFxbXo .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uuaBBFxbXo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uuaBBFxbXo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uuaBBFxbXo .modal-backdrop.fade {
  opacity: 0;
}
.cid-uuaBBFxbXo .modal-backdrop.show {
  opacity: .5;
}
.cid-uuaBBFxbXo .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-uuaBBFxbXo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBFxbXo .modal-header {
    padding: 1rem;
  }
}
.cid-uuaBBFxbXo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uuaBBFxbXo .modal-header .close svg {
  fill: #59307c;
}
.cid-uuaBBFxbXo .modal-header .close:hover {
  opacity: 1;
}
.cid-uuaBBFxbXo .modal-header .close:focus {
  outline: none;
}
.cid-uuaBBFxbXo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uuaBBFxbXo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uuaBBFxbXo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBFxbXo .modal-body {
    padding: 1rem;
  }
}
.cid-uuaBBFxbXo .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-uuaBBFxbXo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBFxbXo .modal-footer {
    padding: 1rem;
  }
}
.cid-uuaBBFxbXo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uuaBBFxbXo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uuaBBFxbXo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uuaBBFxbXo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uuaBBFxbXo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uuaBBFxbXo .modal-lg,
  .cid-uuaBBFxbXo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uuaBBFxbXo .modal-xl {
    max-width: 1140px;
  }
}
.cid-uuaBBFxbXo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uuaBBFxbXo .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-uuaBBFxbXo .form-group {
  margin-bottom: 1rem;
}
.cid-uuaBBFxbXo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uuaBBFxbXo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uuaBBFxbXo .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-uuaBBFxbXo .mbr-section-btn {
  margin: 0;
}
.cid-uuaBBFxbXo .mbr-section-btn .btn {
  margin: 0;
}
.cid-uuaBBFYmsm.popup-builder {
  background-color: #ffffff;
}
.cid-uuaBBFYmsm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uuaBBFYmsm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uuaBBFYmsm .modal-content,
.cid-uuaBBFYmsm .modal-dialog {
  height: auto;
}
.cid-uuaBBFYmsm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uuaBBFYmsm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uuaBBFYmsm .form-wrapper .mbr-form .form-group,
  .cid-uuaBBFYmsm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uuaBBFYmsm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uuaBBFYmsm .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-uuaBBFYmsm .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uuaBBFYmsm .pt-0 {
  padding-top: 0 !important;
}
.cid-uuaBBFYmsm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uuaBBFYmsm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uuaBBFYmsm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uuaBBFYmsm .modal-open {
  overflow: hidden;
}
.cid-uuaBBFYmsm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uuaBBFYmsm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uuaBBFYmsm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uuaBBFYmsm .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-uuaBBFYmsm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uuaBBFYmsm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uuaBBFYmsm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uuaBBFYmsm .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uuaBBFYmsm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uuaBBFYmsm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uuaBBFYmsm .modal-backdrop.fade {
  opacity: 0;
}
.cid-uuaBBFYmsm .modal-backdrop.show {
  opacity: .5;
}
.cid-uuaBBFYmsm .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-uuaBBFYmsm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBFYmsm .modal-header {
    padding: 1rem;
  }
}
.cid-uuaBBFYmsm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uuaBBFYmsm .modal-header .close svg {
  fill: #ffffff;
}
.cid-uuaBBFYmsm .modal-header .close:hover {
  opacity: 1;
}
.cid-uuaBBFYmsm .modal-header .close:focus {
  outline: none;
}
.cid-uuaBBFYmsm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uuaBBFYmsm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uuaBBFYmsm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBFYmsm .modal-body {
    padding: 1rem;
  }
}
.cid-uuaBBFYmsm .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-uuaBBFYmsm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuaBBFYmsm .modal-footer {
    padding: 1rem;
  }
}
.cid-uuaBBFYmsm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uuaBBFYmsm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uuaBBFYmsm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uuaBBFYmsm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uuaBBFYmsm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uuaBBFYmsm .modal-lg,
  .cid-uuaBBFYmsm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uuaBBFYmsm .modal-xl {
    max-width: 1140px;
  }
}
.cid-uuaBBFYmsm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uuaBBFYmsm .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-uuaBBFYmsm .form-group {
  margin-bottom: 1rem;
}
.cid-uuaBBFYmsm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uuaBBFYmsm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uuaBBFYmsm .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-uuaBBFYmsm .mbr-section-btn {
  margin: 0;
}
.cid-uuaBBFYmsm .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwNdAobIDx.popup-builder {
  background-color: #ffffff;
}
.cid-uwNdAobIDx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwNdAobIDx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwNdAobIDx .modal-content,
.cid-uwNdAobIDx .modal-dialog {
  height: auto;
}
.cid-uwNdAobIDx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwNdAobIDx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwNdAobIDx .form-wrapper .mbr-form .form-group,
  .cid-uwNdAobIDx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwNdAobIDx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwNdAobIDx .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-uwNdAobIDx .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwNdAobIDx .pt-0 {
  padding-top: 0 !important;
}
.cid-uwNdAobIDx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwNdAobIDx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwNdAobIDx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwNdAobIDx .modal-open {
  overflow: hidden;
}
.cid-uwNdAobIDx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwNdAobIDx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwNdAobIDx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwNdAobIDx .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-uwNdAobIDx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwNdAobIDx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwNdAobIDx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwNdAobIDx .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwNdAobIDx .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwNdAobIDx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwNdAobIDx .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwNdAobIDx .modal-backdrop.show {
  opacity: .5;
}
.cid-uwNdAobIDx .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-uwNdAobIDx .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAobIDx .modal-header {
    padding: 1rem;
  }
}
.cid-uwNdAobIDx .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwNdAobIDx .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwNdAobIDx .modal-header .close:hover {
  opacity: 1;
}
.cid-uwNdAobIDx .modal-header .close:focus {
  outline: none;
}
.cid-uwNdAobIDx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwNdAobIDx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwNdAobIDx .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAobIDx .modal-body {
    padding: 1rem;
  }
}
.cid-uwNdAobIDx .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-uwNdAobIDx .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAobIDx .modal-footer {
    padding: 1rem;
  }
}
.cid-uwNdAobIDx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwNdAobIDx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwNdAobIDx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwNdAobIDx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwNdAobIDx .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwNdAobIDx .modal-lg,
  .cid-uwNdAobIDx .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwNdAobIDx .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwNdAobIDx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwNdAobIDx .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-uwNdAobIDx .form-group {
  margin-bottom: 1rem;
}
.cid-uwNdAobIDx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwNdAobIDx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwNdAobIDx .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-uwNdAobIDx .mbr-section-btn {
  margin: 0;
}
.cid-uwNdAobIDx .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMhKIZ.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMhKIZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMhKIZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMhKIZ .modal-content,
.cid-uO9WTMhKIZ .modal-dialog {
  height: auto;
}
.cid-uO9WTMhKIZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMhKIZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMhKIZ .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMhKIZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMhKIZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMhKIZ .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-uO9WTMhKIZ .mbr-text {
  text-align: center;
}
.cid-uO9WTMhKIZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMhKIZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMhKIZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMhKIZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMhKIZ .modal-open {
  overflow: hidden;
}
.cid-uO9WTMhKIZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMhKIZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMhKIZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMhKIZ .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-uO9WTMhKIZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMhKIZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMhKIZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMhKIZ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMhKIZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMhKIZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMhKIZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMhKIZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMhKIZ .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-uO9WTMhKIZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhKIZ .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMhKIZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMhKIZ .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMhKIZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMhKIZ .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMhKIZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMhKIZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMhKIZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhKIZ .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMhKIZ .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-uO9WTMhKIZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhKIZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMhKIZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMhKIZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMhKIZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMhKIZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMhKIZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMhKIZ .modal-lg,
  .cid-uO9WTMhKIZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMhKIZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMhKIZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMhKIZ .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-uO9WTMhKIZ .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMhKIZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMhKIZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMhKIZ .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-uO9WTMhKIZ .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMhKIZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwkRTCmg7E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uwkRTCmg7E .container-fluid {
  padding: 0 3rem;
}
.cid-uwkRTCmg7E .media-container-column {
  padding: 0 2rem;
}
.cid-uwkRTCmg7E .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uwkRTCmg7E .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwkRTCmg7E .mbr-section-subtitle {
  color: #f3f3f3;
}
.cid-uwkRTCJY3K {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwkRTCJY3K .container-fluid {
  padding: 0 3rem;
}
.cid-uwkRTCJY3K .media-container-column {
  padding: 0 2rem;
}
.cid-uwkRTCJY3K .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uwkRTCJY3K .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwkRTD0u3u.popup-builder {
  background-color: #ffffff;
}
.cid-uwkRTD0u3u.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwkRTD0u3u.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwkRTD0u3u .modal-content,
.cid-uwkRTD0u3u .modal-dialog {
  height: auto;
}
.cid-uwkRTD0u3u .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwkRTD0u3u .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwkRTD0u3u .form-wrapper .mbr-form .form-group,
  .cid-uwkRTD0u3u .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwkRTD0u3u .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwkRTD0u3u .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-uwkRTD0u3u .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uwkRTD0u3u .pt-0 {
  padding-top: 0 !important;
}
.cid-uwkRTD0u3u .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwkRTD0u3u .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwkRTD0u3u .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwkRTD0u3u .modal-open {
  overflow: hidden;
}
.cid-uwkRTD0u3u .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwkRTD0u3u .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwkRTD0u3u .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwkRTD0u3u .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-uwkRTD0u3u .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwkRTD0u3u .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwkRTD0u3u .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwkRTD0u3u .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwkRTD0u3u .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwkRTD0u3u .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwkRTD0u3u .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwkRTD0u3u .modal-backdrop.show {
  opacity: .5;
}
.cid-uwkRTD0u3u .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-uwkRTD0u3u .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwkRTD0u3u .modal-header {
    padding: 1rem;
  }
}
.cid-uwkRTD0u3u .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwkRTD0u3u .modal-header .close svg {
  fill: #ffffff;
}
.cid-uwkRTD0u3u .modal-header .close:hover {
  opacity: 1;
}
.cid-uwkRTD0u3u .modal-header .close:focus {
  outline: none;
}
.cid-uwkRTD0u3u .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uwkRTD0u3u .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwkRTD0u3u .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwkRTD0u3u .modal-body {
    padding: 1rem;
  }
}
.cid-uwkRTD0u3u .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-uwkRTD0u3u .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwkRTD0u3u .modal-footer {
    padding: 1rem;
  }
}
.cid-uwkRTD0u3u .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwkRTD0u3u .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwkRTD0u3u .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwkRTD0u3u .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwkRTD0u3u .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwkRTD0u3u .modal-lg,
  .cid-uwkRTD0u3u .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwkRTD0u3u .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwkRTD0u3u .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwkRTD0u3u .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-uwkRTD0u3u .form-group {
  margin-bottom: 1rem;
}
.cid-uwkRTD0u3u .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwkRTD0u3u .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwkRTD0u3u .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-uwkRTD0u3u .mbr-section-btn {
  margin: 0;
}
.cid-uwkRTD0u3u .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwlQ4flqrz .dropdown-menu {
  padding: 12px 0;
}
.cid-uwlQ4flqrz .dropdown-item:hover,
.cid-uwlQ4flqrz .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uwlQ4flqrz .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uwlQ4flqrz .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uwlQ4flqrz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwlQ4flqrz .nav-link {
  position: relative;
}
.cid-uwlQ4flqrz .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uwlQ4flqrz .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwlQ4flqrz .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uwlQ4flqrz .dropdown-menu,
.cid-uwlQ4flqrz .navbar.opened {
  background: #1f0931 !important;
}
.cid-uwlQ4flqrz .nav-item:focus,
.cid-uwlQ4flqrz .nav-link:focus {
  outline: none;
}
.cid-uwlQ4flqrz .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uwlQ4flqrz .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uwlQ4flqrz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uwlQ4flqrz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwlQ4flqrz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uwlQ4flqrz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uwlQ4flqrz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwlQ4flqrz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwlQ4flqrz .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uwlQ4flqrz .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uwlQ4flqrz .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uwlQ4flqrz .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uwlQ4flqrz .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uwlQ4flqrz .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uwlQ4flqrz .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uwlQ4flqrz .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uwlQ4flqrz .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uwlQ4flqrz .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uwlQ4flqrz .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uwlQ4flqrz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwlQ4flqrz .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uwlQ4flqrz .navbar.collapsed.opened {
  position: fixed;
}
.cid-uwlQ4flqrz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uwlQ4flqrz .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uwlQ4flqrz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uwlQ4flqrz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwlQ4flqrz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwlQ4flqrz .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: 55%;
}
.cid-uwlQ4flqrz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwlQ4flqrz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwlQ4flqrz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwlQ4flqrz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwlQ4flqrz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwlQ4flqrz .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uwlQ4flqrz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwlQ4flqrz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwlQ4flqrz .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: 41%;
  }
  .cid-uwlQ4flqrz .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uwlQ4flqrz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uwlQ4flqrz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwlQ4flqrz .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwlQ4flqrz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uwlQ4flqrz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uwlQ4flqrz .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uwlQ4flqrz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uwlQ4flqrz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uwlQ4flqrz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uwlQ4flqrz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwlQ4flqrz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwlQ4flqrz .dropdown-item.active,
.cid-uwlQ4flqrz .dropdown-item:active {
  background-color: transparent;
}
.cid-uwlQ4flqrz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwlQ4flqrz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwlQ4flqrz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwlQ4flqrz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uwlQ4flqrz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwlQ4flqrz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwlQ4flqrz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uwlQ4flqrz .navbar-buttons {
  text-align: center;
}
.cid-uwlQ4flqrz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uwlQ4flqrz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uwlQ4flqrz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwlQ4flqrz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwlQ4flqrz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwlQ4flqrz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwlQ4flqrz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwlQ4flqrz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwlQ4flqrz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwlQ4flqrz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwlQ4flqrz .navbar-dropdown {
  position: fixed;
}
.cid-uwlQ4flqrz a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uwlQ4flqrz .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uwlQ4flqrz .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uwlQ4flqrz .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwlQ4flqrz .navbar {
    height: 77px;
  }
  .cid-uwlQ4flqrz .navbar.opened {
    height: auto;
  }
  .cid-uwlQ4flqrz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAhxmlNm5Z {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAhxmlNm5Z .container-fluid {
  padding: 0 3rem;
}
.cid-uAhxmlNm5Z .media-container-column {
  padding: 0 2rem;
}
.cid-uAhxmlNm5Z .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAhxmlNm5Z .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwmjdJaUua {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-uwmjdJaUua .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #3c71d3, #38346b);
}
.cid-uwmjdJaUua .mbr-text,
.cid-uwmjdJaUua .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uwmjdJaUua .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwmjdJaUua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwmjdJaUua .mbr-section-title,
.cid-uwmjdJaUua .title-wrapper {
  text-align: center;
  color: #d4a4e4;
}
.cid-uAaC38C3ap {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uAaC38C3ap img,
.cid-uAaC38C3ap .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uAaC38C3ap .item:focus,
.cid-uAaC38C3ap span:focus {
  outline: none;
}
.cid-uAaC38C3ap .item-wrapper {
  position: relative;
}
.cid-uAaC38C3ap .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAaC38C3ap .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uAaC38C3ap .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAaC38C3ap .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uAaC38C3ap .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uAaC38C3ap .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAaC38C3ap .mbr-section-title {
  color: #232323;
}
.cid-uAaC38C3ap .mbr-text,
.cid-uAaC38C3ap .mbr-section-btn {
  text-align: center;
}
.cid-uAaC38C3ap .item-title {
  text-align: center;
}
.cid-uAaC38C3ap .item-subtitle {
  text-align: center;
}
.cid-uAaC38C3ap .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uAaC38C3ap .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uAaC38C3ap .embla__button--next,
.cid-uAaC38C3ap .embla__button--prev {
  display: flex;
}
.cid-uAaC38C3ap .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uAaC38C3ap .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAaC38C3ap .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uAaC38C3ap .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uAaC38C3ap .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uAaC38C3ap .embla__button {
    top: auto;
  }
}
.cid-uAaC38C3ap .embla {
  position: relative;
  width: 100%;
}
.cid-uAaC38C3ap .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uAaC38C3ap .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAaC38C3ap .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAaC38C3ap .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uwlQ4huQKD {
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uwlQ4huQKD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwlQ4huQKD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwlQ4huQKD .container {
    padding: 0 16px;
  }
}
.cid-uwlQ4huQKD .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uwlQ4huQKD .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uwlQ4huQKD .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uwlQ4huQKD .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uwlQ4huQKD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uwlQ4huQKD .mbr-text {
  color: #ffffff;
}
.cid-uwlQ4huQKD .mbr-text,
.cid-uwlQ4huQKD .mbr-section-btn {
  text-align: center;
}
.cid-uwlQ4huQKD .mbr-section-title,
.cid-uwlQ4huQKD .title-wrap {
  color: #410078;
}
.cid-uwlQ4heSER {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwlQ4heSER .container-fluid {
  padding: 0 3rem;
}
.cid-uwlQ4heSER .media-container-column {
  padding: 0 2rem;
}
.cid-uwlQ4heSER .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uwlQ4heSER .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwlQ4hOOqB.popup-builder {
  background-color: #ffffff;
}
.cid-uwlQ4hOOqB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwlQ4hOOqB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwlQ4hOOqB .modal-content,
.cid-uwlQ4hOOqB .modal-dialog {
  height: auto;
}
.cid-uwlQ4hOOqB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwlQ4hOOqB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwlQ4hOOqB .form-wrapper .mbr-form .form-group,
  .cid-uwlQ4hOOqB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwlQ4hOOqB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwlQ4hOOqB .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-uwlQ4hOOqB .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uwlQ4hOOqB .pt-0 {
  padding-top: 0 !important;
}
.cid-uwlQ4hOOqB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwlQ4hOOqB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwlQ4hOOqB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwlQ4hOOqB .modal-open {
  overflow: hidden;
}
.cid-uwlQ4hOOqB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwlQ4hOOqB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwlQ4hOOqB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwlQ4hOOqB .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-uwlQ4hOOqB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwlQ4hOOqB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwlQ4hOOqB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwlQ4hOOqB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwlQ4hOOqB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwlQ4hOOqB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwlQ4hOOqB .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwlQ4hOOqB .modal-backdrop.show {
  opacity: .5;
}
.cid-uwlQ4hOOqB .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-uwlQ4hOOqB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwlQ4hOOqB .modal-header {
    padding: 1rem;
  }
}
.cid-uwlQ4hOOqB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwlQ4hOOqB .modal-header .close svg {
  fill: #59307c;
}
.cid-uwlQ4hOOqB .modal-header .close:hover {
  opacity: 1;
}
.cid-uwlQ4hOOqB .modal-header .close:focus {
  outline: none;
}
.cid-uwlQ4hOOqB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uwlQ4hOOqB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwlQ4hOOqB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwlQ4hOOqB .modal-body {
    padding: 1rem;
  }
}
.cid-uwlQ4hOOqB .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-uwlQ4hOOqB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwlQ4hOOqB .modal-footer {
    padding: 1rem;
  }
}
.cid-uwlQ4hOOqB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwlQ4hOOqB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwlQ4hOOqB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwlQ4hOOqB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwlQ4hOOqB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwlQ4hOOqB .modal-lg,
  .cid-uwlQ4hOOqB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwlQ4hOOqB .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwlQ4hOOqB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwlQ4hOOqB .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-uwlQ4hOOqB .form-group {
  margin-bottom: 1rem;
}
.cid-uwlQ4hOOqB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwlQ4hOOqB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwlQ4hOOqB .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-uwlQ4hOOqB .mbr-section-btn {
  margin: 0;
}
.cid-uwlQ4hOOqB .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwlQ4il3hX.popup-builder {
  background-color: #ffffff;
}
.cid-uwlQ4il3hX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwlQ4il3hX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwlQ4il3hX .modal-content,
.cid-uwlQ4il3hX .modal-dialog {
  height: auto;
}
.cid-uwlQ4il3hX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwlQ4il3hX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwlQ4il3hX .form-wrapper .mbr-form .form-group,
  .cid-uwlQ4il3hX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwlQ4il3hX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwlQ4il3hX .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-uwlQ4il3hX .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uwlQ4il3hX .pt-0 {
  padding-top: 0 !important;
}
.cid-uwlQ4il3hX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwlQ4il3hX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwlQ4il3hX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwlQ4il3hX .modal-open {
  overflow: hidden;
}
.cid-uwlQ4il3hX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwlQ4il3hX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwlQ4il3hX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwlQ4il3hX .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-uwlQ4il3hX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwlQ4il3hX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwlQ4il3hX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwlQ4il3hX .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwlQ4il3hX .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwlQ4il3hX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwlQ4il3hX .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwlQ4il3hX .modal-backdrop.show {
  opacity: .5;
}
.cid-uwlQ4il3hX .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-uwlQ4il3hX .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwlQ4il3hX .modal-header {
    padding: 1rem;
  }
}
.cid-uwlQ4il3hX .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwlQ4il3hX .modal-header .close svg {
  fill: #ffffff;
}
.cid-uwlQ4il3hX .modal-header .close:hover {
  opacity: 1;
}
.cid-uwlQ4il3hX .modal-header .close:focus {
  outline: none;
}
.cid-uwlQ4il3hX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uwlQ4il3hX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwlQ4il3hX .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwlQ4il3hX .modal-body {
    padding: 1rem;
  }
}
.cid-uwlQ4il3hX .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-uwlQ4il3hX .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwlQ4il3hX .modal-footer {
    padding: 1rem;
  }
}
.cid-uwlQ4il3hX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwlQ4il3hX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwlQ4il3hX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwlQ4il3hX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwlQ4il3hX .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwlQ4il3hX .modal-lg,
  .cid-uwlQ4il3hX .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwlQ4il3hX .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwlQ4il3hX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwlQ4il3hX .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-uwlQ4il3hX .form-group {
  margin-bottom: 1rem;
}
.cid-uwlQ4il3hX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwlQ4il3hX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwlQ4il3hX .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-uwlQ4il3hX .mbr-section-btn {
  margin: 0;
}
.cid-uwlQ4il3hX .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwNdAoczeq.popup-builder {
  background-color: #ffffff;
}
.cid-uwNdAoczeq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwNdAoczeq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwNdAoczeq .modal-content,
.cid-uwNdAoczeq .modal-dialog {
  height: auto;
}
.cid-uwNdAoczeq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwNdAoczeq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwNdAoczeq .form-wrapper .mbr-form .form-group,
  .cid-uwNdAoczeq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwNdAoczeq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwNdAoczeq .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-uwNdAoczeq .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwNdAoczeq .pt-0 {
  padding-top: 0 !important;
}
.cid-uwNdAoczeq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwNdAoczeq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwNdAoczeq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwNdAoczeq .modal-open {
  overflow: hidden;
}
.cid-uwNdAoczeq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwNdAoczeq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwNdAoczeq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwNdAoczeq .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-uwNdAoczeq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwNdAoczeq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwNdAoczeq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwNdAoczeq .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwNdAoczeq .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwNdAoczeq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwNdAoczeq .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwNdAoczeq .modal-backdrop.show {
  opacity: .5;
}
.cid-uwNdAoczeq .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-uwNdAoczeq .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoczeq .modal-header {
    padding: 1rem;
  }
}
.cid-uwNdAoczeq .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwNdAoczeq .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwNdAoczeq .modal-header .close:hover {
  opacity: 1;
}
.cid-uwNdAoczeq .modal-header .close:focus {
  outline: none;
}
.cid-uwNdAoczeq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwNdAoczeq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwNdAoczeq .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoczeq .modal-body {
    padding: 1rem;
  }
}
.cid-uwNdAoczeq .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-uwNdAoczeq .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoczeq .modal-footer {
    padding: 1rem;
  }
}
.cid-uwNdAoczeq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwNdAoczeq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwNdAoczeq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwNdAoczeq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwNdAoczeq .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwNdAoczeq .modal-lg,
  .cid-uwNdAoczeq .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwNdAoczeq .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwNdAoczeq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwNdAoczeq .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-uwNdAoczeq .form-group {
  margin-bottom: 1rem;
}
.cid-uwNdAoczeq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwNdAoczeq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwNdAoczeq .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-uwNdAoczeq .mbr-section-btn {
  margin: 0;
}
.cid-uwNdAoczeq .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMhGBi.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMhGBi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMhGBi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMhGBi .modal-content,
.cid-uO9WTMhGBi .modal-dialog {
  height: auto;
}
.cid-uO9WTMhGBi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMhGBi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMhGBi .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMhGBi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMhGBi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMhGBi .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-uO9WTMhGBi .mbr-text {
  text-align: center;
}
.cid-uO9WTMhGBi .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMhGBi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMhGBi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMhGBi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMhGBi .modal-open {
  overflow: hidden;
}
.cid-uO9WTMhGBi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMhGBi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMhGBi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMhGBi .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-uO9WTMhGBi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMhGBi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMhGBi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMhGBi .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMhGBi .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMhGBi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMhGBi .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMhGBi .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMhGBi .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-uO9WTMhGBi .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhGBi .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMhGBi .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMhGBi .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMhGBi .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMhGBi .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMhGBi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMhGBi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMhGBi .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhGBi .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMhGBi .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-uO9WTMhGBi .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhGBi .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMhGBi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMhGBi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMhGBi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMhGBi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMhGBi .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMhGBi .modal-lg,
  .cid-uO9WTMhGBi .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMhGBi .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMhGBi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMhGBi .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-uO9WTMhGBi .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMhGBi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMhGBi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMhGBi .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-uO9WTMhGBi .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMhGBi .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwvQ7cppEa .dropdown-menu {
  padding: 12px 0;
}
.cid-uwvQ7cppEa .dropdown-item:hover,
.cid-uwvQ7cppEa .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uwvQ7cppEa .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uwvQ7cppEa .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uwvQ7cppEa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwvQ7cppEa .nav-link {
  position: relative;
}
.cid-uwvQ7cppEa .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uwvQ7cppEa .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwvQ7cppEa .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uwvQ7cppEa .dropdown-menu,
.cid-uwvQ7cppEa .navbar.opened {
  background: #1f0931 !important;
}
.cid-uwvQ7cppEa .nav-item:focus,
.cid-uwvQ7cppEa .nav-link:focus {
  outline: none;
}
.cid-uwvQ7cppEa .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uwvQ7cppEa .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uwvQ7cppEa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uwvQ7cppEa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwvQ7cppEa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uwvQ7cppEa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uwvQ7cppEa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwvQ7cppEa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwvQ7cppEa .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uwvQ7cppEa .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uwvQ7cppEa .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uwvQ7cppEa .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uwvQ7cppEa .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uwvQ7cppEa .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uwvQ7cppEa .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uwvQ7cppEa .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uwvQ7cppEa .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uwvQ7cppEa .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uwvQ7cppEa .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uwvQ7cppEa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwvQ7cppEa .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uwvQ7cppEa .navbar.collapsed.opened {
  position: fixed;
}
.cid-uwvQ7cppEa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uwvQ7cppEa .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uwvQ7cppEa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uwvQ7cppEa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwvQ7cppEa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwvQ7cppEa .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: 55%;
}
.cid-uwvQ7cppEa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwvQ7cppEa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwvQ7cppEa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwvQ7cppEa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwvQ7cppEa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwvQ7cppEa .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uwvQ7cppEa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwvQ7cppEa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwvQ7cppEa .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: 41%;
  }
  .cid-uwvQ7cppEa .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uwvQ7cppEa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uwvQ7cppEa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwvQ7cppEa .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwvQ7cppEa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uwvQ7cppEa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uwvQ7cppEa .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uwvQ7cppEa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uwvQ7cppEa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uwvQ7cppEa .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uwvQ7cppEa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwvQ7cppEa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwvQ7cppEa .dropdown-item.active,
.cid-uwvQ7cppEa .dropdown-item:active {
  background-color: transparent;
}
.cid-uwvQ7cppEa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwvQ7cppEa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwvQ7cppEa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwvQ7cppEa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uwvQ7cppEa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwvQ7cppEa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwvQ7cppEa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uwvQ7cppEa .navbar-buttons {
  text-align: center;
}
.cid-uwvQ7cppEa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uwvQ7cppEa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uwvQ7cppEa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwvQ7cppEa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwvQ7cppEa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwvQ7cppEa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwvQ7cppEa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwvQ7cppEa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwvQ7cppEa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwvQ7cppEa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwvQ7cppEa .navbar-dropdown {
  position: fixed;
}
.cid-uwvQ7cppEa a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uwvQ7cppEa .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uwvQ7cppEa .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uwvQ7cppEa .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwvQ7cppEa .navbar {
    height: 77px;
  }
  .cid-uwvQ7cppEa .navbar.opened {
    height: auto;
  }
  .cid-uwvQ7cppEa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwvQ7d32qn {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uwvQ7d32qn .container-fluid {
  padding: 0 3rem;
}
.cid-uwvQ7d32qn .media-container-column {
  padding: 0 2rem;
}
.cid-uwvQ7d32qn .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uwvQ7d32qn .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwvQ7doyrC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uwvQ7doyrC .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uwvQ7doyrC img {
    width: 90%;
  }
}
.cid-uwvQ7doyrC .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uwvQ7doyrC .items {
  margin-bottom: 0;
}
.cid-uwvQ7doyrC .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uwvQ7doyrC .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uwvQ7doyrC .soc-item:hover span {
  color: #38346b !important;
}
.cid-uwvQ7doyrC .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uwvQ7doyrC .social-list {
    justify-content: center;
  }
}
.cid-uwvQ7doyrC .card-title {
  text-align: left;
  color: #e6eaf1;
}
.cid-uww6MnDYM8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1920.png");
}
.cid-uww6MnDYM8 .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #3c71d3, #38346b);
}
.cid-uww6MnDYM8 .mbr-text,
.cid-uww6MnDYM8 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uww6MnDYM8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uww6MnDYM8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uww6MnDYM8 .mbr-section-title,
.cid-uww6MnDYM8 .title-wrapper {
  text-align: center;
  color: #e6eaf1;
}
.cid-uww3dV9l6r {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #260641;
}
.cid-uww3dV9l6r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uww3dV9l6r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uww3dV9l6r .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uww3dV9l6r .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uww3dV9l6r .container {
    padding: 0 26px;
  }
}
.cid-uww3dV9l6r .row {
  justify-content: center;
}
.cid-uww3dV9l6r .list {
  padding: 0;
  margin-bottom: 40px;
  list-style-type: none;
  color: #000000;
}
.cid-uww3dV9l6r .list .item-wrap {
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uww3dV9l6r .list .item-wrap:hover,
.cid-uww3dV9l6r .list .item-wrap:focus {
  color: #baab99;
}
.cid-uww3dV9l6r .list,
.cid-uww3dV9l6r .mbr-section-btn {
  text-align: center;
}
.cid-uww3dV9l6r .list,
.cid-uww3dV9l6r .item-wrap,
.cid-uww3dV9l6r .mbr-section-btn {
  color: #bdbe5a;
}
.cid-uwvQ7eLcvm {
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uwvQ7eLcvm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwvQ7eLcvm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwvQ7eLcvm .container {
    padding: 0 16px;
  }
}
.cid-uwvQ7eLcvm .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uwvQ7eLcvm .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uwvQ7eLcvm .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uwvQ7eLcvm .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uwvQ7eLcvm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uwvQ7eLcvm .mbr-text {
  color: #ffffff;
}
.cid-uwvQ7eLcvm .mbr-text,
.cid-uwvQ7eLcvm .mbr-section-btn {
  text-align: center;
}
.cid-uwvQ7eLcvm .mbr-section-title,
.cid-uwvQ7eLcvm .title-wrap {
  color: #410078;
}
.cid-uwvQ7et9xc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwvQ7et9xc .container-fluid {
  padding: 0 3rem;
}
.cid-uwvQ7et9xc .media-container-column {
  padding: 0 2rem;
}
.cid-uwvQ7et9xc .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uwvQ7et9xc .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwvQ7f7rf4.popup-builder {
  background-color: #ffffff;
}
.cid-uwvQ7f7rf4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwvQ7f7rf4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwvQ7f7rf4 .modal-content,
.cid-uwvQ7f7rf4 .modal-dialog {
  height: auto;
}
.cid-uwvQ7f7rf4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwvQ7f7rf4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwvQ7f7rf4 .form-wrapper .mbr-form .form-group,
  .cid-uwvQ7f7rf4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwvQ7f7rf4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwvQ7f7rf4 .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-uwvQ7f7rf4 .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uwvQ7f7rf4 .pt-0 {
  padding-top: 0 !important;
}
.cid-uwvQ7f7rf4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwvQ7f7rf4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwvQ7f7rf4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwvQ7f7rf4 .modal-open {
  overflow: hidden;
}
.cid-uwvQ7f7rf4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwvQ7f7rf4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwvQ7f7rf4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwvQ7f7rf4 .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-uwvQ7f7rf4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwvQ7f7rf4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwvQ7f7rf4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwvQ7f7rf4 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwvQ7f7rf4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwvQ7f7rf4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwvQ7f7rf4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwvQ7f7rf4 .modal-backdrop.show {
  opacity: .5;
}
.cid-uwvQ7f7rf4 .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-uwvQ7f7rf4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwvQ7f7rf4 .modal-header {
    padding: 1rem;
  }
}
.cid-uwvQ7f7rf4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwvQ7f7rf4 .modal-header .close svg {
  fill: #59307c;
}
.cid-uwvQ7f7rf4 .modal-header .close:hover {
  opacity: 1;
}
.cid-uwvQ7f7rf4 .modal-header .close:focus {
  outline: none;
}
.cid-uwvQ7f7rf4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uwvQ7f7rf4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwvQ7f7rf4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwvQ7f7rf4 .modal-body {
    padding: 1rem;
  }
}
.cid-uwvQ7f7rf4 .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-uwvQ7f7rf4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwvQ7f7rf4 .modal-footer {
    padding: 1rem;
  }
}
.cid-uwvQ7f7rf4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwvQ7f7rf4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwvQ7f7rf4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwvQ7f7rf4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwvQ7f7rf4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwvQ7f7rf4 .modal-lg,
  .cid-uwvQ7f7rf4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwvQ7f7rf4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwvQ7f7rf4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwvQ7f7rf4 .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-uwvQ7f7rf4 .form-group {
  margin-bottom: 1rem;
}
.cid-uwvQ7f7rf4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwvQ7f7rf4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwvQ7f7rf4 .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-uwvQ7f7rf4 .mbr-section-btn {
  margin: 0;
}
.cid-uwvQ7f7rf4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwvQ7fAXJf.popup-builder {
  background-color: #ffffff;
}
.cid-uwvQ7fAXJf.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwvQ7fAXJf.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwvQ7fAXJf .modal-content,
.cid-uwvQ7fAXJf .modal-dialog {
  height: auto;
}
.cid-uwvQ7fAXJf .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwvQ7fAXJf .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwvQ7fAXJf .form-wrapper .mbr-form .form-group,
  .cid-uwvQ7fAXJf .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwvQ7fAXJf .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwvQ7fAXJf .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-uwvQ7fAXJf .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uwvQ7fAXJf .pt-0 {
  padding-top: 0 !important;
}
.cid-uwvQ7fAXJf .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwvQ7fAXJf .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwvQ7fAXJf .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwvQ7fAXJf .modal-open {
  overflow: hidden;
}
.cid-uwvQ7fAXJf .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwvQ7fAXJf .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwvQ7fAXJf .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwvQ7fAXJf .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-uwvQ7fAXJf .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwvQ7fAXJf .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwvQ7fAXJf .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwvQ7fAXJf .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwvQ7fAXJf .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwvQ7fAXJf .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwvQ7fAXJf .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwvQ7fAXJf .modal-backdrop.show {
  opacity: .5;
}
.cid-uwvQ7fAXJf .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-uwvQ7fAXJf .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwvQ7fAXJf .modal-header {
    padding: 1rem;
  }
}
.cid-uwvQ7fAXJf .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwvQ7fAXJf .modal-header .close svg {
  fill: #ffffff;
}
.cid-uwvQ7fAXJf .modal-header .close:hover {
  opacity: 1;
}
.cid-uwvQ7fAXJf .modal-header .close:focus {
  outline: none;
}
.cid-uwvQ7fAXJf .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uwvQ7fAXJf .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwvQ7fAXJf .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwvQ7fAXJf .modal-body {
    padding: 1rem;
  }
}
.cid-uwvQ7fAXJf .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-uwvQ7fAXJf .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwvQ7fAXJf .modal-footer {
    padding: 1rem;
  }
}
.cid-uwvQ7fAXJf .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwvQ7fAXJf .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwvQ7fAXJf .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwvQ7fAXJf .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwvQ7fAXJf .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwvQ7fAXJf .modal-lg,
  .cid-uwvQ7fAXJf .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwvQ7fAXJf .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwvQ7fAXJf .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwvQ7fAXJf .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-uwvQ7fAXJf .form-group {
  margin-bottom: 1rem;
}
.cid-uwvQ7fAXJf .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwvQ7fAXJf .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwvQ7fAXJf .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-uwvQ7fAXJf .mbr-section-btn {
  margin: 0;
}
.cid-uwvQ7fAXJf .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwNdAoca9M.popup-builder {
  background-color: #ffffff;
}
.cid-uwNdAoca9M.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwNdAoca9M.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwNdAoca9M .modal-content,
.cid-uwNdAoca9M .modal-dialog {
  height: auto;
}
.cid-uwNdAoca9M .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwNdAoca9M .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwNdAoca9M .form-wrapper .mbr-form .form-group,
  .cid-uwNdAoca9M .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwNdAoca9M .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwNdAoca9M .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-uwNdAoca9M .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwNdAoca9M .pt-0 {
  padding-top: 0 !important;
}
.cid-uwNdAoca9M .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwNdAoca9M .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwNdAoca9M .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwNdAoca9M .modal-open {
  overflow: hidden;
}
.cid-uwNdAoca9M .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwNdAoca9M .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwNdAoca9M .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwNdAoca9M .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-uwNdAoca9M .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwNdAoca9M .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwNdAoca9M .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwNdAoca9M .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwNdAoca9M .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwNdAoca9M .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwNdAoca9M .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwNdAoca9M .modal-backdrop.show {
  opacity: .5;
}
.cid-uwNdAoca9M .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-uwNdAoca9M .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoca9M .modal-header {
    padding: 1rem;
  }
}
.cid-uwNdAoca9M .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwNdAoca9M .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwNdAoca9M .modal-header .close:hover {
  opacity: 1;
}
.cid-uwNdAoca9M .modal-header .close:focus {
  outline: none;
}
.cid-uwNdAoca9M .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwNdAoca9M .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwNdAoca9M .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoca9M .modal-body {
    padding: 1rem;
  }
}
.cid-uwNdAoca9M .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-uwNdAoca9M .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAoca9M .modal-footer {
    padding: 1rem;
  }
}
.cid-uwNdAoca9M .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwNdAoca9M .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwNdAoca9M .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwNdAoca9M .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwNdAoca9M .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwNdAoca9M .modal-lg,
  .cid-uwNdAoca9M .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwNdAoca9M .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwNdAoca9M .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwNdAoca9M .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-uwNdAoca9M .form-group {
  margin-bottom: 1rem;
}
.cid-uwNdAoca9M .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwNdAoca9M .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwNdAoca9M .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-uwNdAoca9M .mbr-section-btn {
  margin: 0;
}
.cid-uwNdAoca9M .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMhFJ5.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMhFJ5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMhFJ5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMhFJ5 .modal-content,
.cid-uO9WTMhFJ5 .modal-dialog {
  height: auto;
}
.cid-uO9WTMhFJ5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMhFJ5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMhFJ5 .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMhFJ5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMhFJ5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMhFJ5 .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-uO9WTMhFJ5 .mbr-text {
  text-align: center;
}
.cid-uO9WTMhFJ5 .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMhFJ5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMhFJ5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMhFJ5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMhFJ5 .modal-open {
  overflow: hidden;
}
.cid-uO9WTMhFJ5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMhFJ5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMhFJ5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMhFJ5 .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-uO9WTMhFJ5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMhFJ5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMhFJ5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMhFJ5 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMhFJ5 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMhFJ5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMhFJ5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMhFJ5 .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMhFJ5 .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-uO9WTMhFJ5 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhFJ5 .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMhFJ5 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMhFJ5 .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMhFJ5 .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMhFJ5 .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMhFJ5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMhFJ5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMhFJ5 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhFJ5 .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMhFJ5 .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-uO9WTMhFJ5 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhFJ5 .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMhFJ5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMhFJ5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMhFJ5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMhFJ5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMhFJ5 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMhFJ5 .modal-lg,
  .cid-uO9WTMhFJ5 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMhFJ5 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMhFJ5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMhFJ5 .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-uO9WTMhFJ5 .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMhFJ5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMhFJ5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMhFJ5 .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-uO9WTMhFJ5 .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMhFJ5 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwNcBKNNw6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1f0931;
}
.cid-uwNcBKNNw6 .container-fluid {
  padding: 0 3rem;
}
.cid-uwNcBKNNw6 .media-container-column {
  padding: 0 2rem;
}
.cid-uwNcBKNNw6 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #bdbe5a;
}
@media (max-width: 767px) {
  .cid-uwNcBKNNw6 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwNcBKNNw6 .mbr-section-subtitle {
  color: #f3f3f3;
}
.cid-uwNcBLgxUc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwNcBLgxUc .container-fluid {
  padding: 0 3rem;
}
.cid-uwNcBLgxUc .media-container-column {
  padding: 0 2rem;
}
.cid-uwNcBLgxUc .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uwNcBLgxUc .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwNcBLt5GI.popup-builder {
  background-color: #ffffff;
}
.cid-uwNcBLt5GI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwNcBLt5GI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwNcBLt5GI .modal-content,
.cid-uwNcBLt5GI .modal-dialog {
  height: auto;
}
.cid-uwNcBLt5GI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwNcBLt5GI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwNcBLt5GI .form-wrapper .mbr-form .form-group,
  .cid-uwNcBLt5GI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwNcBLt5GI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwNcBLt5GI .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-uwNcBLt5GI .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uwNcBLt5GI .pt-0 {
  padding-top: 0 !important;
}
.cid-uwNcBLt5GI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwNcBLt5GI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwNcBLt5GI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwNcBLt5GI .modal-open {
  overflow: hidden;
}
.cid-uwNcBLt5GI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwNcBLt5GI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwNcBLt5GI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwNcBLt5GI .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-uwNcBLt5GI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwNcBLt5GI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwNcBLt5GI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwNcBLt5GI .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwNcBLt5GI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwNcBLt5GI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwNcBLt5GI .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwNcBLt5GI .modal-backdrop.show {
  opacity: .5;
}
.cid-uwNcBLt5GI .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-uwNcBLt5GI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNcBLt5GI .modal-header {
    padding: 1rem;
  }
}
.cid-uwNcBLt5GI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwNcBLt5GI .modal-header .close svg {
  fill: #ffffff;
}
.cid-uwNcBLt5GI .modal-header .close:hover {
  opacity: 1;
}
.cid-uwNcBLt5GI .modal-header .close:focus {
  outline: none;
}
.cid-uwNcBLt5GI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uwNcBLt5GI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwNcBLt5GI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNcBLt5GI .modal-body {
    padding: 1rem;
  }
}
.cid-uwNcBLt5GI .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-uwNcBLt5GI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNcBLt5GI .modal-footer {
    padding: 1rem;
  }
}
.cid-uwNcBLt5GI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwNcBLt5GI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwNcBLt5GI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwNcBLt5GI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwNcBLt5GI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwNcBLt5GI .modal-lg,
  .cid-uwNcBLt5GI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwNcBLt5GI .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwNcBLt5GI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwNcBLt5GI .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-uwNcBLt5GI .form-group {
  margin-bottom: 1rem;
}
.cid-uwNcBLt5GI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwNcBLt5GI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwNcBLt5GI .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-uwNcBLt5GI .mbr-section-btn {
  margin: 0;
}
.cid-uwNcBLt5GI .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwOBVNoXMv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1f0931;
}
.cid-uwOBVNoXMv .container-fluid {
  padding: 0 3rem;
}
.cid-uwOBVNoXMv .media-container-column {
  padding: 0 2rem;
}
.cid-uwOBVNoXMv .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #bdbe5a;
}
@media (max-width: 767px) {
  .cid-uwOBVNoXMv .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwOBVNoXMv .mbr-section-subtitle {
  color: #f3f3f3;
}
.cid-uwOC9xal3p {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/mbr-8-1920x1280.jpg");
}
.cid-uwOC9xal3p .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-uwOC9xal3p .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uwOC9xal3p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwOC9xal3p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwOBVNSQnA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwOBVNSQnA .container-fluid {
  padding: 0 3rem;
}
.cid-uwOBVNSQnA .media-container-column {
  padding: 0 2rem;
}
.cid-uwOBVNSQnA .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uwOBVNSQnA .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwOBVObTPG.popup-builder {
  background-color: #ffffff;
}
.cid-uwOBVObTPG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwOBVObTPG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwOBVObTPG .modal-content,
.cid-uwOBVObTPG .modal-dialog {
  height: auto;
}
.cid-uwOBVObTPG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwOBVObTPG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwOBVObTPG .form-wrapper .mbr-form .form-group,
  .cid-uwOBVObTPG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwOBVObTPG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwOBVObTPG .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-uwOBVObTPG .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uwOBVObTPG .pt-0 {
  padding-top: 0 !important;
}
.cid-uwOBVObTPG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwOBVObTPG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwOBVObTPG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwOBVObTPG .modal-open {
  overflow: hidden;
}
.cid-uwOBVObTPG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwOBVObTPG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwOBVObTPG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwOBVObTPG .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-uwOBVObTPG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwOBVObTPG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwOBVObTPG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwOBVObTPG .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwOBVObTPG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwOBVObTPG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwOBVObTPG .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwOBVObTPG .modal-backdrop.show {
  opacity: .5;
}
.cid-uwOBVObTPG .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-uwOBVObTPG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOBVObTPG .modal-header {
    padding: 1rem;
  }
}
.cid-uwOBVObTPG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwOBVObTPG .modal-header .close svg {
  fill: #ffffff;
}
.cid-uwOBVObTPG .modal-header .close:hover {
  opacity: 1;
}
.cid-uwOBVObTPG .modal-header .close:focus {
  outline: none;
}
.cid-uwOBVObTPG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uwOBVObTPG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwOBVObTPG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOBVObTPG .modal-body {
    padding: 1rem;
  }
}
.cid-uwOBVObTPG .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-uwOBVObTPG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOBVObTPG .modal-footer {
    padding: 1rem;
  }
}
.cid-uwOBVObTPG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwOBVObTPG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwOBVObTPG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwOBVObTPG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwOBVObTPG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwOBVObTPG .modal-lg,
  .cid-uwOBVObTPG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwOBVObTPG .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwOBVObTPG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwOBVObTPG .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-uwOBVObTPG .form-group {
  margin-bottom: 1rem;
}
.cid-uwOBVObTPG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwOBVObTPG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwOBVObTPG .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-uwOBVObTPG .mbr-section-btn {
  margin: 0;
}
.cid-uwOBVObTPG .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwOCWIfk02.popup-builder {
  background-color: #ffffff;
}
.cid-uwOCWIfk02.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwOCWIfk02.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwOCWIfk02 .modal-content,
.cid-uwOCWIfk02 .modal-dialog {
  height: auto;
}
.cid-uwOCWIfk02 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwOCWIfk02 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwOCWIfk02 .form-wrapper .mbr-form .form-group,
  .cid-uwOCWIfk02 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwOCWIfk02 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwOCWIfk02 .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-uwOCWIfk02 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwOCWIfk02 .pt-0 {
  padding-top: 0 !important;
}
.cid-uwOCWIfk02 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwOCWIfk02 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwOCWIfk02 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwOCWIfk02 .modal-open {
  overflow: hidden;
}
.cid-uwOCWIfk02 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwOCWIfk02 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwOCWIfk02 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwOCWIfk02 .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-uwOCWIfk02 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwOCWIfk02 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwOCWIfk02 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwOCWIfk02 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwOCWIfk02 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwOCWIfk02 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwOCWIfk02 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwOCWIfk02 .modal-backdrop.show {
  opacity: .5;
}
.cid-uwOCWIfk02 .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-uwOCWIfk02 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOCWIfk02 .modal-header {
    padding: 1rem;
  }
}
.cid-uwOCWIfk02 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwOCWIfk02 .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwOCWIfk02 .modal-header .close:hover {
  opacity: 1;
}
.cid-uwOCWIfk02 .modal-header .close:focus {
  outline: none;
}
.cid-uwOCWIfk02 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwOCWIfk02 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwOCWIfk02 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOCWIfk02 .modal-body {
    padding: 1rem;
  }
}
.cid-uwOCWIfk02 .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-uwOCWIfk02 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOCWIfk02 .modal-footer {
    padding: 1rem;
  }
}
.cid-uwOCWIfk02 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwOCWIfk02 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwOCWIfk02 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwOCWIfk02 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwOCWIfk02 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwOCWIfk02 .modal-lg,
  .cid-uwOCWIfk02 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwOCWIfk02 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwOCWIfk02 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwOCWIfk02 .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-uwOCWIfk02 .form-group {
  margin-bottom: 1rem;
}
.cid-uwOCWIfk02 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwOCWIfk02 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwOCWIfk02 .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-uwOCWIfk02 .mbr-section-btn {
  margin: 0;
}
.cid-uwOCWIfk02 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwOD4DSBhG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1f0931;
}
.cid-uwOD4DSBhG .container-fluid {
  padding: 0 3rem;
}
.cid-uwOD4DSBhG .media-container-column {
  padding: 0 2rem;
}
.cid-uwOD4DSBhG .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #bdbe5a;
}
@media (max-width: 767px) {
  .cid-uwOD4DSBhG .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwOD4DSBhG .mbr-section-subtitle {
  color: #f3f3f3;
}
.cid-uwOD4El3ME {
  padding-top: 30px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-9-1920x1280.jpg");
}
.cid-uwOD4El3ME .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-uwOD4El3ME .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uwOD4El3ME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwOD4El3ME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwOD4EGvNX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwOD4EGvNX .container-fluid {
  padding: 0 3rem;
}
.cid-uwOD4EGvNX .media-container-column {
  padding: 0 2rem;
}
.cid-uwOD4EGvNX .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uwOD4EGvNX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwOD4EXWhz.popup-builder {
  background-color: #ffffff;
}
.cid-uwOD4EXWhz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwOD4EXWhz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwOD4EXWhz .modal-content,
.cid-uwOD4EXWhz .modal-dialog {
  height: auto;
}
.cid-uwOD4EXWhz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwOD4EXWhz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwOD4EXWhz .form-wrapper .mbr-form .form-group,
  .cid-uwOD4EXWhz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwOD4EXWhz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwOD4EXWhz .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-uwOD4EXWhz .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uwOD4EXWhz .pt-0 {
  padding-top: 0 !important;
}
.cid-uwOD4EXWhz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwOD4EXWhz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwOD4EXWhz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwOD4EXWhz .modal-open {
  overflow: hidden;
}
.cid-uwOD4EXWhz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwOD4EXWhz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwOD4EXWhz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwOD4EXWhz .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-uwOD4EXWhz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwOD4EXWhz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwOD4EXWhz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwOD4EXWhz .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwOD4EXWhz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwOD4EXWhz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwOD4EXWhz .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwOD4EXWhz .modal-backdrop.show {
  opacity: .5;
}
.cid-uwOD4EXWhz .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-uwOD4EXWhz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOD4EXWhz .modal-header {
    padding: 1rem;
  }
}
.cid-uwOD4EXWhz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwOD4EXWhz .modal-header .close svg {
  fill: #ffffff;
}
.cid-uwOD4EXWhz .modal-header .close:hover {
  opacity: 1;
}
.cid-uwOD4EXWhz .modal-header .close:focus {
  outline: none;
}
.cid-uwOD4EXWhz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uwOD4EXWhz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwOD4EXWhz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOD4EXWhz .modal-body {
    padding: 1rem;
  }
}
.cid-uwOD4EXWhz .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-uwOD4EXWhz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOD4EXWhz .modal-footer {
    padding: 1rem;
  }
}
.cid-uwOD4EXWhz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwOD4EXWhz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwOD4EXWhz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwOD4EXWhz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwOD4EXWhz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwOD4EXWhz .modal-lg,
  .cid-uwOD4EXWhz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwOD4EXWhz .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwOD4EXWhz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwOD4EXWhz .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-uwOD4EXWhz .form-group {
  margin-bottom: 1rem;
}
.cid-uwOD4EXWhz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwOD4EXWhz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwOD4EXWhz .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-uwOD4EXWhz .mbr-section-btn {
  margin: 0;
}
.cid-uwOD4EXWhz .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwOD4Fs5Gf.popup-builder {
  background-color: #ffffff;
}
.cid-uwOD4Fs5Gf.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwOD4Fs5Gf.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwOD4Fs5Gf .modal-content,
.cid-uwOD4Fs5Gf .modal-dialog {
  height: auto;
}
.cid-uwOD4Fs5Gf .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwOD4Fs5Gf .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwOD4Fs5Gf .form-wrapper .mbr-form .form-group,
  .cid-uwOD4Fs5Gf .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwOD4Fs5Gf .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwOD4Fs5Gf .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-uwOD4Fs5Gf .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwOD4Fs5Gf .pt-0 {
  padding-top: 0 !important;
}
.cid-uwOD4Fs5Gf .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwOD4Fs5Gf .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwOD4Fs5Gf .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwOD4Fs5Gf .modal-open {
  overflow: hidden;
}
.cid-uwOD4Fs5Gf .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwOD4Fs5Gf .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwOD4Fs5Gf .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwOD4Fs5Gf .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-uwOD4Fs5Gf .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwOD4Fs5Gf .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwOD4Fs5Gf .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwOD4Fs5Gf .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwOD4Fs5Gf .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwOD4Fs5Gf .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwOD4Fs5Gf .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwOD4Fs5Gf .modal-backdrop.show {
  opacity: .5;
}
.cid-uwOD4Fs5Gf .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-uwOD4Fs5Gf .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOD4Fs5Gf .modal-header {
    padding: 1rem;
  }
}
.cid-uwOD4Fs5Gf .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwOD4Fs5Gf .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwOD4Fs5Gf .modal-header .close:hover {
  opacity: 1;
}
.cid-uwOD4Fs5Gf .modal-header .close:focus {
  outline: none;
}
.cid-uwOD4Fs5Gf .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwOD4Fs5Gf .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwOD4Fs5Gf .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOD4Fs5Gf .modal-body {
    padding: 1rem;
  }
}
.cid-uwOD4Fs5Gf .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-uwOD4Fs5Gf .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwOD4Fs5Gf .modal-footer {
    padding: 1rem;
  }
}
.cid-uwOD4Fs5Gf .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwOD4Fs5Gf .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwOD4Fs5Gf .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwOD4Fs5Gf .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwOD4Fs5Gf .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwOD4Fs5Gf .modal-lg,
  .cid-uwOD4Fs5Gf .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwOD4Fs5Gf .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwOD4Fs5Gf .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwOD4Fs5Gf .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-uwOD4Fs5Gf .form-group {
  margin-bottom: 1rem;
}
.cid-uwOD4Fs5Gf .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwOD4Fs5Gf .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwOD4Fs5Gf .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-uwOD4Fs5Gf .mbr-section-btn {
  margin: 0;
}
.cid-uwOD4Fs5Gf .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAb10lWu39 .dropdown-menu {
  padding: 12px 0;
}
.cid-uAb10lWu39 .dropdown-item:hover,
.cid-uAb10lWu39 .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAb10lWu39 .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAb10lWu39 .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAb10lWu39 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAb10lWu39 .nav-link {
  position: relative;
}
.cid-uAb10lWu39 .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAb10lWu39 .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAb10lWu39 .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAb10lWu39 .dropdown-menu,
.cid-uAb10lWu39 .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAb10lWu39 .nav-item:focus,
.cid-uAb10lWu39 .nav-link:focus {
  outline: none;
}
.cid-uAb10lWu39 .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAb10lWu39 .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAb10lWu39 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAb10lWu39 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAb10lWu39 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAb10lWu39 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAb10lWu39 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAb10lWu39 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAb10lWu39 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAb10lWu39 .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAb10lWu39 .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAb10lWu39 .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAb10lWu39 .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAb10lWu39 .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAb10lWu39 .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAb10lWu39 .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAb10lWu39 .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAb10lWu39 .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAb10lWu39 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAb10lWu39 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAb10lWu39 .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAb10lWu39 .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAb10lWu39 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAb10lWu39 .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAb10lWu39 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAb10lWu39 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAb10lWu39 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAb10lWu39 .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: 55%;
}
.cid-uAb10lWu39 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAb10lWu39 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAb10lWu39 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAb10lWu39 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAb10lWu39 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAb10lWu39 .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAb10lWu39 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAb10lWu39 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAb10lWu39 .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: 41%;
  }
  .cid-uAb10lWu39 .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAb10lWu39 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAb10lWu39 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAb10lWu39 .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAb10lWu39 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAb10lWu39 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAb10lWu39 .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAb10lWu39 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAb10lWu39 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAb10lWu39 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAb10lWu39 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAb10lWu39 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAb10lWu39 .dropdown-item.active,
.cid-uAb10lWu39 .dropdown-item:active {
  background-color: transparent;
}
.cid-uAb10lWu39 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAb10lWu39 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAb10lWu39 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAb10lWu39 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAb10lWu39 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAb10lWu39 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAb10lWu39 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAb10lWu39 .navbar-buttons {
  text-align: center;
}
.cid-uAb10lWu39 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAb10lWu39 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAb10lWu39 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAb10lWu39 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAb10lWu39 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAb10lWu39 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAb10lWu39 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAb10lWu39 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAb10lWu39 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAb10lWu39 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAb10lWu39 .navbar-dropdown {
  position: fixed;
}
.cid-uAb10lWu39 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAb10lWu39 .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAb10lWu39 .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAb10lWu39 .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAb10lWu39 .navbar {
    height: 77px;
  }
  .cid-uAb10lWu39 .navbar.opened {
    height: auto;
  }
  .cid-uAb10lWu39 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAfFm3JsEV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/banner-tx-1005x588.jpg");
}
.cid-uAfFm3JsEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfFm3JsEV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAfFm3JsEV .container {
    padding: 0 20px;
  }
}
.cid-uAfFm3JsEV .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAfFm3JsEV .title-wrapper .mbr-desc {
  margin: 0;
}
.cid-uAfFm3JsEV .mbr-section-title {
  color: #f3ca27;
  text-align: center;
}
.cid-uAfFm3JsEV .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uAbeMsOl5o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-uAbeMsOl5o .container {
    max-width: 1400px;
  }
}
.cid-uAbeMsOl5o .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uAbeMsOl5o .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uAbeMsOl5o .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uAbeMsOl5o .main-title {
  margin-bottom: 16px;
}
.cid-uAbeMsOl5o .card {
  transition: all 0.3s;
}
.cid-uAbeMsOl5o .card .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uAbeMsOl5o .card .card-wrapper .img-wrapper {
  width: auto;
  height: 220px;
  margin-bottom: 30px;
}
.cid-uAbeMsOl5o .card .card-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.cid-uAbeMsOl5o .card .card-wrapper .card-box {
  padding-top: 30px;
}
.cid-uAbeMsOl5o .card .card-wrapper .card-box .card-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.cid-uAbeMsOl5o .card .card-wrapper .card-box .mbr-text {
  font-weight: 400;
}
.cid-uAbeMsOl5o .card .card-wrapper .card-box .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .cid-uAbeMsOl5o .card-box {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uAbeMsOl5o .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem !important;
  box-shadow: none !important;
}
.cid-uAbeMsOl5o .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  padding-left: 0.4rem;
  transition: padding 0.3s !important;
}
.cid-uAbeMsOl5o .btn[class*="-outline"]:hover span {
  padding-left: 15px;
}
.cid-uAbeMsOl5o .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #000000 !important;
  box-shadow: none !important;
}
.cid-uAbeMsOl5o .btn[class*="-outline"]:active,
.cid-uAbeMsOl5o .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-uAbeMsOl5o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAbeMsOl5o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAb10pb4tA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAb10pb4tA .container-fluid {
  padding: 0 3rem;
}
.cid-uAb10pb4tA .media-container-column {
  padding: 0 2rem;
}
.cid-uAb10pb4tA .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uAb10pb4tA .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAb10qajlX {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f9fafb;
}
.cid-uAb10qajlX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAb10qajlX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAb10qajlX .container {
    padding: 0 20px;
  }
}
.cid-uAb10qajlX .row {
  margin: 0;
}
.cid-uAb10qajlX .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uAb10qajlX .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAb10qajlX .row .panel-group .card {
  border-bottom: 2px solid #000000;
  border-radius: 0;
}
.cid-uAb10qajlX .row .panel-group .card:first-child {
  border-top: 2px solid #000000;
}
.cid-uAb10qajlX .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-uAb10qajlX .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uAb10qajlX .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uAb10qajlX .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAb10qajlX .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-uAb10qajlX .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uAb10qajlX .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-uAb10qajlX .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uAb10qajlX .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uAb10qajlX .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uAb10qajlX .panel-title-edit,
.cid-uAb10qajlX .mbr-iconfont {
  color: #410078;
}
.cid-uAb10qajlX .mbr-text {
  color: #000000;
}
.cid-uAb10rymLQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uAb10rymLQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAb10rymLQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAb10rymLQ .container {
    padding: 0 16px;
  }
}
.cid-uAb10rymLQ .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAb10rymLQ .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAb10rymLQ .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uAb10rymLQ .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAb10rymLQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAb10rymLQ .mbr-text {
  color: #ffffff;
}
.cid-uAb10rymLQ .mbr-text,
.cid-uAb10rymLQ .mbr-section-btn {
  text-align: center;
  color: #410078;
}
.cid-uAb10rymLQ .mbr-section-title,
.cid-uAb10rymLQ .title-wrap {
  color: #410078;
}
.cid-uAb10s6Rq4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAb10s6Rq4 .container-fluid {
  padding: 0 3rem;
}
.cid-uAb10s6Rq4 .media-container-column {
  padding: 0 2rem;
}
.cid-uAb10s6Rq4 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAb10s6Rq4 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAb10sBjLs.popup-builder {
  background-color: #ffffff;
}
.cid-uAb10sBjLs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAb10sBjLs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAb10sBjLs .modal-content,
.cid-uAb10sBjLs .modal-dialog {
  height: auto;
}
.cid-uAb10sBjLs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAb10sBjLs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAb10sBjLs .form-wrapper .mbr-form .form-group,
  .cid-uAb10sBjLs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAb10sBjLs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAb10sBjLs .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-uAb10sBjLs .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAb10sBjLs .pt-0 {
  padding-top: 0 !important;
}
.cid-uAb10sBjLs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAb10sBjLs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAb10sBjLs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAb10sBjLs .modal-open {
  overflow: hidden;
}
.cid-uAb10sBjLs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAb10sBjLs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAb10sBjLs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAb10sBjLs .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-uAb10sBjLs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAb10sBjLs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAb10sBjLs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAb10sBjLs .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAb10sBjLs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAb10sBjLs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAb10sBjLs .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAb10sBjLs .modal-backdrop.show {
  opacity: .5;
}
.cid-uAb10sBjLs .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-uAb10sBjLs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10sBjLs .modal-header {
    padding: 1rem;
  }
}
.cid-uAb10sBjLs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAb10sBjLs .modal-header .close svg {
  fill: #260641;
}
.cid-uAb10sBjLs .modal-header .close:hover {
  opacity: 1;
}
.cid-uAb10sBjLs .modal-header .close:focus {
  outline: none;
}
.cid-uAb10sBjLs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAb10sBjLs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAb10sBjLs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10sBjLs .modal-body {
    padding: 1rem;
  }
}
.cid-uAb10sBjLs .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-uAb10sBjLs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10sBjLs .modal-footer {
    padding: 1rem;
  }
}
.cid-uAb10sBjLs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAb10sBjLs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAb10sBjLs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAb10sBjLs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAb10sBjLs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAb10sBjLs .modal-lg,
  .cid-uAb10sBjLs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAb10sBjLs .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAb10sBjLs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAb10sBjLs .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-uAb10sBjLs .form-group {
  margin-bottom: 1rem;
}
.cid-uAb10sBjLs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAb10sBjLs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAb10sBjLs .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-uAb10sBjLs .mbr-section-btn {
  margin: 0;
}
.cid-uAb10sBjLs .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAb10tfQl2.popup-builder {
  background-color: #ffffff;
}
.cid-uAb10tfQl2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAb10tfQl2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAb10tfQl2 .modal-content,
.cid-uAb10tfQl2 .modal-dialog {
  height: auto;
}
.cid-uAb10tfQl2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAb10tfQl2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAb10tfQl2 .form-wrapper .mbr-form .form-group,
  .cid-uAb10tfQl2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAb10tfQl2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAb10tfQl2 .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-uAb10tfQl2 .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uAb10tfQl2 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAb10tfQl2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAb10tfQl2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAb10tfQl2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAb10tfQl2 .modal-open {
  overflow: hidden;
}
.cid-uAb10tfQl2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAb10tfQl2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAb10tfQl2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAb10tfQl2 .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-uAb10tfQl2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAb10tfQl2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAb10tfQl2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAb10tfQl2 .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAb10tfQl2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAb10tfQl2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAb10tfQl2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAb10tfQl2 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAb10tfQl2 .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-uAb10tfQl2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10tfQl2 .modal-header {
    padding: 1rem;
  }
}
.cid-uAb10tfQl2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAb10tfQl2 .modal-header .close svg {
  fill: #5849aa;
}
.cid-uAb10tfQl2 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAb10tfQl2 .modal-header .close:focus {
  outline: none;
}
.cid-uAb10tfQl2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uAb10tfQl2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAb10tfQl2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10tfQl2 .modal-body {
    padding: 1rem;
  }
}
.cid-uAb10tfQl2 .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-uAb10tfQl2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10tfQl2 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAb10tfQl2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAb10tfQl2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAb10tfQl2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAb10tfQl2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAb10tfQl2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAb10tfQl2 .modal-lg,
  .cid-uAb10tfQl2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAb10tfQl2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAb10tfQl2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAb10tfQl2 .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-uAb10tfQl2 .form-group {
  margin-bottom: 1rem;
}
.cid-uAb10tfQl2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAb10tfQl2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAb10tfQl2 .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-uAb10tfQl2 .mbr-section-btn {
  margin: 0;
}
.cid-uAb10tfQl2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAb10tYXPl.popup-builder {
  background-color: #ffffff;
}
.cid-uAb10tYXPl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAb10tYXPl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAb10tYXPl .modal-content,
.cid-uAb10tYXPl .modal-dialog {
  height: auto;
}
.cid-uAb10tYXPl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAb10tYXPl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAb10tYXPl .form-wrapper .mbr-form .form-group,
  .cid-uAb10tYXPl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAb10tYXPl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAb10tYXPl .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-uAb10tYXPl .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uAb10tYXPl .pt-0 {
  padding-top: 0 !important;
}
.cid-uAb10tYXPl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAb10tYXPl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAb10tYXPl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAb10tYXPl .modal-open {
  overflow: hidden;
}
.cid-uAb10tYXPl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAb10tYXPl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAb10tYXPl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAb10tYXPl .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-uAb10tYXPl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAb10tYXPl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAb10tYXPl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAb10tYXPl .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAb10tYXPl .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAb10tYXPl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAb10tYXPl .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAb10tYXPl .modal-backdrop.show {
  opacity: .5;
}
.cid-uAb10tYXPl .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-uAb10tYXPl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10tYXPl .modal-header {
    padding: 1rem;
  }
}
.cid-uAb10tYXPl .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAb10tYXPl .modal-header .close svg {
  fill: #611750;
}
.cid-uAb10tYXPl .modal-header .close:hover {
  opacity: 1;
}
.cid-uAb10tYXPl .modal-header .close:focus {
  outline: none;
}
.cid-uAb10tYXPl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAb10tYXPl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAb10tYXPl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10tYXPl .modal-body {
    padding: 1rem;
  }
}
.cid-uAb10tYXPl .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-uAb10tYXPl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10tYXPl .modal-footer {
    padding: 1rem;
  }
}
.cid-uAb10tYXPl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAb10tYXPl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAb10tYXPl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAb10tYXPl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAb10tYXPl .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAb10tYXPl .modal-lg,
  .cid-uAb10tYXPl .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAb10tYXPl .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAb10tYXPl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAb10tYXPl .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-uAb10tYXPl .form-group {
  margin-bottom: 1rem;
}
.cid-uAb10tYXPl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAb10tYXPl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAb10tYXPl .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-uAb10tYXPl .mbr-section-btn {
  margin: 0;
}
.cid-uAb10tYXPl .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAb10uE0O8.popup-builder {
  background-color: #ffffff;
}
.cid-uAb10uE0O8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAb10uE0O8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAb10uE0O8 .modal-content,
.cid-uAb10uE0O8 .modal-dialog {
  height: auto;
}
.cid-uAb10uE0O8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAb10uE0O8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAb10uE0O8 .form-wrapper .mbr-form .form-group,
  .cid-uAb10uE0O8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAb10uE0O8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAb10uE0O8 .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-uAb10uE0O8 .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAb10uE0O8 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAb10uE0O8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAb10uE0O8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAb10uE0O8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAb10uE0O8 .modal-open {
  overflow: hidden;
}
.cid-uAb10uE0O8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAb10uE0O8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAb10uE0O8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAb10uE0O8 .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-uAb10uE0O8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAb10uE0O8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAb10uE0O8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAb10uE0O8 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAb10uE0O8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAb10uE0O8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAb10uE0O8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAb10uE0O8 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAb10uE0O8 .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-uAb10uE0O8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10uE0O8 .modal-header {
    padding: 1rem;
  }
}
.cid-uAb10uE0O8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAb10uE0O8 .modal-header .close svg {
  fill: #59307c;
}
.cid-uAb10uE0O8 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAb10uE0O8 .modal-header .close:focus {
  outline: none;
}
.cid-uAb10uE0O8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAb10uE0O8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAb10uE0O8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10uE0O8 .modal-body {
    padding: 1rem;
  }
}
.cid-uAb10uE0O8 .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-uAb10uE0O8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10uE0O8 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAb10uE0O8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAb10uE0O8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAb10uE0O8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAb10uE0O8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAb10uE0O8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAb10uE0O8 .modal-lg,
  .cid-uAb10uE0O8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAb10uE0O8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAb10uE0O8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAb10uE0O8 .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-uAb10uE0O8 .form-group {
  margin-bottom: 1rem;
}
.cid-uAb10uE0O8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAb10uE0O8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAb10uE0O8 .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-uAb10uE0O8 .mbr-section-btn {
  margin: 0;
}
.cid-uAb10uE0O8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAb10vlBoA.popup-builder {
  background-color: #ffffff;
}
.cid-uAb10vlBoA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAb10vlBoA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAb10vlBoA .modal-content,
.cid-uAb10vlBoA .modal-dialog {
  height: auto;
}
.cid-uAb10vlBoA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAb10vlBoA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAb10vlBoA .form-wrapper .mbr-form .form-group,
  .cid-uAb10vlBoA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAb10vlBoA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAb10vlBoA .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-uAb10vlBoA .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAb10vlBoA .pt-0 {
  padding-top: 0 !important;
}
.cid-uAb10vlBoA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAb10vlBoA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAb10vlBoA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAb10vlBoA .modal-open {
  overflow: hidden;
}
.cid-uAb10vlBoA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAb10vlBoA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAb10vlBoA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAb10vlBoA .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-uAb10vlBoA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAb10vlBoA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAb10vlBoA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAb10vlBoA .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAb10vlBoA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAb10vlBoA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAb10vlBoA .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAb10vlBoA .modal-backdrop.show {
  opacity: .5;
}
.cid-uAb10vlBoA .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-uAb10vlBoA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10vlBoA .modal-header {
    padding: 1rem;
  }
}
.cid-uAb10vlBoA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAb10vlBoA .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAb10vlBoA .modal-header .close:hover {
  opacity: 1;
}
.cid-uAb10vlBoA .modal-header .close:focus {
  outline: none;
}
.cid-uAb10vlBoA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAb10vlBoA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAb10vlBoA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10vlBoA .modal-body {
    padding: 1rem;
  }
}
.cid-uAb10vlBoA .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-uAb10vlBoA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10vlBoA .modal-footer {
    padding: 1rem;
  }
}
.cid-uAb10vlBoA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAb10vlBoA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAb10vlBoA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAb10vlBoA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAb10vlBoA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAb10vlBoA .modal-lg,
  .cid-uAb10vlBoA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAb10vlBoA .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAb10vlBoA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAb10vlBoA .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-uAb10vlBoA .form-group {
  margin-bottom: 1rem;
}
.cid-uAb10vlBoA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAb10vlBoA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAb10vlBoA .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-uAb10vlBoA .mbr-section-btn {
  margin: 0;
}
.cid-uAb10vlBoA .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAb10w50Uu.popup-builder {
  background-color: #ffffff;
}
.cid-uAb10w50Uu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAb10w50Uu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAb10w50Uu .modal-content,
.cid-uAb10w50Uu .modal-dialog {
  height: auto;
}
.cid-uAb10w50Uu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAb10w50Uu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAb10w50Uu .form-wrapper .mbr-form .form-group,
  .cid-uAb10w50Uu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAb10w50Uu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAb10w50Uu .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-uAb10w50Uu .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAb10w50Uu .pt-0 {
  padding-top: 0 !important;
}
.cid-uAb10w50Uu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAb10w50Uu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAb10w50Uu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAb10w50Uu .modal-open {
  overflow: hidden;
}
.cid-uAb10w50Uu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAb10w50Uu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAb10w50Uu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAb10w50Uu .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-uAb10w50Uu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAb10w50Uu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAb10w50Uu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAb10w50Uu .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAb10w50Uu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAb10w50Uu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAb10w50Uu .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAb10w50Uu .modal-backdrop.show {
  opacity: .5;
}
.cid-uAb10w50Uu .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-uAb10w50Uu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10w50Uu .modal-header {
    padding: 1rem;
  }
}
.cid-uAb10w50Uu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAb10w50Uu .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAb10w50Uu .modal-header .close:hover {
  opacity: 1;
}
.cid-uAb10w50Uu .modal-header .close:focus {
  outline: none;
}
.cid-uAb10w50Uu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAb10w50Uu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAb10w50Uu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10w50Uu .modal-body {
    padding: 1rem;
  }
}
.cid-uAb10w50Uu .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-uAb10w50Uu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAb10w50Uu .modal-footer {
    padding: 1rem;
  }
}
.cid-uAb10w50Uu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAb10w50Uu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAb10w50Uu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAb10w50Uu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAb10w50Uu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAb10w50Uu .modal-lg,
  .cid-uAb10w50Uu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAb10w50Uu .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAb10w50Uu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAb10w50Uu .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-uAb10w50Uu .form-group {
  margin-bottom: 1rem;
}
.cid-uAb10w50Uu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAb10w50Uu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAb10w50Uu .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-uAb10w50Uu .mbr-section-btn {
  margin: 0;
}
.cid-uAb10w50Uu .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMhhjp.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMhhjp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMhhjp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMhhjp .modal-content,
.cid-uO9WTMhhjp .modal-dialog {
  height: auto;
}
.cid-uO9WTMhhjp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMhhjp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMhhjp .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMhhjp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMhhjp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMhhjp .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-uO9WTMhhjp .mbr-text {
  text-align: center;
}
.cid-uO9WTMhhjp .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMhhjp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMhhjp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMhhjp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMhhjp .modal-open {
  overflow: hidden;
}
.cid-uO9WTMhhjp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMhhjp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMhhjp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMhhjp .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-uO9WTMhhjp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMhhjp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMhhjp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMhhjp .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMhhjp .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMhhjp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMhhjp .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMhhjp .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMhhjp .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-uO9WTMhhjp .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhhjp .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMhhjp .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMhhjp .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMhhjp .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMhhjp .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMhhjp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMhhjp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMhhjp .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhhjp .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMhhjp .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-uO9WTMhhjp .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhhjp .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMhhjp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMhhjp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMhhjp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMhhjp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMhhjp .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMhhjp .modal-lg,
  .cid-uO9WTMhhjp .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMhhjp .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMhhjp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMhhjp .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-uO9WTMhhjp .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMhhjp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMhhjp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMhhjp .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-uO9WTMhhjp .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMhhjp .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfAXHAs0d .dropdown-menu {
  padding: 12px 0;
}
.cid-uAfAXHAs0d .dropdown-item:hover,
.cid-uAfAXHAs0d .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAfAXHAs0d .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAfAXHAs0d .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAfAXHAs0d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAfAXHAs0d .nav-link {
  position: relative;
}
.cid-uAfAXHAs0d .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAfAXHAs0d .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAfAXHAs0d .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAfAXHAs0d .dropdown-menu,
.cid-uAfAXHAs0d .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAfAXHAs0d .nav-item:focus,
.cid-uAfAXHAs0d .nav-link:focus {
  outline: none;
}
.cid-uAfAXHAs0d .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAfAXHAs0d .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAfAXHAs0d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAfAXHAs0d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAfAXHAs0d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAfAXHAs0d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAfAXHAs0d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAfAXHAs0d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAfAXHAs0d .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAfAXHAs0d .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAfAXHAs0d .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAfAXHAs0d .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAfAXHAs0d .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAfAXHAs0d .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAfAXHAs0d .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAfAXHAs0d .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAfAXHAs0d .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAfAXHAs0d .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAfAXHAs0d .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAfAXHAs0d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAfAXHAs0d .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAfAXHAs0d .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAfAXHAs0d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAfAXHAs0d .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAfAXHAs0d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAfAXHAs0d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAfAXHAs0d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAfAXHAs0d .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: 55%;
}
.cid-uAfAXHAs0d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAfAXHAs0d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAfAXHAs0d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAfAXHAs0d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAfAXHAs0d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAfAXHAs0d .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAfAXHAs0d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAfAXHAs0d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAfAXHAs0d .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: 41%;
  }
  .cid-uAfAXHAs0d .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAfAXHAs0d .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAfAXHAs0d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAfAXHAs0d .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAfAXHAs0d .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAfAXHAs0d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAfAXHAs0d .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAfAXHAs0d .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAfAXHAs0d .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAfAXHAs0d .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAfAXHAs0d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAfAXHAs0d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAfAXHAs0d .dropdown-item.active,
.cid-uAfAXHAs0d .dropdown-item:active {
  background-color: transparent;
}
.cid-uAfAXHAs0d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAfAXHAs0d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAfAXHAs0d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAfAXHAs0d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAfAXHAs0d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAfAXHAs0d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAfAXHAs0d ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAfAXHAs0d .navbar-buttons {
  text-align: center;
}
.cid-uAfAXHAs0d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAfAXHAs0d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAfAXHAs0d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAfAXHAs0d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAfAXHAs0d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAfAXHAs0d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAfAXHAs0d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAfAXHAs0d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAfAXHAs0d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAfAXHAs0d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAfAXHAs0d .navbar-dropdown {
  position: fixed;
}
.cid-uAfAXHAs0d a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAfAXHAs0d .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAfAXHAs0d .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAfAXHAs0d .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAfAXHAs0d .navbar {
    height: 77px;
  }
  .cid-uAfAXHAs0d .navbar.opened {
    height: auto;
  }
  .cid-uAfAXHAs0d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAfEmoLn7Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/banner-la-1005x588.jpg");
}
.cid-uAfEmoLn7Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfEmoLn7Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAfEmoLn7Z .container {
    padding: 0 20px;
  }
}
.cid-uAfEmoLn7Z .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAfEmoLn7Z .title-wrapper .mbr-desc {
  margin: 0;
}
.cid-uAfEmoLn7Z .mbr-section-title {
  color: #f3ca27;
  text-align: center;
}
.cid-uAfEmoLn7Z .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uAfAXJvIMe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-uAfAXJvIMe .container {
    max-width: 1400px;
  }
}
.cid-uAfAXJvIMe .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uAfAXJvIMe .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uAfAXJvIMe .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uAfAXJvIMe .main-title {
  margin-bottom: 16px;
}
.cid-uAfAXJvIMe .card {
  transition: all 0.3s;
}
.cid-uAfAXJvIMe .card .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uAfAXJvIMe .card .card-wrapper .img-wrapper {
  width: auto;
  height: 220px;
  margin-bottom: 30px;
}
.cid-uAfAXJvIMe .card .card-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.cid-uAfAXJvIMe .card .card-wrapper .card-box {
  padding-top: 30px;
}
.cid-uAfAXJvIMe .card .card-wrapper .card-box .card-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.cid-uAfAXJvIMe .card .card-wrapper .card-box .mbr-text {
  font-weight: 400;
}
.cid-uAfAXJvIMe .card .card-wrapper .card-box .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .cid-uAfAXJvIMe .card-box {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uAfAXJvIMe .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem !important;
  box-shadow: none !important;
}
.cid-uAfAXJvIMe .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  padding-left: 0.4rem;
  transition: padding 0.3s !important;
}
.cid-uAfAXJvIMe .btn[class*="-outline"]:hover span {
  padding-left: 15px;
}
.cid-uAfAXJvIMe .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #000000 !important;
  box-shadow: none !important;
}
.cid-uAfAXJvIMe .btn[class*="-outline"]:active,
.cid-uAfAXJvIMe .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-uAfAXJvIMe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfAXJvIMe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAfAXK23ji {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAfAXK23ji .container-fluid {
  padding: 0 3rem;
}
.cid-uAfAXK23ji .media-container-column {
  padding: 0 2rem;
}
.cid-uAfAXK23ji .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #f5c463;
}
@media (max-width: 767px) {
  .cid-uAfAXK23ji .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAfAXKN70v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uAfAXKN70v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfAXKN70v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAfAXKN70v .container {
    padding: 0 16px;
  }
}
.cid-uAfAXKN70v .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAfAXKN70v .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAfAXKN70v .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uAfAXKN70v .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAfAXKN70v .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAfAXKN70v .mbr-text {
  color: #ffffff;
}
.cid-uAfAXKN70v .mbr-text,
.cid-uAfAXKN70v .mbr-section-btn {
  text-align: center;
  color: #410078;
}
.cid-uAfAXKN70v .mbr-section-title,
.cid-uAfAXKN70v .title-wrap {
  color: #410078;
}
.cid-uAfAXL7Oi7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAfAXL7Oi7 .container-fluid {
  padding: 0 3rem;
}
.cid-uAfAXL7Oi7 .media-container-column {
  padding: 0 2rem;
}
.cid-uAfAXL7Oi7 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAfAXL7Oi7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAfAXLo5se.popup-builder {
  background-color: #ffffff;
}
.cid-uAfAXLo5se.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfAXLo5se.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfAXLo5se .modal-content,
.cid-uAfAXLo5se .modal-dialog {
  height: auto;
}
.cid-uAfAXLo5se .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfAXLo5se .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfAXLo5se .form-wrapper .mbr-form .form-group,
  .cid-uAfAXLo5se .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfAXLo5se .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfAXLo5se .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-uAfAXLo5se .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAfAXLo5se .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfAXLo5se .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfAXLo5se .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfAXLo5se .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfAXLo5se .modal-open {
  overflow: hidden;
}
.cid-uAfAXLo5se .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfAXLo5se .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfAXLo5se .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfAXLo5se .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-uAfAXLo5se .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfAXLo5se .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfAXLo5se .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfAXLo5se .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfAXLo5se .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfAXLo5se .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfAXLo5se .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfAXLo5se .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfAXLo5se .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-uAfAXLo5se .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXLo5se .modal-header {
    padding: 1rem;
  }
}
.cid-uAfAXLo5se .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfAXLo5se .modal-header .close svg {
  fill: #260641;
}
.cid-uAfAXLo5se .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfAXLo5se .modal-header .close:focus {
  outline: none;
}
.cid-uAfAXLo5se .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAfAXLo5se .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfAXLo5se .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXLo5se .modal-body {
    padding: 1rem;
  }
}
.cid-uAfAXLo5se .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-uAfAXLo5se .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXLo5se .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfAXLo5se .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfAXLo5se .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfAXLo5se .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfAXLo5se .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfAXLo5se .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfAXLo5se .modal-lg,
  .cid-uAfAXLo5se .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfAXLo5se .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfAXLo5se .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfAXLo5se .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-uAfAXLo5se .form-group {
  margin-bottom: 1rem;
}
.cid-uAfAXLo5se .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfAXLo5se .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfAXLo5se .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-uAfAXLo5se .mbr-section-btn {
  margin: 0;
}
.cid-uAfAXLo5se .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfAXLPAHE.popup-builder {
  background-color: #ffffff;
}
.cid-uAfAXLPAHE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfAXLPAHE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfAXLPAHE .modal-content,
.cid-uAfAXLPAHE .modal-dialog {
  height: auto;
}
.cid-uAfAXLPAHE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfAXLPAHE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfAXLPAHE .form-wrapper .mbr-form .form-group,
  .cid-uAfAXLPAHE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfAXLPAHE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfAXLPAHE .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-uAfAXLPAHE .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uAfAXLPAHE .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfAXLPAHE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfAXLPAHE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfAXLPAHE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfAXLPAHE .modal-open {
  overflow: hidden;
}
.cid-uAfAXLPAHE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfAXLPAHE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfAXLPAHE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfAXLPAHE .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-uAfAXLPAHE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfAXLPAHE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfAXLPAHE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfAXLPAHE .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfAXLPAHE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfAXLPAHE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfAXLPAHE .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfAXLPAHE .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfAXLPAHE .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-uAfAXLPAHE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXLPAHE .modal-header {
    padding: 1rem;
  }
}
.cid-uAfAXLPAHE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfAXLPAHE .modal-header .close svg {
  fill: #5849aa;
}
.cid-uAfAXLPAHE .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfAXLPAHE .modal-header .close:focus {
  outline: none;
}
.cid-uAfAXLPAHE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uAfAXLPAHE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfAXLPAHE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXLPAHE .modal-body {
    padding: 1rem;
  }
}
.cid-uAfAXLPAHE .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-uAfAXLPAHE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXLPAHE .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfAXLPAHE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfAXLPAHE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfAXLPAHE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfAXLPAHE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfAXLPAHE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfAXLPAHE .modal-lg,
  .cid-uAfAXLPAHE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfAXLPAHE .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfAXLPAHE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfAXLPAHE .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-uAfAXLPAHE .form-group {
  margin-bottom: 1rem;
}
.cid-uAfAXLPAHE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfAXLPAHE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfAXLPAHE .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-uAfAXLPAHE .mbr-section-btn {
  margin: 0;
}
.cid-uAfAXLPAHE .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfAXMkWLW.popup-builder {
  background-color: #ffffff;
}
.cid-uAfAXMkWLW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfAXMkWLW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfAXMkWLW .modal-content,
.cid-uAfAXMkWLW .modal-dialog {
  height: auto;
}
.cid-uAfAXMkWLW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfAXMkWLW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfAXMkWLW .form-wrapper .mbr-form .form-group,
  .cid-uAfAXMkWLW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfAXMkWLW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfAXMkWLW .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-uAfAXMkWLW .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uAfAXMkWLW .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfAXMkWLW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfAXMkWLW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfAXMkWLW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfAXMkWLW .modal-open {
  overflow: hidden;
}
.cid-uAfAXMkWLW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfAXMkWLW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfAXMkWLW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfAXMkWLW .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-uAfAXMkWLW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfAXMkWLW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfAXMkWLW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfAXMkWLW .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfAXMkWLW .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfAXMkWLW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfAXMkWLW .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfAXMkWLW .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfAXMkWLW .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-uAfAXMkWLW .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXMkWLW .modal-header {
    padding: 1rem;
  }
}
.cid-uAfAXMkWLW .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfAXMkWLW .modal-header .close svg {
  fill: #611750;
}
.cid-uAfAXMkWLW .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfAXMkWLW .modal-header .close:focus {
  outline: none;
}
.cid-uAfAXMkWLW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAfAXMkWLW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfAXMkWLW .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXMkWLW .modal-body {
    padding: 1rem;
  }
}
.cid-uAfAXMkWLW .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-uAfAXMkWLW .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXMkWLW .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfAXMkWLW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfAXMkWLW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfAXMkWLW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfAXMkWLW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfAXMkWLW .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfAXMkWLW .modal-lg,
  .cid-uAfAXMkWLW .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfAXMkWLW .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfAXMkWLW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfAXMkWLW .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-uAfAXMkWLW .form-group {
  margin-bottom: 1rem;
}
.cid-uAfAXMkWLW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfAXMkWLW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfAXMkWLW .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-uAfAXMkWLW .mbr-section-btn {
  margin: 0;
}
.cid-uAfAXMkWLW .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfAXMLsCk.popup-builder {
  background-color: #ffffff;
}
.cid-uAfAXMLsCk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfAXMLsCk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfAXMLsCk .modal-content,
.cid-uAfAXMLsCk .modal-dialog {
  height: auto;
}
.cid-uAfAXMLsCk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfAXMLsCk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfAXMLsCk .form-wrapper .mbr-form .form-group,
  .cid-uAfAXMLsCk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfAXMLsCk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfAXMLsCk .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-uAfAXMLsCk .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAfAXMLsCk .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfAXMLsCk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfAXMLsCk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfAXMLsCk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfAXMLsCk .modal-open {
  overflow: hidden;
}
.cid-uAfAXMLsCk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfAXMLsCk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfAXMLsCk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfAXMLsCk .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-uAfAXMLsCk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfAXMLsCk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfAXMLsCk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfAXMLsCk .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfAXMLsCk .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfAXMLsCk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfAXMLsCk .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfAXMLsCk .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfAXMLsCk .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-uAfAXMLsCk .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXMLsCk .modal-header {
    padding: 1rem;
  }
}
.cid-uAfAXMLsCk .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfAXMLsCk .modal-header .close svg {
  fill: #59307c;
}
.cid-uAfAXMLsCk .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfAXMLsCk .modal-header .close:focus {
  outline: none;
}
.cid-uAfAXMLsCk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAfAXMLsCk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfAXMLsCk .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXMLsCk .modal-body {
    padding: 1rem;
  }
}
.cid-uAfAXMLsCk .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-uAfAXMLsCk .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXMLsCk .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfAXMLsCk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfAXMLsCk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfAXMLsCk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfAXMLsCk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfAXMLsCk .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfAXMLsCk .modal-lg,
  .cid-uAfAXMLsCk .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfAXMLsCk .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfAXMLsCk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfAXMLsCk .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-uAfAXMLsCk .form-group {
  margin-bottom: 1rem;
}
.cid-uAfAXMLsCk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfAXMLsCk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfAXMLsCk .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-uAfAXMLsCk .mbr-section-btn {
  margin: 0;
}
.cid-uAfAXMLsCk .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfAXNeHXL.popup-builder {
  background-color: #ffffff;
}
.cid-uAfAXNeHXL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfAXNeHXL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfAXNeHXL .modal-content,
.cid-uAfAXNeHXL .modal-dialog {
  height: auto;
}
.cid-uAfAXNeHXL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfAXNeHXL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfAXNeHXL .form-wrapper .mbr-form .form-group,
  .cid-uAfAXNeHXL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfAXNeHXL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfAXNeHXL .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-uAfAXNeHXL .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAfAXNeHXL .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfAXNeHXL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfAXNeHXL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfAXNeHXL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfAXNeHXL .modal-open {
  overflow: hidden;
}
.cid-uAfAXNeHXL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfAXNeHXL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfAXNeHXL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfAXNeHXL .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-uAfAXNeHXL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfAXNeHXL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfAXNeHXL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfAXNeHXL .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfAXNeHXL .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfAXNeHXL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfAXNeHXL .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfAXNeHXL .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfAXNeHXL .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-uAfAXNeHXL .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXNeHXL .modal-header {
    padding: 1rem;
  }
}
.cid-uAfAXNeHXL .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfAXNeHXL .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAfAXNeHXL .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfAXNeHXL .modal-header .close:focus {
  outline: none;
}
.cid-uAfAXNeHXL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAfAXNeHXL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfAXNeHXL .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXNeHXL .modal-body {
    padding: 1rem;
  }
}
.cid-uAfAXNeHXL .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-uAfAXNeHXL .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXNeHXL .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfAXNeHXL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfAXNeHXL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfAXNeHXL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfAXNeHXL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfAXNeHXL .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfAXNeHXL .modal-lg,
  .cid-uAfAXNeHXL .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfAXNeHXL .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfAXNeHXL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfAXNeHXL .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-uAfAXNeHXL .form-group {
  margin-bottom: 1rem;
}
.cid-uAfAXNeHXL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfAXNeHXL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfAXNeHXL .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-uAfAXNeHXL .mbr-section-btn {
  margin: 0;
}
.cid-uAfAXNeHXL .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfAXNGgUo.popup-builder {
  background-color: #ffffff;
}
.cid-uAfAXNGgUo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfAXNGgUo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfAXNGgUo .modal-content,
.cid-uAfAXNGgUo .modal-dialog {
  height: auto;
}
.cid-uAfAXNGgUo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfAXNGgUo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfAXNGgUo .form-wrapper .mbr-form .form-group,
  .cid-uAfAXNGgUo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfAXNGgUo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfAXNGgUo .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-uAfAXNGgUo .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAfAXNGgUo .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfAXNGgUo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfAXNGgUo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfAXNGgUo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfAXNGgUo .modal-open {
  overflow: hidden;
}
.cid-uAfAXNGgUo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfAXNGgUo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfAXNGgUo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfAXNGgUo .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-uAfAXNGgUo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfAXNGgUo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfAXNGgUo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfAXNGgUo .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfAXNGgUo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfAXNGgUo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfAXNGgUo .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfAXNGgUo .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfAXNGgUo .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-uAfAXNGgUo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXNGgUo .modal-header {
    padding: 1rem;
  }
}
.cid-uAfAXNGgUo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfAXNGgUo .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAfAXNGgUo .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfAXNGgUo .modal-header .close:focus {
  outline: none;
}
.cid-uAfAXNGgUo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAfAXNGgUo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfAXNGgUo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXNGgUo .modal-body {
    padding: 1rem;
  }
}
.cid-uAfAXNGgUo .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-uAfAXNGgUo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfAXNGgUo .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfAXNGgUo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfAXNGgUo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfAXNGgUo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfAXNGgUo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfAXNGgUo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfAXNGgUo .modal-lg,
  .cid-uAfAXNGgUo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfAXNGgUo .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfAXNGgUo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfAXNGgUo .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-uAfAXNGgUo .form-group {
  margin-bottom: 1rem;
}
.cid-uAfAXNGgUo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfAXNGgUo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfAXNGgUo .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-uAfAXNGgUo .mbr-section-btn {
  margin: 0;
}
.cid-uAfAXNGgUo .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMhh9f.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMhh9f.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMhh9f.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMhh9f .modal-content,
.cid-uO9WTMhh9f .modal-dialog {
  height: auto;
}
.cid-uO9WTMhh9f .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMhh9f .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMhh9f .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMhh9f .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMhh9f .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMhh9f .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-uO9WTMhh9f .mbr-text {
  text-align: center;
}
.cid-uO9WTMhh9f .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMhh9f .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMhh9f .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMhh9f .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMhh9f .modal-open {
  overflow: hidden;
}
.cid-uO9WTMhh9f .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMhh9f .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMhh9f .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMhh9f .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-uO9WTMhh9f .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMhh9f .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMhh9f .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMhh9f .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMhh9f .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMhh9f .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMhh9f .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMhh9f .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMhh9f .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-uO9WTMhh9f .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhh9f .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMhh9f .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMhh9f .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMhh9f .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMhh9f .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMhh9f .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMhh9f .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMhh9f .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhh9f .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMhh9f .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-uO9WTMhh9f .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhh9f .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMhh9f .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMhh9f .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMhh9f .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMhh9f .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMhh9f .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMhh9f .modal-lg,
  .cid-uO9WTMhh9f .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMhh9f .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMhh9f .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMhh9f .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-uO9WTMhh9f .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMhh9f .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMhh9f .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMhh9f .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-uO9WTMhh9f .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMhh9f .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfHHEB7Sz .dropdown-menu {
  padding: 12px 0;
}
.cid-uAfHHEB7Sz .dropdown-item:hover,
.cid-uAfHHEB7Sz .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAfHHEB7Sz .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAfHHEB7Sz .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAfHHEB7Sz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAfHHEB7Sz .nav-link {
  position: relative;
}
.cid-uAfHHEB7Sz .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAfHHEB7Sz .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAfHHEB7Sz .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAfHHEB7Sz .dropdown-menu,
.cid-uAfHHEB7Sz .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAfHHEB7Sz .nav-item:focus,
.cid-uAfHHEB7Sz .nav-link:focus {
  outline: none;
}
.cid-uAfHHEB7Sz .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAfHHEB7Sz .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAfHHEB7Sz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAfHHEB7Sz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAfHHEB7Sz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAfHHEB7Sz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAfHHEB7Sz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAfHHEB7Sz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAfHHEB7Sz .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAfHHEB7Sz .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAfHHEB7Sz .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAfHHEB7Sz .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAfHHEB7Sz .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAfHHEB7Sz .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAfHHEB7Sz .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAfHHEB7Sz .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAfHHEB7Sz .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAfHHEB7Sz .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAfHHEB7Sz .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAfHHEB7Sz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAfHHEB7Sz .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAfHHEB7Sz .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAfHHEB7Sz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAfHHEB7Sz .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAfHHEB7Sz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAfHHEB7Sz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAfHHEB7Sz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAfHHEB7Sz .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: 55%;
}
.cid-uAfHHEB7Sz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAfHHEB7Sz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAfHHEB7Sz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAfHHEB7Sz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAfHHEB7Sz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAfHHEB7Sz .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAfHHEB7Sz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAfHHEB7Sz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAfHHEB7Sz .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: 41%;
  }
  .cid-uAfHHEB7Sz .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAfHHEB7Sz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAfHHEB7Sz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAfHHEB7Sz .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAfHHEB7Sz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAfHHEB7Sz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAfHHEB7Sz .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAfHHEB7Sz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAfHHEB7Sz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAfHHEB7Sz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAfHHEB7Sz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAfHHEB7Sz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAfHHEB7Sz .dropdown-item.active,
.cid-uAfHHEB7Sz .dropdown-item:active {
  background-color: transparent;
}
.cid-uAfHHEB7Sz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAfHHEB7Sz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAfHHEB7Sz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAfHHEB7Sz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAfHHEB7Sz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAfHHEB7Sz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAfHHEB7Sz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAfHHEB7Sz .navbar-buttons {
  text-align: center;
}
.cid-uAfHHEB7Sz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAfHHEB7Sz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAfHHEB7Sz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAfHHEB7Sz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAfHHEB7Sz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAfHHEB7Sz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAfHHEB7Sz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAfHHEB7Sz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAfHHEB7Sz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAfHHEB7Sz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAfHHEB7Sz .navbar-dropdown {
  position: fixed;
}
.cid-uAfHHEB7Sz a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAfHHEB7Sz .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAfHHEB7Sz .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAfHHEB7Sz .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAfHHEB7Sz .navbar {
    height: 77px;
  }
  .cid-uAfHHEB7Sz .navbar.opened {
    height: auto;
  }
  .cid-uAfHHEB7Sz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAfHHICjUN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/banner-ok-1005x588.jpg");
}
.cid-uAfHHICjUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfHHICjUN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAfHHICjUN .container {
    padding: 0 20px;
  }
}
.cid-uAfHHICjUN .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAfHHICjUN .title-wrapper .mbr-desc {
  margin: 0;
}
.cid-uAfHHICjUN .mbr-section-title {
  color: #f3ca27;
  text-align: center;
}
.cid-uAfHHICjUN .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uAfHHJ0mEc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-uAfHHJ0mEc .container {
    max-width: 1400px;
  }
}
.cid-uAfHHJ0mEc .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uAfHHJ0mEc .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uAfHHJ0mEc .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uAfHHJ0mEc .main-title {
  margin-bottom: 16px;
}
.cid-uAfHHJ0mEc .card {
  transition: all 0.3s;
}
.cid-uAfHHJ0mEc .card .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uAfHHJ0mEc .card .card-wrapper .img-wrapper {
  width: auto;
  height: 220px;
  margin-bottom: 30px;
}
.cid-uAfHHJ0mEc .card .card-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.cid-uAfHHJ0mEc .card .card-wrapper .card-box {
  padding-top: 30px;
}
.cid-uAfHHJ0mEc .card .card-wrapper .card-box .card-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.cid-uAfHHJ0mEc .card .card-wrapper .card-box .mbr-text {
  font-weight: 400;
}
.cid-uAfHHJ0mEc .card .card-wrapper .card-box .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .cid-uAfHHJ0mEc .card-box {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uAfHHJ0mEc .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem !important;
  box-shadow: none !important;
}
.cid-uAfHHJ0mEc .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  padding-left: 0.4rem;
  transition: padding 0.3s !important;
}
.cid-uAfHHJ0mEc .btn[class*="-outline"]:hover span {
  padding-left: 15px;
}
.cid-uAfHHJ0mEc .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #000000 !important;
  box-shadow: none !important;
}
.cid-uAfHHJ0mEc .btn[class*="-outline"]:active,
.cid-uAfHHJ0mEc .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-uAfHHJ0mEc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfHHJ0mEc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAfQRoUEc8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uAfQRoUEc8 .mbr-section-title {
  color: #404040;
}
.cid-uAfQRoUEc8 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uAfQRoUEc8 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uAfQRoUEc8 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAfQRoUEc8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfQRoUEc8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAfHHJF8u9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAfHHJF8u9 .container-fluid {
  padding: 0 3rem;
}
.cid-uAfHHJF8u9 .media-container-column {
  padding: 0 2rem;
}
.cid-uAfHHJF8u9 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #f5c463;
}
@media (max-width: 767px) {
  .cid-uAfHHJF8u9 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAfHHJXfFV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uAfHHJXfFV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfHHJXfFV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAfHHJXfFV .container {
    padding: 0 16px;
  }
}
.cid-uAfHHJXfFV .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAfHHJXfFV .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAfHHJXfFV .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uAfHHJXfFV .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAfHHJXfFV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAfHHJXfFV .mbr-text {
  color: #ffffff;
}
.cid-uAfHHJXfFV .mbr-text,
.cid-uAfHHJXfFV .mbr-section-btn {
  text-align: center;
  color: #410078;
}
.cid-uAfHHJXfFV .mbr-section-title,
.cid-uAfHHJXfFV .title-wrap {
  color: #410078;
}
.cid-uAfHHKi0AJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAfHHKi0AJ .container-fluid {
  padding: 0 3rem;
}
.cid-uAfHHKi0AJ .media-container-column {
  padding: 0 2rem;
}
.cid-uAfHHKi0AJ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAfHHKi0AJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAfHHKBBCi.popup-builder {
  background-color: #ffffff;
}
.cid-uAfHHKBBCi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfHHKBBCi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfHHKBBCi .modal-content,
.cid-uAfHHKBBCi .modal-dialog {
  height: auto;
}
.cid-uAfHHKBBCi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfHHKBBCi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfHHKBBCi .form-wrapper .mbr-form .form-group,
  .cid-uAfHHKBBCi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfHHKBBCi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfHHKBBCi .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-uAfHHKBBCi .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAfHHKBBCi .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfHHKBBCi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfHHKBBCi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfHHKBBCi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfHHKBBCi .modal-open {
  overflow: hidden;
}
.cid-uAfHHKBBCi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfHHKBBCi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfHHKBBCi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfHHKBBCi .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-uAfHHKBBCi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfHHKBBCi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfHHKBBCi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfHHKBBCi .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfHHKBBCi .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfHHKBBCi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfHHKBBCi .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfHHKBBCi .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfHHKBBCi .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-uAfHHKBBCi .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHKBBCi .modal-header {
    padding: 1rem;
  }
}
.cid-uAfHHKBBCi .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfHHKBBCi .modal-header .close svg {
  fill: #260641;
}
.cid-uAfHHKBBCi .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfHHKBBCi .modal-header .close:focus {
  outline: none;
}
.cid-uAfHHKBBCi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAfHHKBBCi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfHHKBBCi .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHKBBCi .modal-body {
    padding: 1rem;
  }
}
.cid-uAfHHKBBCi .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-uAfHHKBBCi .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHKBBCi .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfHHKBBCi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfHHKBBCi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfHHKBBCi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfHHKBBCi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfHHKBBCi .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfHHKBBCi .modal-lg,
  .cid-uAfHHKBBCi .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfHHKBBCi .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfHHKBBCi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfHHKBBCi .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-uAfHHKBBCi .form-group {
  margin-bottom: 1rem;
}
.cid-uAfHHKBBCi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfHHKBBCi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfHHKBBCi .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-uAfHHKBBCi .mbr-section-btn {
  margin: 0;
}
.cid-uAfHHKBBCi .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfHHLcHKA.popup-builder {
  background-color: #ffffff;
}
.cid-uAfHHLcHKA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfHHLcHKA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfHHLcHKA .modal-content,
.cid-uAfHHLcHKA .modal-dialog {
  height: auto;
}
.cid-uAfHHLcHKA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfHHLcHKA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfHHLcHKA .form-wrapper .mbr-form .form-group,
  .cid-uAfHHLcHKA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfHHLcHKA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfHHLcHKA .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-uAfHHLcHKA .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uAfHHLcHKA .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfHHLcHKA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfHHLcHKA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfHHLcHKA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfHHLcHKA .modal-open {
  overflow: hidden;
}
.cid-uAfHHLcHKA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfHHLcHKA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfHHLcHKA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfHHLcHKA .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-uAfHHLcHKA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfHHLcHKA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfHHLcHKA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfHHLcHKA .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfHHLcHKA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfHHLcHKA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfHHLcHKA .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfHHLcHKA .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfHHLcHKA .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-uAfHHLcHKA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHLcHKA .modal-header {
    padding: 1rem;
  }
}
.cid-uAfHHLcHKA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfHHLcHKA .modal-header .close svg {
  fill: #5849aa;
}
.cid-uAfHHLcHKA .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfHHLcHKA .modal-header .close:focus {
  outline: none;
}
.cid-uAfHHLcHKA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uAfHHLcHKA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfHHLcHKA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHLcHKA .modal-body {
    padding: 1rem;
  }
}
.cid-uAfHHLcHKA .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-uAfHHLcHKA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHLcHKA .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfHHLcHKA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfHHLcHKA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfHHLcHKA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfHHLcHKA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfHHLcHKA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfHHLcHKA .modal-lg,
  .cid-uAfHHLcHKA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfHHLcHKA .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfHHLcHKA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfHHLcHKA .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-uAfHHLcHKA .form-group {
  margin-bottom: 1rem;
}
.cid-uAfHHLcHKA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfHHLcHKA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfHHLcHKA .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-uAfHHLcHKA .mbr-section-btn {
  margin: 0;
}
.cid-uAfHHLcHKA .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfHHLHnre.popup-builder {
  background-color: #ffffff;
}
.cid-uAfHHLHnre.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfHHLHnre.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfHHLHnre .modal-content,
.cid-uAfHHLHnre .modal-dialog {
  height: auto;
}
.cid-uAfHHLHnre .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfHHLHnre .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfHHLHnre .form-wrapper .mbr-form .form-group,
  .cid-uAfHHLHnre .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfHHLHnre .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfHHLHnre .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-uAfHHLHnre .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uAfHHLHnre .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfHHLHnre .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfHHLHnre .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfHHLHnre .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfHHLHnre .modal-open {
  overflow: hidden;
}
.cid-uAfHHLHnre .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfHHLHnre .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfHHLHnre .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfHHLHnre .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-uAfHHLHnre .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfHHLHnre .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfHHLHnre .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfHHLHnre .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfHHLHnre .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfHHLHnre .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfHHLHnre .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfHHLHnre .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfHHLHnre .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-uAfHHLHnre .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHLHnre .modal-header {
    padding: 1rem;
  }
}
.cid-uAfHHLHnre .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfHHLHnre .modal-header .close svg {
  fill: #611750;
}
.cid-uAfHHLHnre .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfHHLHnre .modal-header .close:focus {
  outline: none;
}
.cid-uAfHHLHnre .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAfHHLHnre .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfHHLHnre .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHLHnre .modal-body {
    padding: 1rem;
  }
}
.cid-uAfHHLHnre .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-uAfHHLHnre .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHLHnre .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfHHLHnre .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfHHLHnre .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfHHLHnre .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfHHLHnre .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfHHLHnre .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfHHLHnre .modal-lg,
  .cid-uAfHHLHnre .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfHHLHnre .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfHHLHnre .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfHHLHnre .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-uAfHHLHnre .form-group {
  margin-bottom: 1rem;
}
.cid-uAfHHLHnre .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfHHLHnre .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfHHLHnre .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-uAfHHLHnre .mbr-section-btn {
  margin: 0;
}
.cid-uAfHHLHnre .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfHHMnXb6.popup-builder {
  background-color: #ffffff;
}
.cid-uAfHHMnXb6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfHHMnXb6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfHHMnXb6 .modal-content,
.cid-uAfHHMnXb6 .modal-dialog {
  height: auto;
}
.cid-uAfHHMnXb6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfHHMnXb6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfHHMnXb6 .form-wrapper .mbr-form .form-group,
  .cid-uAfHHMnXb6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfHHMnXb6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfHHMnXb6 .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-uAfHHMnXb6 .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAfHHMnXb6 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfHHMnXb6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfHHMnXb6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfHHMnXb6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfHHMnXb6 .modal-open {
  overflow: hidden;
}
.cid-uAfHHMnXb6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfHHMnXb6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfHHMnXb6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfHHMnXb6 .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-uAfHHMnXb6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfHHMnXb6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfHHMnXb6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfHHMnXb6 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfHHMnXb6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfHHMnXb6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfHHMnXb6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfHHMnXb6 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfHHMnXb6 .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-uAfHHMnXb6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHMnXb6 .modal-header {
    padding: 1rem;
  }
}
.cid-uAfHHMnXb6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfHHMnXb6 .modal-header .close svg {
  fill: #59307c;
}
.cid-uAfHHMnXb6 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfHHMnXb6 .modal-header .close:focus {
  outline: none;
}
.cid-uAfHHMnXb6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAfHHMnXb6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfHHMnXb6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHMnXb6 .modal-body {
    padding: 1rem;
  }
}
.cid-uAfHHMnXb6 .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-uAfHHMnXb6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHMnXb6 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfHHMnXb6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfHHMnXb6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfHHMnXb6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfHHMnXb6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfHHMnXb6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfHHMnXb6 .modal-lg,
  .cid-uAfHHMnXb6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfHHMnXb6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfHHMnXb6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfHHMnXb6 .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-uAfHHMnXb6 .form-group {
  margin-bottom: 1rem;
}
.cid-uAfHHMnXb6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfHHMnXb6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfHHMnXb6 .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-uAfHHMnXb6 .mbr-section-btn {
  margin: 0;
}
.cid-uAfHHMnXb6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfHHMVeiK.popup-builder {
  background-color: #ffffff;
}
.cid-uAfHHMVeiK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfHHMVeiK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfHHMVeiK .modal-content,
.cid-uAfHHMVeiK .modal-dialog {
  height: auto;
}
.cid-uAfHHMVeiK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfHHMVeiK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfHHMVeiK .form-wrapper .mbr-form .form-group,
  .cid-uAfHHMVeiK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfHHMVeiK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfHHMVeiK .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-uAfHHMVeiK .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAfHHMVeiK .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfHHMVeiK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfHHMVeiK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfHHMVeiK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfHHMVeiK .modal-open {
  overflow: hidden;
}
.cid-uAfHHMVeiK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfHHMVeiK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfHHMVeiK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfHHMVeiK .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-uAfHHMVeiK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfHHMVeiK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfHHMVeiK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfHHMVeiK .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfHHMVeiK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfHHMVeiK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfHHMVeiK .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfHHMVeiK .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfHHMVeiK .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-uAfHHMVeiK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHMVeiK .modal-header {
    padding: 1rem;
  }
}
.cid-uAfHHMVeiK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfHHMVeiK .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAfHHMVeiK .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfHHMVeiK .modal-header .close:focus {
  outline: none;
}
.cid-uAfHHMVeiK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAfHHMVeiK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfHHMVeiK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHMVeiK .modal-body {
    padding: 1rem;
  }
}
.cid-uAfHHMVeiK .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-uAfHHMVeiK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHMVeiK .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfHHMVeiK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfHHMVeiK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfHHMVeiK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfHHMVeiK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfHHMVeiK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfHHMVeiK .modal-lg,
  .cid-uAfHHMVeiK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfHHMVeiK .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfHHMVeiK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfHHMVeiK .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-uAfHHMVeiK .form-group {
  margin-bottom: 1rem;
}
.cid-uAfHHMVeiK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfHHMVeiK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfHHMVeiK .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-uAfHHMVeiK .mbr-section-btn {
  margin: 0;
}
.cid-uAfHHMVeiK .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfHHNPKu9.popup-builder {
  background-color: #ffffff;
}
.cid-uAfHHNPKu9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfHHNPKu9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfHHNPKu9 .modal-content,
.cid-uAfHHNPKu9 .modal-dialog {
  height: auto;
}
.cid-uAfHHNPKu9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfHHNPKu9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfHHNPKu9 .form-wrapper .mbr-form .form-group,
  .cid-uAfHHNPKu9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfHHNPKu9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfHHNPKu9 .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-uAfHHNPKu9 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAfHHNPKu9 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfHHNPKu9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfHHNPKu9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfHHNPKu9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfHHNPKu9 .modal-open {
  overflow: hidden;
}
.cid-uAfHHNPKu9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfHHNPKu9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfHHNPKu9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfHHNPKu9 .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-uAfHHNPKu9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfHHNPKu9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfHHNPKu9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfHHNPKu9 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfHHNPKu9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfHHNPKu9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfHHNPKu9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfHHNPKu9 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfHHNPKu9 .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-uAfHHNPKu9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHNPKu9 .modal-header {
    padding: 1rem;
  }
}
.cid-uAfHHNPKu9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfHHNPKu9 .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAfHHNPKu9 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfHHNPKu9 .modal-header .close:focus {
  outline: none;
}
.cid-uAfHHNPKu9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAfHHNPKu9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfHHNPKu9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHNPKu9 .modal-body {
    padding: 1rem;
  }
}
.cid-uAfHHNPKu9 .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-uAfHHNPKu9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfHHNPKu9 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfHHNPKu9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfHHNPKu9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfHHNPKu9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfHHNPKu9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfHHNPKu9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfHHNPKu9 .modal-lg,
  .cid-uAfHHNPKu9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfHHNPKu9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfHHNPKu9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfHHNPKu9 .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-uAfHHNPKu9 .form-group {
  margin-bottom: 1rem;
}
.cid-uAfHHNPKu9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfHHNPKu9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfHHNPKu9 .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-uAfHHNPKu9 .mbr-section-btn {
  margin: 0;
}
.cid-uAfHHNPKu9 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMhLhA.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMhLhA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMhLhA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMhLhA .modal-content,
.cid-uO9WTMhLhA .modal-dialog {
  height: auto;
}
.cid-uO9WTMhLhA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMhLhA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMhLhA .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMhLhA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMhLhA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMhLhA .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-uO9WTMhLhA .mbr-text {
  text-align: center;
}
.cid-uO9WTMhLhA .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMhLhA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMhLhA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMhLhA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMhLhA .modal-open {
  overflow: hidden;
}
.cid-uO9WTMhLhA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMhLhA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMhLhA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMhLhA .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-uO9WTMhLhA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMhLhA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMhLhA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMhLhA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMhLhA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMhLhA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMhLhA .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMhLhA .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMhLhA .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-uO9WTMhLhA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhLhA .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMhLhA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMhLhA .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMhLhA .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMhLhA .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMhLhA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMhLhA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMhLhA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhLhA .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMhLhA .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-uO9WTMhLhA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhLhA .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMhLhA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMhLhA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMhLhA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMhLhA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMhLhA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMhLhA .modal-lg,
  .cid-uO9WTMhLhA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMhLhA .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMhLhA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMhLhA .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-uO9WTMhLhA .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMhLhA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMhLhA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMhLhA .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-uO9WTMhLhA .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMhLhA .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfUENQWK2 .dropdown-menu {
  padding: 12px 0;
}
.cid-uAfUENQWK2 .dropdown-item:hover,
.cid-uAfUENQWK2 .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAfUENQWK2 .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAfUENQWK2 .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAfUENQWK2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAfUENQWK2 .nav-link {
  position: relative;
}
.cid-uAfUENQWK2 .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAfUENQWK2 .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAfUENQWK2 .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAfUENQWK2 .dropdown-menu,
.cid-uAfUENQWK2 .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAfUENQWK2 .nav-item:focus,
.cid-uAfUENQWK2 .nav-link:focus {
  outline: none;
}
.cid-uAfUENQWK2 .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAfUENQWK2 .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAfUENQWK2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAfUENQWK2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAfUENQWK2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAfUENQWK2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAfUENQWK2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAfUENQWK2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAfUENQWK2 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAfUENQWK2 .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAfUENQWK2 .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAfUENQWK2 .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAfUENQWK2 .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAfUENQWK2 .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAfUENQWK2 .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAfUENQWK2 .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAfUENQWK2 .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAfUENQWK2 .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAfUENQWK2 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAfUENQWK2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAfUENQWK2 .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAfUENQWK2 .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAfUENQWK2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAfUENQWK2 .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAfUENQWK2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAfUENQWK2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAfUENQWK2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAfUENQWK2 .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: 55%;
}
.cid-uAfUENQWK2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAfUENQWK2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAfUENQWK2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAfUENQWK2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAfUENQWK2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAfUENQWK2 .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAfUENQWK2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAfUENQWK2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAfUENQWK2 .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: 41%;
  }
  .cid-uAfUENQWK2 .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAfUENQWK2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAfUENQWK2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAfUENQWK2 .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAfUENQWK2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAfUENQWK2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAfUENQWK2 .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAfUENQWK2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAfUENQWK2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAfUENQWK2 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAfUENQWK2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAfUENQWK2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAfUENQWK2 .dropdown-item.active,
.cid-uAfUENQWK2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uAfUENQWK2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAfUENQWK2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAfUENQWK2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAfUENQWK2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAfUENQWK2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAfUENQWK2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAfUENQWK2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAfUENQWK2 .navbar-buttons {
  text-align: center;
}
.cid-uAfUENQWK2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAfUENQWK2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAfUENQWK2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAfUENQWK2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAfUENQWK2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAfUENQWK2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAfUENQWK2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAfUENQWK2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAfUENQWK2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAfUENQWK2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAfUENQWK2 .navbar-dropdown {
  position: fixed;
}
.cid-uAfUENQWK2 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAfUENQWK2 .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAfUENQWK2 .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAfUENQWK2 .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAfUENQWK2 .navbar {
    height: 77px;
  }
  .cid-uAfUENQWK2 .navbar.opened {
    height: auto;
  }
  .cid-uAfUENQWK2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAfUEQ4wTQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/banner-ok-1005x588.jpg");
}
.cid-uAfUEQ4wTQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfUEQ4wTQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAfUEQ4wTQ .container {
    padding: 0 20px;
  }
}
.cid-uAfUEQ4wTQ .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAfUEQ4wTQ .title-wrapper .mbr-desc {
  margin: 0;
}
.cid-uAfUEQ4wTQ .mbr-section-title {
  color: #f3ca27;
  text-align: center;
}
.cid-uAfUEQ4wTQ .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uAfUEQB9NB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-uAfUEQB9NB .container {
    max-width: 1400px;
  }
}
.cid-uAfUEQB9NB .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uAfUEQB9NB .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uAfUEQB9NB .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uAfUEQB9NB .main-title {
  margin-bottom: 16px;
}
.cid-uAfUEQB9NB .card {
  transition: all 0.3s;
}
.cid-uAfUEQB9NB .card .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uAfUEQB9NB .card .card-wrapper .img-wrapper {
  width: auto;
  height: 220px;
  margin-bottom: 30px;
}
.cid-uAfUEQB9NB .card .card-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.cid-uAfUEQB9NB .card .card-wrapper .card-box {
  padding-top: 30px;
}
.cid-uAfUEQB9NB .card .card-wrapper .card-box .card-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.cid-uAfUEQB9NB .card .card-wrapper .card-box .mbr-text {
  font-weight: 400;
}
.cid-uAfUEQB9NB .card .card-wrapper .card-box .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .cid-uAfUEQB9NB .card-box {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uAfUEQB9NB .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem !important;
  box-shadow: none !important;
}
.cid-uAfUEQB9NB .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  padding-left: 0.4rem;
  transition: padding 0.3s !important;
}
.cid-uAfUEQB9NB .btn[class*="-outline"]:hover span {
  padding-left: 15px;
}
.cid-uAfUEQB9NB .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #000000 !important;
  box-shadow: none !important;
}
.cid-uAfUEQB9NB .btn[class*="-outline"]:active,
.cid-uAfUEQB9NB .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-uAfUEQB9NB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfUEQB9NB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAfUEQB9NB .card-title,
.cid-uAfUEQB9NB .card-box DIV {
  text-align: left;
}
.cid-uAfUERpDIh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uAfUERpDIh .mbr-section-title {
  color: #404040;
}
.cid-uAfUERpDIh .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uAfUERpDIh .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uAfUERpDIh .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAfUERpDIh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfUERpDIh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAfUERWzTf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAfUERWzTf .container-fluid {
  padding: 0 3rem;
}
.cid-uAfUERWzTf .media-container-column {
  padding: 0 2rem;
}
.cid-uAfUERWzTf .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #f5c463;
}
@media (max-width: 767px) {
  .cid-uAfUERWzTf .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAfUESqkXt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uAfUESqkXt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAfUESqkXt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAfUESqkXt .container {
    padding: 0 16px;
  }
}
.cid-uAfUESqkXt .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAfUESqkXt .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAfUESqkXt .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uAfUESqkXt .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAfUESqkXt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAfUESqkXt .mbr-text {
  color: #ffffff;
}
.cid-uAfUESqkXt .mbr-text,
.cid-uAfUESqkXt .mbr-section-btn {
  text-align: center;
  color: #410078;
}
.cid-uAfUESqkXt .mbr-section-title,
.cid-uAfUESqkXt .title-wrap {
  color: #410078;
}
.cid-uAfUESVWIw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAfUESVWIw .container-fluid {
  padding: 0 3rem;
}
.cid-uAfUESVWIw .media-container-column {
  padding: 0 2rem;
}
.cid-uAfUESVWIw .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAfUESVWIw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAfUEToviF.popup-builder {
  background-color: #ffffff;
}
.cid-uAfUEToviF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfUEToviF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfUEToviF .modal-content,
.cid-uAfUEToviF .modal-dialog {
  height: auto;
}
.cid-uAfUEToviF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfUEToviF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfUEToviF .form-wrapper .mbr-form .form-group,
  .cid-uAfUEToviF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfUEToviF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfUEToviF .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-uAfUEToviF .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAfUEToviF .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfUEToviF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfUEToviF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfUEToviF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfUEToviF .modal-open {
  overflow: hidden;
}
.cid-uAfUEToviF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfUEToviF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfUEToviF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfUEToviF .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-uAfUEToviF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfUEToviF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfUEToviF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfUEToviF .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfUEToviF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfUEToviF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfUEToviF .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfUEToviF .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfUEToviF .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-uAfUEToviF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEToviF .modal-header {
    padding: 1rem;
  }
}
.cid-uAfUEToviF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfUEToviF .modal-header .close svg {
  fill: #260641;
}
.cid-uAfUEToviF .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfUEToviF .modal-header .close:focus {
  outline: none;
}
.cid-uAfUEToviF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAfUEToviF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfUEToviF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEToviF .modal-body {
    padding: 1rem;
  }
}
.cid-uAfUEToviF .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-uAfUEToviF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEToviF .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfUEToviF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfUEToviF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfUEToviF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfUEToviF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfUEToviF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfUEToviF .modal-lg,
  .cid-uAfUEToviF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfUEToviF .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfUEToviF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfUEToviF .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-uAfUEToviF .form-group {
  margin-bottom: 1rem;
}
.cid-uAfUEToviF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfUEToviF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfUEToviF .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-uAfUEToviF .mbr-section-btn {
  margin: 0;
}
.cid-uAfUEToviF .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfUEU8n93.popup-builder {
  background-color: #ffffff;
}
.cid-uAfUEU8n93.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfUEU8n93.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfUEU8n93 .modal-content,
.cid-uAfUEU8n93 .modal-dialog {
  height: auto;
}
.cid-uAfUEU8n93 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfUEU8n93 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfUEU8n93 .form-wrapper .mbr-form .form-group,
  .cid-uAfUEU8n93 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfUEU8n93 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfUEU8n93 .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-uAfUEU8n93 .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uAfUEU8n93 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfUEU8n93 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfUEU8n93 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfUEU8n93 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfUEU8n93 .modal-open {
  overflow: hidden;
}
.cid-uAfUEU8n93 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfUEU8n93 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfUEU8n93 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfUEU8n93 .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-uAfUEU8n93 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfUEU8n93 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfUEU8n93 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfUEU8n93 .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfUEU8n93 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfUEU8n93 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfUEU8n93 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfUEU8n93 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfUEU8n93 .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-uAfUEU8n93 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEU8n93 .modal-header {
    padding: 1rem;
  }
}
.cid-uAfUEU8n93 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfUEU8n93 .modal-header .close svg {
  fill: #5849aa;
}
.cid-uAfUEU8n93 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfUEU8n93 .modal-header .close:focus {
  outline: none;
}
.cid-uAfUEU8n93 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uAfUEU8n93 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfUEU8n93 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEU8n93 .modal-body {
    padding: 1rem;
  }
}
.cid-uAfUEU8n93 .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-uAfUEU8n93 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEU8n93 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfUEU8n93 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfUEU8n93 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfUEU8n93 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfUEU8n93 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfUEU8n93 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfUEU8n93 .modal-lg,
  .cid-uAfUEU8n93 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfUEU8n93 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfUEU8n93 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfUEU8n93 .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-uAfUEU8n93 .form-group {
  margin-bottom: 1rem;
}
.cid-uAfUEU8n93 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfUEU8n93 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfUEU8n93 .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-uAfUEU8n93 .mbr-section-btn {
  margin: 0;
}
.cid-uAfUEU8n93 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfUEURf56.popup-builder {
  background-color: #ffffff;
}
.cid-uAfUEURf56.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfUEURf56.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfUEURf56 .modal-content,
.cid-uAfUEURf56 .modal-dialog {
  height: auto;
}
.cid-uAfUEURf56 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfUEURf56 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfUEURf56 .form-wrapper .mbr-form .form-group,
  .cid-uAfUEURf56 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfUEURf56 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfUEURf56 .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-uAfUEURf56 .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uAfUEURf56 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfUEURf56 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfUEURf56 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfUEURf56 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfUEURf56 .modal-open {
  overflow: hidden;
}
.cid-uAfUEURf56 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfUEURf56 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfUEURf56 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfUEURf56 .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-uAfUEURf56 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfUEURf56 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfUEURf56 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfUEURf56 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfUEURf56 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfUEURf56 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfUEURf56 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfUEURf56 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfUEURf56 .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-uAfUEURf56 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEURf56 .modal-header {
    padding: 1rem;
  }
}
.cid-uAfUEURf56 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfUEURf56 .modal-header .close svg {
  fill: #611750;
}
.cid-uAfUEURf56 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfUEURf56 .modal-header .close:focus {
  outline: none;
}
.cid-uAfUEURf56 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAfUEURf56 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfUEURf56 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEURf56 .modal-body {
    padding: 1rem;
  }
}
.cid-uAfUEURf56 .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-uAfUEURf56 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEURf56 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfUEURf56 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfUEURf56 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfUEURf56 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfUEURf56 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfUEURf56 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfUEURf56 .modal-lg,
  .cid-uAfUEURf56 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfUEURf56 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfUEURf56 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfUEURf56 .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-uAfUEURf56 .form-group {
  margin-bottom: 1rem;
}
.cid-uAfUEURf56 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfUEURf56 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfUEURf56 .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-uAfUEURf56 .mbr-section-btn {
  margin: 0;
}
.cid-uAfUEURf56 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfUEVzS6b.popup-builder {
  background-color: #ffffff;
}
.cid-uAfUEVzS6b.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfUEVzS6b.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfUEVzS6b .modal-content,
.cid-uAfUEVzS6b .modal-dialog {
  height: auto;
}
.cid-uAfUEVzS6b .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfUEVzS6b .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfUEVzS6b .form-wrapper .mbr-form .form-group,
  .cid-uAfUEVzS6b .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfUEVzS6b .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfUEVzS6b .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-uAfUEVzS6b .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAfUEVzS6b .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfUEVzS6b .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfUEVzS6b .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfUEVzS6b .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfUEVzS6b .modal-open {
  overflow: hidden;
}
.cid-uAfUEVzS6b .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfUEVzS6b .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfUEVzS6b .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfUEVzS6b .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-uAfUEVzS6b .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfUEVzS6b .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfUEVzS6b .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfUEVzS6b .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfUEVzS6b .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfUEVzS6b .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfUEVzS6b .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfUEVzS6b .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfUEVzS6b .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-uAfUEVzS6b .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEVzS6b .modal-header {
    padding: 1rem;
  }
}
.cid-uAfUEVzS6b .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfUEVzS6b .modal-header .close svg {
  fill: #59307c;
}
.cid-uAfUEVzS6b .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfUEVzS6b .modal-header .close:focus {
  outline: none;
}
.cid-uAfUEVzS6b .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAfUEVzS6b .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfUEVzS6b .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEVzS6b .modal-body {
    padding: 1rem;
  }
}
.cid-uAfUEVzS6b .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-uAfUEVzS6b .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEVzS6b .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfUEVzS6b .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfUEVzS6b .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfUEVzS6b .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfUEVzS6b .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfUEVzS6b .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfUEVzS6b .modal-lg,
  .cid-uAfUEVzS6b .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfUEVzS6b .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfUEVzS6b .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfUEVzS6b .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-uAfUEVzS6b .form-group {
  margin-bottom: 1rem;
}
.cid-uAfUEVzS6b .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfUEVzS6b .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfUEVzS6b .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-uAfUEVzS6b .mbr-section-btn {
  margin: 0;
}
.cid-uAfUEVzS6b .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfUEWitAN.popup-builder {
  background-color: #ffffff;
}
.cid-uAfUEWitAN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfUEWitAN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfUEWitAN .modal-content,
.cid-uAfUEWitAN .modal-dialog {
  height: auto;
}
.cid-uAfUEWitAN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfUEWitAN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfUEWitAN .form-wrapper .mbr-form .form-group,
  .cid-uAfUEWitAN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfUEWitAN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfUEWitAN .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-uAfUEWitAN .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAfUEWitAN .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfUEWitAN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfUEWitAN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfUEWitAN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfUEWitAN .modal-open {
  overflow: hidden;
}
.cid-uAfUEWitAN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfUEWitAN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfUEWitAN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfUEWitAN .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-uAfUEWitAN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfUEWitAN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfUEWitAN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfUEWitAN .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfUEWitAN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfUEWitAN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfUEWitAN .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfUEWitAN .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfUEWitAN .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-uAfUEWitAN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEWitAN .modal-header {
    padding: 1rem;
  }
}
.cid-uAfUEWitAN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfUEWitAN .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAfUEWitAN .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfUEWitAN .modal-header .close:focus {
  outline: none;
}
.cid-uAfUEWitAN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAfUEWitAN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfUEWitAN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEWitAN .modal-body {
    padding: 1rem;
  }
}
.cid-uAfUEWitAN .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-uAfUEWitAN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEWitAN .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfUEWitAN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfUEWitAN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfUEWitAN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfUEWitAN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfUEWitAN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfUEWitAN .modal-lg,
  .cid-uAfUEWitAN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfUEWitAN .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfUEWitAN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfUEWitAN .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-uAfUEWitAN .form-group {
  margin-bottom: 1rem;
}
.cid-uAfUEWitAN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfUEWitAN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfUEWitAN .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-uAfUEWitAN .mbr-section-btn {
  margin: 0;
}
.cid-uAfUEWitAN .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAfUEX4U98.popup-builder {
  background-color: #ffffff;
}
.cid-uAfUEX4U98.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAfUEX4U98.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAfUEX4U98 .modal-content,
.cid-uAfUEX4U98 .modal-dialog {
  height: auto;
}
.cid-uAfUEX4U98 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAfUEX4U98 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAfUEX4U98 .form-wrapper .mbr-form .form-group,
  .cid-uAfUEX4U98 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAfUEX4U98 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAfUEX4U98 .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-uAfUEX4U98 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAfUEX4U98 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAfUEX4U98 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAfUEX4U98 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAfUEX4U98 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAfUEX4U98 .modal-open {
  overflow: hidden;
}
.cid-uAfUEX4U98 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAfUEX4U98 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAfUEX4U98 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAfUEX4U98 .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-uAfUEX4U98 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAfUEX4U98 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAfUEX4U98 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAfUEX4U98 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAfUEX4U98 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAfUEX4U98 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAfUEX4U98 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAfUEX4U98 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAfUEX4U98 .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-uAfUEX4U98 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEX4U98 .modal-header {
    padding: 1rem;
  }
}
.cid-uAfUEX4U98 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAfUEX4U98 .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAfUEX4U98 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAfUEX4U98 .modal-header .close:focus {
  outline: none;
}
.cid-uAfUEX4U98 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAfUEX4U98 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAfUEX4U98 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEX4U98 .modal-body {
    padding: 1rem;
  }
}
.cid-uAfUEX4U98 .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-uAfUEX4U98 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAfUEX4U98 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAfUEX4U98 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAfUEX4U98 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAfUEX4U98 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAfUEX4U98 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAfUEX4U98 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAfUEX4U98 .modal-lg,
  .cid-uAfUEX4U98 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAfUEX4U98 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAfUEX4U98 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAfUEX4U98 .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-uAfUEX4U98 .form-group {
  margin-bottom: 1rem;
}
.cid-uAfUEX4U98 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAfUEX4U98 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAfUEX4U98 .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-uAfUEX4U98 .mbr-section-btn {
  margin: 0;
}
.cid-uAfUEX4U98 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMhE9w.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMhE9w.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMhE9w.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMhE9w .modal-content,
.cid-uO9WTMhE9w .modal-dialog {
  height: auto;
}
.cid-uO9WTMhE9w .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMhE9w .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMhE9w .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMhE9w .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMhE9w .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMhE9w .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-uO9WTMhE9w .mbr-text {
  text-align: center;
}
.cid-uO9WTMhE9w .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMhE9w .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMhE9w .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMhE9w .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMhE9w .modal-open {
  overflow: hidden;
}
.cid-uO9WTMhE9w .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMhE9w .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMhE9w .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMhE9w .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-uO9WTMhE9w .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMhE9w .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMhE9w .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMhE9w .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMhE9w .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMhE9w .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMhE9w .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMhE9w .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMhE9w .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-uO9WTMhE9w .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhE9w .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMhE9w .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMhE9w .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMhE9w .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMhE9w .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMhE9w .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMhE9w .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMhE9w .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhE9w .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMhE9w .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-uO9WTMhE9w .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMhE9w .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMhE9w .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMhE9w .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMhE9w .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMhE9w .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMhE9w .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMhE9w .modal-lg,
  .cid-uO9WTMhE9w .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMhE9w .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMhE9w .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMhE9w .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-uO9WTMhE9w .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMhE9w .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMhE9w .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMhE9w .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-uO9WTMhE9w .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMhE9w .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlDnq0F69 .dropdown-menu {
  padding: 12px 0;
}
.cid-uAlDnq0F69 .dropdown-item:hover,
.cid-uAlDnq0F69 .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAlDnq0F69 .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAlDnq0F69 .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAlDnq0F69 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAlDnq0F69 .nav-link {
  position: relative;
}
.cid-uAlDnq0F69 .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAlDnq0F69 .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAlDnq0F69 .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAlDnq0F69 .dropdown-menu,
.cid-uAlDnq0F69 .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAlDnq0F69 .nav-item:focus,
.cid-uAlDnq0F69 .nav-link:focus {
  outline: none;
}
.cid-uAlDnq0F69 .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAlDnq0F69 .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAlDnq0F69 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlDnq0F69 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAlDnq0F69 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAlDnq0F69 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlDnq0F69 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAlDnq0F69 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAlDnq0F69 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAlDnq0F69 .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAlDnq0F69 .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAlDnq0F69 .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAlDnq0F69 .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAlDnq0F69 .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAlDnq0F69 .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAlDnq0F69 .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAlDnq0F69 .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAlDnq0F69 .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAlDnq0F69 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAlDnq0F69 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAlDnq0F69 .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAlDnq0F69 .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAlDnq0F69 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAlDnq0F69 .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAlDnq0F69 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAlDnq0F69 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAlDnq0F69 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAlDnq0F69 .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: 55%;
}
.cid-uAlDnq0F69 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAlDnq0F69 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAlDnq0F69 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAlDnq0F69 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAlDnq0F69 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAlDnq0F69 .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAlDnq0F69 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAlDnq0F69 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAlDnq0F69 .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: 41%;
  }
  .cid-uAlDnq0F69 .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAlDnq0F69 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAlDnq0F69 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAlDnq0F69 .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAlDnq0F69 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAlDnq0F69 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAlDnq0F69 .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAlDnq0F69 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAlDnq0F69 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAlDnq0F69 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAlDnq0F69 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAlDnq0F69 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAlDnq0F69 .dropdown-item.active,
.cid-uAlDnq0F69 .dropdown-item:active {
  background-color: transparent;
}
.cid-uAlDnq0F69 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAlDnq0F69 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAlDnq0F69 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAlDnq0F69 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAlDnq0F69 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAlDnq0F69 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAlDnq0F69 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAlDnq0F69 .navbar-buttons {
  text-align: center;
}
.cid-uAlDnq0F69 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAlDnq0F69 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAlDnq0F69 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAlDnq0F69 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlDnq0F69 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlDnq0F69 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAlDnq0F69 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlDnq0F69 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAlDnq0F69 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAlDnq0F69 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlDnq0F69 .navbar-dropdown {
  position: fixed;
}
.cid-uAlDnq0F69 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAlDnq0F69 .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAlDnq0F69 .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAlDnq0F69 .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAlDnq0F69 .navbar {
    height: 77px;
  }
  .cid-uAlDnq0F69 .navbar.opened {
    height: auto;
  }
  .cid-uAlDnq0F69 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAlDnquoml {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAlDnquoml .container-fluid {
  padding: 0 3rem;
}
.cid-uAlDnquoml .media-container-column {
  padding: 0 2rem;
}
.cid-uAlDnquoml .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlDnquoml .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlDnqJRQh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-uAlDnqJRQh .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #3c71d3, #38346b);
}
.cid-uAlDnqJRQh .mbr-text,
.cid-uAlDnqJRQh .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uAlDnqJRQh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlDnqJRQh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlDnqJRQh .mbr-section-title,
.cid-uAlDnqJRQh .title-wrapper {
  text-align: center;
  color: #d4a4e4;
}
.cid-uAn40kchRP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #260641;
}
.cid-uAn40kchRP .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAn40kchRP img {
    width: 90%;
  }
}
.cid-uAn40kchRP .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAn40kchRP .items {
  margin-bottom: 0;
}
.cid-uAn40kchRP .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAn40kchRP .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAn40kchRP .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAn40kchRP .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAn40kchRP .social-list {
    justify-content: center;
  }
}
.cid-uAn40kchRP .card-title {
  text-align: left;
  color: #e6eaf1;
}
.cid-uAlDnrB2hA {
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uAlDnrB2hA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlDnrB2hA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAlDnrB2hA .container {
    padding: 0 16px;
  }
}
.cid-uAlDnrB2hA .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAlDnrB2hA .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAlDnrB2hA .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uAlDnrB2hA .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAlDnrB2hA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAlDnrB2hA .mbr-text {
  color: #ffffff;
}
.cid-uAlDnrB2hA .mbr-text,
.cid-uAlDnrB2hA .mbr-section-btn {
  text-align: center;
}
.cid-uAlDnrB2hA .mbr-section-title,
.cid-uAlDnrB2hA .title-wrap {
  color: #410078;
}
.cid-uAlDnrR2q8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAlDnrR2q8 .container-fluid {
  padding: 0 3rem;
}
.cid-uAlDnrR2q8 .media-container-column {
  padding: 0 2rem;
}
.cid-uAlDnrR2q8 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlDnrR2q8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlDns6BAQ.popup-builder {
  background-color: #ffffff;
}
.cid-uAlDns6BAQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlDns6BAQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlDns6BAQ .modal-content,
.cid-uAlDns6BAQ .modal-dialog {
  height: auto;
}
.cid-uAlDns6BAQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlDns6BAQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlDns6BAQ .form-wrapper .mbr-form .form-group,
  .cid-uAlDns6BAQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlDns6BAQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlDns6BAQ .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-uAlDns6BAQ .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAlDns6BAQ .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlDns6BAQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlDns6BAQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlDns6BAQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlDns6BAQ .modal-open {
  overflow: hidden;
}
.cid-uAlDns6BAQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlDns6BAQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlDns6BAQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlDns6BAQ .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-uAlDns6BAQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlDns6BAQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlDns6BAQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlDns6BAQ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlDns6BAQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlDns6BAQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlDns6BAQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlDns6BAQ .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlDns6BAQ .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-uAlDns6BAQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlDns6BAQ .modal-header {
    padding: 1rem;
  }
}
.cid-uAlDns6BAQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlDns6BAQ .modal-header .close svg {
  fill: #59307c;
}
.cid-uAlDns6BAQ .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlDns6BAQ .modal-header .close:focus {
  outline: none;
}
.cid-uAlDns6BAQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAlDns6BAQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlDns6BAQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlDns6BAQ .modal-body {
    padding: 1rem;
  }
}
.cid-uAlDns6BAQ .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-uAlDns6BAQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlDns6BAQ .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlDns6BAQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlDns6BAQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlDns6BAQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlDns6BAQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlDns6BAQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlDns6BAQ .modal-lg,
  .cid-uAlDns6BAQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlDns6BAQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlDns6BAQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlDns6BAQ .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-uAlDns6BAQ .form-group {
  margin-bottom: 1rem;
}
.cid-uAlDns6BAQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlDns6BAQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlDns6BAQ .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-uAlDns6BAQ .mbr-section-btn {
  margin: 0;
}
.cid-uAlDns6BAQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlDnszU1O.popup-builder {
  background-color: #ffffff;
}
.cid-uAlDnszU1O.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlDnszU1O.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlDnszU1O .modal-content,
.cid-uAlDnszU1O .modal-dialog {
  height: auto;
}
.cid-uAlDnszU1O .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlDnszU1O .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlDnszU1O .form-wrapper .mbr-form .form-group,
  .cid-uAlDnszU1O .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlDnszU1O .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlDnszU1O .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-uAlDnszU1O .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAlDnszU1O .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlDnszU1O .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlDnszU1O .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlDnszU1O .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlDnszU1O .modal-open {
  overflow: hidden;
}
.cid-uAlDnszU1O .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlDnszU1O .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlDnszU1O .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlDnszU1O .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-uAlDnszU1O .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlDnszU1O .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlDnszU1O .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlDnszU1O .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlDnszU1O .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlDnszU1O .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlDnszU1O .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlDnszU1O .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlDnszU1O .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-uAlDnszU1O .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlDnszU1O .modal-header {
    padding: 1rem;
  }
}
.cid-uAlDnszU1O .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlDnszU1O .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAlDnszU1O .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlDnszU1O .modal-header .close:focus {
  outline: none;
}
.cid-uAlDnszU1O .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAlDnszU1O .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlDnszU1O .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlDnszU1O .modal-body {
    padding: 1rem;
  }
}
.cid-uAlDnszU1O .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-uAlDnszU1O .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlDnszU1O .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlDnszU1O .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlDnszU1O .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlDnszU1O .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlDnszU1O .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlDnszU1O .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlDnszU1O .modal-lg,
  .cid-uAlDnszU1O .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlDnszU1O .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlDnszU1O .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlDnszU1O .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-uAlDnszU1O .form-group {
  margin-bottom: 1rem;
}
.cid-uAlDnszU1O .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlDnszU1O .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlDnszU1O .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-uAlDnszU1O .mbr-section-btn {
  margin: 0;
}
.cid-uAlDnszU1O .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlDnt071q.popup-builder {
  background-color: #ffffff;
}
.cid-uAlDnt071q.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlDnt071q.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlDnt071q .modal-content,
.cid-uAlDnt071q .modal-dialog {
  height: auto;
}
.cid-uAlDnt071q .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlDnt071q .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlDnt071q .form-wrapper .mbr-form .form-group,
  .cid-uAlDnt071q .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlDnt071q .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlDnt071q .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-uAlDnt071q .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAlDnt071q .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlDnt071q .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlDnt071q .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlDnt071q .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlDnt071q .modal-open {
  overflow: hidden;
}
.cid-uAlDnt071q .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlDnt071q .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlDnt071q .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlDnt071q .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-uAlDnt071q .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlDnt071q .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlDnt071q .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlDnt071q .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlDnt071q .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlDnt071q .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlDnt071q .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlDnt071q .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlDnt071q .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-uAlDnt071q .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlDnt071q .modal-header {
    padding: 1rem;
  }
}
.cid-uAlDnt071q .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlDnt071q .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAlDnt071q .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlDnt071q .modal-header .close:focus {
  outline: none;
}
.cid-uAlDnt071q .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAlDnt071q .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlDnt071q .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlDnt071q .modal-body {
    padding: 1rem;
  }
}
.cid-uAlDnt071q .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-uAlDnt071q .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlDnt071q .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlDnt071q .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlDnt071q .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlDnt071q .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlDnt071q .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlDnt071q .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlDnt071q .modal-lg,
  .cid-uAlDnt071q .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlDnt071q .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlDnt071q .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlDnt071q .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-uAlDnt071q .form-group {
  margin-bottom: 1rem;
}
.cid-uAlDnt071q .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlDnt071q .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlDnt071q .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-uAlDnt071q .mbr-section-btn {
  margin: 0;
}
.cid-uAlDnt071q .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBweSwljWg.popup-builder {
  background-color: #ffffff;
}
.cid-uBweSwljWg.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBweSwljWg.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBweSwljWg .modal-content,
.cid-uBweSwljWg .modal-dialog {
  height: auto;
}
.cid-uBweSwljWg .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBweSwljWg .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBweSwljWg .form-wrapper .mbr-form .form-group,
  .cid-uBweSwljWg .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBweSwljWg .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBweSwljWg .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-uBweSwljWg .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uBweSwljWg .pt-0 {
  padding-top: 0 !important;
}
.cid-uBweSwljWg .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBweSwljWg .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBweSwljWg .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBweSwljWg .modal-open {
  overflow: hidden;
}
.cid-uBweSwljWg .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBweSwljWg .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBweSwljWg .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBweSwljWg .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-uBweSwljWg .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBweSwljWg .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBweSwljWg .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBweSwljWg .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBweSwljWg .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBweSwljWg .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBweSwljWg .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBweSwljWg .modal-backdrop.show {
  opacity: .5;
}
.cid-uBweSwljWg .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-uBweSwljWg .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBweSwljWg .modal-header {
    padding: 1rem;
  }
}
.cid-uBweSwljWg .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBweSwljWg .modal-header .close svg {
  fill: #5849aa;
}
.cid-uBweSwljWg .modal-header .close:hover {
  opacity: 1;
}
.cid-uBweSwljWg .modal-header .close:focus {
  outline: none;
}
.cid-uBweSwljWg .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uBweSwljWg .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBweSwljWg .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBweSwljWg .modal-body {
    padding: 1rem;
  }
}
.cid-uBweSwljWg .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-uBweSwljWg .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBweSwljWg .modal-footer {
    padding: 1rem;
  }
}
.cid-uBweSwljWg .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBweSwljWg .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBweSwljWg .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBweSwljWg .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBweSwljWg .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBweSwljWg .modal-lg,
  .cid-uBweSwljWg .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBweSwljWg .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBweSwljWg .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBweSwljWg .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-uBweSwljWg .form-group {
  margin-bottom: 1rem;
}
.cid-uBweSwljWg .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBweSwljWg .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBweSwljWg .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-uBweSwljWg .mbr-section-btn {
  margin: 0;
}
.cid-uBweSwljWg .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMi3m9.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMi3m9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMi3m9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMi3m9 .modal-content,
.cid-uO9WTMi3m9 .modal-dialog {
  height: auto;
}
.cid-uO9WTMi3m9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMi3m9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMi3m9 .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMi3m9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMi3m9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMi3m9 .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-uO9WTMi3m9 .mbr-text {
  text-align: center;
}
.cid-uO9WTMi3m9 .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMi3m9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMi3m9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMi3m9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMi3m9 .modal-open {
  overflow: hidden;
}
.cid-uO9WTMi3m9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMi3m9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMi3m9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMi3m9 .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-uO9WTMi3m9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMi3m9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMi3m9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMi3m9 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMi3m9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMi3m9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMi3m9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMi3m9 .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMi3m9 .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-uO9WTMi3m9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi3m9 .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMi3m9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMi3m9 .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMi3m9 .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMi3m9 .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMi3m9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMi3m9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMi3m9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi3m9 .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMi3m9 .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-uO9WTMi3m9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi3m9 .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMi3m9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMi3m9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMi3m9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMi3m9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMi3m9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMi3m9 .modal-lg,
  .cid-uO9WTMi3m9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMi3m9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMi3m9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMi3m9 .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-uO9WTMi3m9 .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMi3m9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMi3m9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMi3m9 .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-uO9WTMi3m9 .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMi3m9 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMamUyc .dropdown-menu {
  padding: 12px 0;
}
.cid-uAlQMamUyc .dropdown-item:hover,
.cid-uAlQMamUyc .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAlQMamUyc .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAlQMamUyc .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAlQMamUyc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAlQMamUyc .nav-link {
  position: relative;
}
.cid-uAlQMamUyc .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAlQMamUyc .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAlQMamUyc .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAlQMamUyc .dropdown-menu,
.cid-uAlQMamUyc .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAlQMamUyc .nav-item:focus,
.cid-uAlQMamUyc .nav-link:focus {
  outline: none;
}
.cid-uAlQMamUyc .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAlQMamUyc .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAlQMamUyc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlQMamUyc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAlQMamUyc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAlQMamUyc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlQMamUyc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAlQMamUyc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAlQMamUyc .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAlQMamUyc .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAlQMamUyc .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAlQMamUyc .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAlQMamUyc .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAlQMamUyc .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAlQMamUyc .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAlQMamUyc .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAlQMamUyc .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAlQMamUyc .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAlQMamUyc .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAlQMamUyc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAlQMamUyc .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAlQMamUyc .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAlQMamUyc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAlQMamUyc .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAlQMamUyc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAlQMamUyc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAlQMamUyc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAlQMamUyc .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: 55%;
}
.cid-uAlQMamUyc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAlQMamUyc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAlQMamUyc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAlQMamUyc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAlQMamUyc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAlQMamUyc .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAlQMamUyc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAlQMamUyc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAlQMamUyc .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: 41%;
  }
  .cid-uAlQMamUyc .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAlQMamUyc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAlQMamUyc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAlQMamUyc .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAlQMamUyc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAlQMamUyc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAlQMamUyc .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAlQMamUyc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAlQMamUyc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAlQMamUyc .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAlQMamUyc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAlQMamUyc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAlQMamUyc .dropdown-item.active,
.cid-uAlQMamUyc .dropdown-item:active {
  background-color: transparent;
}
.cid-uAlQMamUyc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAlQMamUyc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAlQMamUyc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAlQMamUyc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAlQMamUyc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAlQMamUyc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAlQMamUyc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAlQMamUyc .navbar-buttons {
  text-align: center;
}
.cid-uAlQMamUyc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAlQMamUyc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAlQMamUyc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAlQMamUyc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlQMamUyc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlQMamUyc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAlQMamUyc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlQMamUyc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAlQMamUyc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAlQMamUyc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlQMamUyc .navbar-dropdown {
  position: fixed;
}
.cid-uAlQMamUyc a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAlQMamUyc .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAlQMamUyc .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAlQMamUyc .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAlQMamUyc .navbar {
    height: 77px;
  }
  .cid-uAlQMamUyc .navbar.opened {
    height: auto;
  }
  .cid-uAlQMamUyc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAlQMb87Bb {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAlQMb87Bb .container-fluid {
  padding: 0 3rem;
}
.cid-uAlQMb87Bb .media-container-column {
  padding: 0 2rem;
}
.cid-uAlQMb87Bb .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlQMb87Bb .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlQMbxgoR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-uAlQMbxgoR .mbr-section-title {
  color: #404040;
}
.cid-uAlQMbxgoR .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uAlQMbxgoR .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uAlQMbxgoR .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAlQMbxgoR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlQMbxgoR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlQMbxgoR .mbr-section-title,
.cid-uAlQMbxgoR .icon-wrap,
.cid-uAlQMbxgoR .mbr-section-btn {
  color: #ffffff;
}
.cid-uAngYWg46O {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #260641;
}
.cid-uAngYWg46O .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAngYWg46O img {
    width: 90%;
  }
}
.cid-uAngYWg46O .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAngYWg46O .items {
  margin-bottom: 0;
}
.cid-uAngYWg46O .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAngYWg46O .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAngYWg46O .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAngYWg46O .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAngYWg46O .social-list {
    justify-content: center;
  }
}
.cid-uAngYWg46O .card-title {
  text-align: left;
  color: #cecf90;
}
.cid-uAlQMbYdjn {
  display: flex;
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-12-1920x1280.jpg");
  overflow: hidden;
}
.cid-uAlQMbYdjn .mbr-overlay {
  background-color: #fdfcfa;
  opacity: 0.8;
}
.cid-uAlQMbYdjn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlQMbYdjn img {
  width: 200px;
  height: 200px;
  filter: grayscale(1);
  object-fit: cover;
  border-radius: 4rem !important;
}
@media (max-width: 767px) {
  .cid-uAlQMbYdjn img {
    display: none;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMbYdjn img {
    z-index: 10;
  }
}
.cid-uAlQMbYdjn .face1 {
  position: absolute;
  left: 7%;
  top: 10%;
  animation: circle1 6s linear infinite;
}
.cid-uAlQMbYdjn .face2 {
  position: absolute;
  right: 7%;
  top: 13%;
  animation: circle1 6s linear infinite;
}
.cid-uAlQMbYdjn .face3 {
  position: absolute;
  left: 12%;
  bottom: 30%;
  animation: circle2 6s linear infinite;
}
.cid-uAlQMbYdjn .face4 {
  position: absolute;
  right: 15%;
  bottom: 28%;
  animation: circle2 6s linear infinite;
}
@keyframes circle1 {
  0% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
}
@keyframes circle2 {
  0% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
  100% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
}
.cid-uAlQMbYdjn .mbr-tag {
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 5px 30px;
  text-align: center;
  display: inline-block;
  margin-bottom: 6px;
}
.cid-uAlQMbYdjn .round {
  position: absolute;
  bottom: -1430px;
  left: -20%;
  width: 140%;
  height: 1700px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background: #1f0931;
}
@media (max-width: 992px) {
  .cid-uAlQMbYdjn .round {
    bottom: -1300px;
    height: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uAlQMbYdjn .round {
    height: 600px;
    bottom: -500px;
  }
}
.cid-uAlQMbYdjn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlQMbYdjn .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uAlQMbYdjn .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uAlQMbYdjn {
    align-items: flex-start;
  }
  .cid-uAlQMbYdjn .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAlQMbYdjn .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uAlQMbYdjn {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uAlQMbYdjn .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uAlQMbYdjn .content-wrap {
    width: 100%;
  }
}
.cid-uAlQMbYdjn .mbr-section-title {
  text-align: center;
  color: #1f0931;
}
.cid-uAlQMbYdjn .mbr-text,
.cid-uAlQMbYdjn .mbr-section-btn {
  text-align: center;
  color: #38346b;
}
.cid-uAlQMbYdjn .mbr-tag,
.cid-uAlQMbYdjn .tags {
  text-align: center;
  color: #1f0931;
}
.cid-uAlQMbYdjn .mbr-section-subtitle {
  color: #5849aa;
  text-align: center;
}
.cid-uAlQMcsTSR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAlQMcsTSR .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAlQMcsTSR img {
    width: 90%;
  }
}
.cid-uAlQMcsTSR .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAlQMcsTSR .items {
  margin-bottom: 0;
}
.cid-uAlQMcsTSR .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAlQMcsTSR .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAlQMcsTSR .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAlQMcsTSR .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAlQMcsTSR .social-list {
    justify-content: center;
  }
}
.cid-uAlQMcsTSR .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uAlQMcXSJ7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uAlQMcXSJ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlQMcXSJ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlQMcXSJ7 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAlQMcXSJ7 .content-wrapper .mbr-section-title span {
  color: #5ca7db;
}
.cid-uAlQMcXSJ7 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uAlQMcXSJ7 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uAlQMcXSJ7 .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #b97ecd, #292739);
}
@media (max-width: 992px) {
  .cid-uAlQMcXSJ7 .border-wrap {
    margin-top: 32px;
  }
}
.cid-uAlQMcXSJ7 .mbr-section-title {
  color: #ffffff;
}
.cid-uAlQMcXSJ7 .mbr-text,
.cid-uAlQMcXSJ7 .text-wrapper {
  color: #e6eaf1;
  text-align: center;
}
.cid-uAlQMcXSJ7 .mbr-section-title,
.cid-uAlQMcXSJ7 .mbr-section-btn {
  text-align: center;
  color: #e6eaf1;
}
.cid-uAo9aLOiJx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAo9aLOiJx .container-fluid {
  padding: 0 3rem;
}
.cid-uAo9aLOiJx .media-container-column {
  padding: 0 2rem;
}
.cid-uAo9aLOiJx .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uAo9aLOiJx .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlQMgCZfi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAlQMgCZfi .container-fluid {
  padding: 0 3rem;
}
.cid-uAlQMgCZfi .media-container-column {
  padding: 0 2rem;
}
.cid-uAlQMgCZfi .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlQMgCZfi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlQMkQVsi.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMkQVsi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMkQVsi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMkQVsi .modal-content,
.cid-uAlQMkQVsi .modal-dialog {
  height: auto;
}
.cid-uAlQMkQVsi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMkQVsi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMkQVsi .form-wrapper .mbr-form .form-group,
  .cid-uAlQMkQVsi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMkQVsi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMkQVsi .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-uAlQMkQVsi .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uAlQMkQVsi .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMkQVsi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMkQVsi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMkQVsi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMkQVsi .modal-open {
  overflow: hidden;
}
.cid-uAlQMkQVsi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMkQVsi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMkQVsi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMkQVsi .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-uAlQMkQVsi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMkQVsi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMkQVsi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMkQVsi .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMkQVsi .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMkQVsi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMkQVsi .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMkQVsi .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMkQVsi .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-uAlQMkQVsi .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMkQVsi .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMkQVsi .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMkQVsi .modal-header .close svg {
  fill: #611750;
}
.cid-uAlQMkQVsi .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMkQVsi .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMkQVsi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlQMkQVsi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMkQVsi .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMkQVsi .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMkQVsi .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-uAlQMkQVsi .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMkQVsi .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMkQVsi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMkQVsi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMkQVsi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMkQVsi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMkQVsi .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMkQVsi .modal-lg,
  .cid-uAlQMkQVsi .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMkQVsi .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMkQVsi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMkQVsi .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-uAlQMkQVsi .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMkQVsi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMkQVsi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMkQVsi .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-uAlQMkQVsi .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMkQVsi .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMh7375.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMh7375.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMh7375.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMh7375 .modal-content,
.cid-uAlQMh7375 .modal-dialog {
  height: auto;
}
.cid-uAlQMh7375 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMh7375 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMh7375 .form-wrapper .mbr-form .form-group,
  .cid-uAlQMh7375 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMh7375 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMh7375 .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-uAlQMh7375 .mbr-text {
  text-align: center;
}
.cid-uAlQMh7375 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMh7375 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMh7375 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMh7375 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMh7375 .modal-open {
  overflow: hidden;
}
.cid-uAlQMh7375 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMh7375 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMh7375 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMh7375 .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-uAlQMh7375 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMh7375 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMh7375 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMh7375 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMh7375 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMh7375 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMh7375 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMh7375 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMh7375 .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-uAlQMh7375 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMh7375 .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMh7375 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMh7375 .modal-header .close svg {
  fill: #611750;
}
.cid-uAlQMh7375 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMh7375 .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMh7375 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAlQMh7375 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMh7375 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMh7375 .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMh7375 .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-uAlQMh7375 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMh7375 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMh7375 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMh7375 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMh7375 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMh7375 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMh7375 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMh7375 .modal-lg,
  .cid-uAlQMh7375 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMh7375 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMh7375 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMh7375 .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-uAlQMh7375 .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMh7375 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMh7375 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMh7375 .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-uAlQMh7375 .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMh7375 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMhK6Dp.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMhK6Dp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMhK6Dp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMhK6Dp .modal-content,
.cid-uAlQMhK6Dp .modal-dialog {
  height: auto;
}
.cid-uAlQMhK6Dp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMhK6Dp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMhK6Dp .form-wrapper .mbr-form .form-group,
  .cid-uAlQMhK6Dp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMhK6Dp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMhK6Dp .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-uAlQMhK6Dp .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlQMhK6Dp .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMhK6Dp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMhK6Dp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMhK6Dp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMhK6Dp .modal-open {
  overflow: hidden;
}
.cid-uAlQMhK6Dp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMhK6Dp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMhK6Dp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMhK6Dp .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-uAlQMhK6Dp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMhK6Dp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMhK6Dp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMhK6Dp .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMhK6Dp .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMhK6Dp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMhK6Dp .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMhK6Dp .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMhK6Dp .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-uAlQMhK6Dp .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMhK6Dp .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMhK6Dp .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMhK6Dp .modal-header .close svg {
  fill: #260641;
}
.cid-uAlQMhK6Dp .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMhK6Dp .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMhK6Dp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlQMhK6Dp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMhK6Dp .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMhK6Dp .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMhK6Dp .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-uAlQMhK6Dp .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMhK6Dp .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMhK6Dp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMhK6Dp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMhK6Dp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMhK6Dp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMhK6Dp .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMhK6Dp .modal-lg,
  .cid-uAlQMhK6Dp .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMhK6Dp .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMhK6Dp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMhK6Dp .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-uAlQMhK6Dp .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMhK6Dp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMhK6Dp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMhK6Dp .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-uAlQMhK6Dp .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMhK6Dp .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMilcaz.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMilcaz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMilcaz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMilcaz .modal-content,
.cid-uAlQMilcaz .modal-dialog {
  height: auto;
}
.cid-uAlQMilcaz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMilcaz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMilcaz .form-wrapper .mbr-form .form-group,
  .cid-uAlQMilcaz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMilcaz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMilcaz .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-uAlQMilcaz .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlQMilcaz .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMilcaz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMilcaz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMilcaz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMilcaz .modal-open {
  overflow: hidden;
}
.cid-uAlQMilcaz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMilcaz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMilcaz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMilcaz .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-uAlQMilcaz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMilcaz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMilcaz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMilcaz .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMilcaz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMilcaz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMilcaz .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMilcaz .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMilcaz .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-uAlQMilcaz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMilcaz .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMilcaz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMilcaz .modal-header .close svg {
  fill: #260641;
}
.cid-uAlQMilcaz .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMilcaz .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMilcaz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlQMilcaz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMilcaz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMilcaz .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMilcaz .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-uAlQMilcaz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMilcaz .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMilcaz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMilcaz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMilcaz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMilcaz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMilcaz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMilcaz .modal-lg,
  .cid-uAlQMilcaz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMilcaz .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMilcaz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMilcaz .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-uAlQMilcaz .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMilcaz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMilcaz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMilcaz .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-uAlQMilcaz .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMilcaz .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMiXuEY.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMiXuEY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMiXuEY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMiXuEY .modal-content,
.cid-uAlQMiXuEY .modal-dialog {
  height: auto;
}
.cid-uAlQMiXuEY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMiXuEY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMiXuEY .form-wrapper .mbr-form .form-group,
  .cid-uAlQMiXuEY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMiXuEY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMiXuEY .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-uAlQMiXuEY .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlQMiXuEY .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMiXuEY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMiXuEY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMiXuEY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMiXuEY .modal-open {
  overflow: hidden;
}
.cid-uAlQMiXuEY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMiXuEY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMiXuEY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMiXuEY .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-uAlQMiXuEY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMiXuEY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMiXuEY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMiXuEY .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMiXuEY .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMiXuEY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMiXuEY .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMiXuEY .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMiXuEY .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-uAlQMiXuEY .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMiXuEY .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMiXuEY .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMiXuEY .modal-header .close svg {
  fill: #260641;
}
.cid-uAlQMiXuEY .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMiXuEY .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMiXuEY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlQMiXuEY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMiXuEY .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMiXuEY .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMiXuEY .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-uAlQMiXuEY .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMiXuEY .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMiXuEY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMiXuEY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMiXuEY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMiXuEY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMiXuEY .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMiXuEY .modal-lg,
  .cid-uAlQMiXuEY .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMiXuEY .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMiXuEY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMiXuEY .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-uAlQMiXuEY .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMiXuEY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMiXuEY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMiXuEY .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-uAlQMiXuEY .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMiXuEY .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMjBtlm.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMjBtlm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMjBtlm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMjBtlm .modal-content,
.cid-uAlQMjBtlm .modal-dialog {
  height: auto;
}
.cid-uAlQMjBtlm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMjBtlm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMjBtlm .form-wrapper .mbr-form .form-group,
  .cid-uAlQMjBtlm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMjBtlm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMjBtlm .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-uAlQMjBtlm .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlQMjBtlm .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMjBtlm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMjBtlm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMjBtlm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMjBtlm .modal-open {
  overflow: hidden;
}
.cid-uAlQMjBtlm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMjBtlm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMjBtlm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMjBtlm .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-uAlQMjBtlm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMjBtlm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMjBtlm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMjBtlm .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMjBtlm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMjBtlm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMjBtlm .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMjBtlm .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMjBtlm .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-uAlQMjBtlm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMjBtlm .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMjBtlm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMjBtlm .modal-header .close svg {
  fill: #260641;
}
.cid-uAlQMjBtlm .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMjBtlm .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMjBtlm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlQMjBtlm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMjBtlm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMjBtlm .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMjBtlm .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-uAlQMjBtlm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMjBtlm .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMjBtlm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMjBtlm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMjBtlm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMjBtlm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMjBtlm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMjBtlm .modal-lg,
  .cid-uAlQMjBtlm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMjBtlm .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMjBtlm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMjBtlm .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-uAlQMjBtlm .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMjBtlm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMjBtlm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMjBtlm .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-uAlQMjBtlm .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMjBtlm .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMkdCDZ.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMkdCDZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMkdCDZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMkdCDZ .modal-content,
.cid-uAlQMkdCDZ .modal-dialog {
  height: auto;
}
.cid-uAlQMkdCDZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMkdCDZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMkdCDZ .form-wrapper .mbr-form .form-group,
  .cid-uAlQMkdCDZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMkdCDZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMkdCDZ .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-uAlQMkdCDZ .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uAlQMkdCDZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMkdCDZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMkdCDZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMkdCDZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMkdCDZ .modal-open {
  overflow: hidden;
}
.cid-uAlQMkdCDZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMkdCDZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMkdCDZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMkdCDZ .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-uAlQMkdCDZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMkdCDZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMkdCDZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMkdCDZ .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMkdCDZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMkdCDZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMkdCDZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMkdCDZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMkdCDZ .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-uAlQMkdCDZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMkdCDZ .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMkdCDZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMkdCDZ .modal-header .close svg {
  fill: #5849aa;
}
.cid-uAlQMkdCDZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMkdCDZ .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMkdCDZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uAlQMkdCDZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMkdCDZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMkdCDZ .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMkdCDZ .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-uAlQMkdCDZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMkdCDZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMkdCDZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMkdCDZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMkdCDZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMkdCDZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMkdCDZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMkdCDZ .modal-lg,
  .cid-uAlQMkdCDZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMkdCDZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMkdCDZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMkdCDZ .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-uAlQMkdCDZ .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMkdCDZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMkdCDZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMkdCDZ .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-uAlQMkdCDZ .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMkdCDZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMlu6Jl.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMlu6Jl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMlu6Jl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMlu6Jl .modal-content,
.cid-uAlQMlu6Jl .modal-dialog {
  height: auto;
}
.cid-uAlQMlu6Jl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMlu6Jl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMlu6Jl .form-wrapper .mbr-form .form-group,
  .cid-uAlQMlu6Jl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMlu6Jl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMlu6Jl .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-uAlQMlu6Jl .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAlQMlu6Jl .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMlu6Jl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMlu6Jl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMlu6Jl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMlu6Jl .modal-open {
  overflow: hidden;
}
.cid-uAlQMlu6Jl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMlu6Jl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMlu6Jl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMlu6Jl .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-uAlQMlu6Jl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMlu6Jl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMlu6Jl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMlu6Jl .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMlu6Jl .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMlu6Jl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMlu6Jl .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMlu6Jl .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMlu6Jl .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-uAlQMlu6Jl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMlu6Jl .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMlu6Jl .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMlu6Jl .modal-header .close svg {
  fill: #59307c;
}
.cid-uAlQMlu6Jl .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMlu6Jl .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMlu6Jl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAlQMlu6Jl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMlu6Jl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMlu6Jl .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMlu6Jl .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-uAlQMlu6Jl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMlu6Jl .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMlu6Jl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMlu6Jl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMlu6Jl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMlu6Jl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMlu6Jl .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMlu6Jl .modal-lg,
  .cid-uAlQMlu6Jl .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMlu6Jl .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMlu6Jl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMlu6Jl .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-uAlQMlu6Jl .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMlu6Jl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMlu6Jl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMlu6Jl .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-uAlQMlu6Jl .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMlu6Jl .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMmcoAN.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMmcoAN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMmcoAN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMmcoAN .modal-content,
.cid-uAlQMmcoAN .modal-dialog {
  height: auto;
}
.cid-uAlQMmcoAN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMmcoAN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMmcoAN .form-wrapper .mbr-form .form-group,
  .cid-uAlQMmcoAN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMmcoAN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMmcoAN .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-uAlQMmcoAN .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAlQMmcoAN .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMmcoAN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMmcoAN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMmcoAN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMmcoAN .modal-open {
  overflow: hidden;
}
.cid-uAlQMmcoAN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMmcoAN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMmcoAN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMmcoAN .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-uAlQMmcoAN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMmcoAN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMmcoAN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMmcoAN .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMmcoAN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMmcoAN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMmcoAN .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMmcoAN .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMmcoAN .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-uAlQMmcoAN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMmcoAN .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMmcoAN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMmcoAN .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAlQMmcoAN .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMmcoAN .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMmcoAN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAlQMmcoAN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMmcoAN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMmcoAN .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMmcoAN .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-uAlQMmcoAN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMmcoAN .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMmcoAN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMmcoAN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMmcoAN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMmcoAN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMmcoAN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMmcoAN .modal-lg,
  .cid-uAlQMmcoAN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMmcoAN .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMmcoAN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMmcoAN .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-uAlQMmcoAN .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMmcoAN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMmcoAN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMmcoAN .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-uAlQMmcoAN .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMmcoAN .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlQMmPaew.popup-builder {
  background-color: #ffffff;
}
.cid-uAlQMmPaew.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlQMmPaew.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlQMmPaew .modal-content,
.cid-uAlQMmPaew .modal-dialog {
  height: auto;
}
.cid-uAlQMmPaew .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlQMmPaew .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlQMmPaew .form-wrapper .mbr-form .form-group,
  .cid-uAlQMmPaew .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlQMmPaew .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlQMmPaew .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-uAlQMmPaew .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAlQMmPaew .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlQMmPaew .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlQMmPaew .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlQMmPaew .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlQMmPaew .modal-open {
  overflow: hidden;
}
.cid-uAlQMmPaew .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlQMmPaew .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlQMmPaew .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlQMmPaew .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-uAlQMmPaew .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlQMmPaew .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlQMmPaew .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlQMmPaew .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlQMmPaew .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlQMmPaew .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlQMmPaew .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlQMmPaew .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlQMmPaew .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-uAlQMmPaew .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMmPaew .modal-header {
    padding: 1rem;
  }
}
.cid-uAlQMmPaew .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlQMmPaew .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAlQMmPaew .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlQMmPaew .modal-header .close:focus {
  outline: none;
}
.cid-uAlQMmPaew .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAlQMmPaew .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlQMmPaew .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMmPaew .modal-body {
    padding: 1rem;
  }
}
.cid-uAlQMmPaew .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-uAlQMmPaew .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlQMmPaew .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlQMmPaew .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlQMmPaew .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlQMmPaew .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlQMmPaew .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlQMmPaew .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlQMmPaew .modal-lg,
  .cid-uAlQMmPaew .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlQMmPaew .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlQMmPaew .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlQMmPaew .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-uAlQMmPaew .form-group {
  margin-bottom: 1rem;
}
.cid-uAlQMmPaew .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlQMmPaew .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlQMmPaew .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-uAlQMmPaew .mbr-section-btn {
  margin: 0;
}
.cid-uAlQMmPaew .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAnjGr2omy.popup-builder {
  background-color: #ffffff;
}
.cid-uAnjGr2omy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAnjGr2omy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAnjGr2omy .modal-content,
.cid-uAnjGr2omy .modal-dialog {
  height: auto;
}
.cid-uAnjGr2omy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAnjGr2omy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAnjGr2omy .form-wrapper .mbr-form .form-group,
  .cid-uAnjGr2omy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAnjGr2omy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAnjGr2omy .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-uAnjGr2omy .mbr-text {
  text-align: center;
}
.cid-uAnjGr2omy .pt-0 {
  padding-top: 0 !important;
}
.cid-uAnjGr2omy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAnjGr2omy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAnjGr2omy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAnjGr2omy .modal-open {
  overflow: hidden;
}
.cid-uAnjGr2omy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAnjGr2omy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAnjGr2omy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAnjGr2omy .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-uAnjGr2omy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAnjGr2omy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAnjGr2omy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAnjGr2omy .modal-content {
  background: #ecedee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAnjGr2omy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAnjGr2omy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAnjGr2omy .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAnjGr2omy .modal-backdrop.show {
  opacity: .5;
}
.cid-uAnjGr2omy .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-uAnjGr2omy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnjGr2omy .modal-header {
    padding: 1rem;
  }
}
.cid-uAnjGr2omy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAnjGr2omy .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAnjGr2omy .modal-header .close:hover {
  opacity: 1;
}
.cid-uAnjGr2omy .modal-header .close:focus {
  outline: none;
}
.cid-uAnjGr2omy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #1f0931;
}
.cid-uAnjGr2omy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAnjGr2omy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnjGr2omy .modal-body {
    padding: 1rem;
  }
}
.cid-uAnjGr2omy .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-uAnjGr2omy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnjGr2omy .modal-footer {
    padding: 1rem;
  }
}
.cid-uAnjGr2omy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAnjGr2omy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAnjGr2omy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAnjGr2omy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAnjGr2omy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAnjGr2omy .modal-lg,
  .cid-uAnjGr2omy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAnjGr2omy .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAnjGr2omy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAnjGr2omy .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-uAnjGr2omy .form-group {
  margin-bottom: 1rem;
}
.cid-uAnjGr2omy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAnjGr2omy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAnjGr2omy .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-uAnjGr2omy .mbr-section-btn {
  margin: 0;
}
.cid-uAnjGr2omy .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMidEu.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMidEu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMidEu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMidEu .modal-content,
.cid-uO9WTMidEu .modal-dialog {
  height: auto;
}
.cid-uO9WTMidEu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMidEu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMidEu .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMidEu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMidEu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMidEu .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-uO9WTMidEu .mbr-text {
  text-align: center;
}
.cid-uO9WTMidEu .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMidEu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMidEu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMidEu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMidEu .modal-open {
  overflow: hidden;
}
.cid-uO9WTMidEu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMidEu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMidEu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMidEu .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-uO9WTMidEu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMidEu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMidEu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMidEu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMidEu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMidEu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMidEu .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMidEu .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMidEu .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-uO9WTMidEu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMidEu .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMidEu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMidEu .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMidEu .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMidEu .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMidEu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMidEu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMidEu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMidEu .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMidEu .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-uO9WTMidEu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMidEu .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMidEu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMidEu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMidEu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMidEu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMidEu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMidEu .modal-lg,
  .cid-uO9WTMidEu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMidEu .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMidEu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMidEu .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-uO9WTMidEu .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMidEu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMidEu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMidEu .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-uO9WTMidEu .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMidEu .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRAJsukh .dropdown-menu {
  padding: 12px 0;
}
.cid-uAlRAJsukh .dropdown-item:hover,
.cid-uAlRAJsukh .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAlRAJsukh .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAlRAJsukh .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAlRAJsukh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAlRAJsukh .nav-link {
  position: relative;
}
.cid-uAlRAJsukh .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAlRAJsukh .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAlRAJsukh .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAlRAJsukh .dropdown-menu,
.cid-uAlRAJsukh .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAlRAJsukh .nav-item:focus,
.cid-uAlRAJsukh .nav-link:focus {
  outline: none;
}
.cid-uAlRAJsukh .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAlRAJsukh .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAlRAJsukh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlRAJsukh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAlRAJsukh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAlRAJsukh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlRAJsukh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAlRAJsukh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAlRAJsukh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAlRAJsukh .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAlRAJsukh .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAlRAJsukh .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAlRAJsukh .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAlRAJsukh .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAlRAJsukh .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAlRAJsukh .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAlRAJsukh .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAlRAJsukh .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAlRAJsukh .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAlRAJsukh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAlRAJsukh .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAlRAJsukh .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAlRAJsukh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAlRAJsukh .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAlRAJsukh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAlRAJsukh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAlRAJsukh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAlRAJsukh .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: 55%;
}
.cid-uAlRAJsukh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAlRAJsukh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAlRAJsukh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAlRAJsukh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAlRAJsukh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAlRAJsukh .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAlRAJsukh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAlRAJsukh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAlRAJsukh .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: 41%;
  }
  .cid-uAlRAJsukh .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAlRAJsukh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAlRAJsukh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAlRAJsukh .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAlRAJsukh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAlRAJsukh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAlRAJsukh .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAlRAJsukh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAlRAJsukh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAlRAJsukh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAlRAJsukh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAlRAJsukh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAlRAJsukh .dropdown-item.active,
.cid-uAlRAJsukh .dropdown-item:active {
  background-color: transparent;
}
.cid-uAlRAJsukh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAlRAJsukh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAlRAJsukh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAlRAJsukh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAlRAJsukh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAlRAJsukh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAlRAJsukh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAlRAJsukh .navbar-buttons {
  text-align: center;
}
.cid-uAlRAJsukh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAlRAJsukh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAlRAJsukh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAlRAJsukh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlRAJsukh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlRAJsukh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAlRAJsukh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlRAJsukh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAlRAJsukh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAlRAJsukh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlRAJsukh .navbar-dropdown {
  position: fixed;
}
.cid-uAlRAJsukh a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAlRAJsukh .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAlRAJsukh .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAlRAJsukh .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAlRAJsukh .navbar {
    height: 77px;
  }
  .cid-uAlRAJsukh .navbar.opened {
    height: auto;
  }
  .cid-uAlRAJsukh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAlRAKjiVK {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAlRAKjiVK .container-fluid {
  padding: 0 3rem;
}
.cid-uAlRAKjiVK .media-container-column {
  padding: 0 2rem;
}
.cid-uAlRAKjiVK .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlRAKjiVK .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRAKLLTR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-uAlRAKLLTR .mbr-section-title {
  color: #404040;
}
.cid-uAlRAKLLTR .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uAlRAKLLTR .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uAlRAKLLTR .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAlRAKLLTR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRAKLLTR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRAKLLTR .mbr-section-title,
.cid-uAlRAKLLTR .icon-wrap,
.cid-uAlRAKLLTR .mbr-section-btn {
  color: #ffffff;
}
.cid-uAnh4bt82d {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #260641;
}
.cid-uAnh4bt82d .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAnh4bt82d img {
    width: 90%;
  }
}
.cid-uAnh4bt82d .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAnh4bt82d .items {
  margin-bottom: 0;
}
.cid-uAnh4bt82d .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAnh4bt82d .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAnh4bt82d .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAnh4bt82d .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAnh4bt82d .social-list {
    justify-content: center;
  }
}
.cid-uAnh4bt82d .card-title {
  text-align: left;
  color: #e6eaf1;
}
.cid-uAlRALa61j {
  display: flex;
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-13-1920x1280.jpg");
  overflow: hidden;
}
.cid-uAlRALa61j .mbr-overlay {
  background-color: #e6eaf1;
  opacity: 0.8;
}
.cid-uAlRALa61j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRALa61j img {
  width: 200px;
  height: 200px;
  filter: grayscale(1);
  object-fit: cover;
  border-radius: 4rem !important;
}
@media (max-width: 767px) {
  .cid-uAlRALa61j img {
    display: none;
  }
}
@media (min-width: 992px) {
  .cid-uAlRALa61j img {
    z-index: 10;
  }
}
.cid-uAlRALa61j .face1 {
  position: absolute;
  left: 7%;
  top: 10%;
  animation: circle1 6s linear infinite;
}
.cid-uAlRALa61j .face2 {
  position: absolute;
  right: 7%;
  top: 13%;
  animation: circle1 6s linear infinite;
}
.cid-uAlRALa61j .face3 {
  position: absolute;
  left: 12%;
  bottom: 30%;
  animation: circle2 6s linear infinite;
}
.cid-uAlRALa61j .face4 {
  position: absolute;
  right: 15%;
  bottom: 28%;
  animation: circle2 6s linear infinite;
}
@keyframes circle1 {
  0% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
}
@keyframes circle2 {
  0% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
  100% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
}
.cid-uAlRALa61j .mbr-tag {
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 5px 30px;
  text-align: center;
  display: inline-block;
  margin-bottom: 6px;
}
.cid-uAlRALa61j .round {
  position: absolute;
  bottom: -1430px;
  left: -20%;
  width: 140%;
  height: 1700px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background: #1f0931;
}
@media (max-width: 992px) {
  .cid-uAlRALa61j .round {
    bottom: -1300px;
    height: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uAlRALa61j .round {
    height: 600px;
    bottom: -500px;
  }
}
.cid-uAlRALa61j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRALa61j .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uAlRALa61j .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uAlRALa61j {
    align-items: flex-start;
  }
  .cid-uAlRALa61j .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAlRALa61j .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uAlRALa61j {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uAlRALa61j .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uAlRALa61j .content-wrap {
    width: 100%;
  }
}
.cid-uAlRALa61j .mbr-section-title {
  text-align: center;
  color: #1f0931;
}
.cid-uAlRALa61j .mbr-text,
.cid-uAlRALa61j .mbr-section-btn {
  text-align: center;
  color: #38346b;
}
.cid-uAlRALa61j .mbr-tag,
.cid-uAlRALa61j .tags {
  text-align: center;
  color: #1f0931;
}
.cid-uAlRALa61j .mbr-section-subtitle {
  color: #38346b;
  text-align: center;
}
.cid-uAlRALPBlM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAlRALPBlM .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAlRALPBlM img {
    width: 90%;
  }
}
.cid-uAlRALPBlM .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAlRALPBlM .items {
  margin-bottom: 0;
}
.cid-uAlRALPBlM .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAlRALPBlM .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAlRALPBlM .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAlRALPBlM .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAlRALPBlM .social-list {
    justify-content: center;
  }
}
.cid-uAlRALPBlM .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uAlRAMkf1k {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uAlRAMkf1k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRAMkf1k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRAMkf1k .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAlRAMkf1k .content-wrapper .mbr-section-title span {
  color: #5ca7db;
}
.cid-uAlRAMkf1k .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uAlRAMkf1k .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uAlRAMkf1k .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #b97ecd, #292739);
}
@media (max-width: 992px) {
  .cid-uAlRAMkf1k .border-wrap {
    margin-top: 32px;
  }
}
.cid-uAlRAMkf1k .mbr-section-title {
  color: #ffffff;
}
.cid-uAlRAMkf1k .mbr-text,
.cid-uAlRAMkf1k .text-wrapper {
  color: #e6eaf1;
  text-align: center;
}
.cid-uAlRAMkf1k .mbr-section-title,
.cid-uAlRAMkf1k .mbr-section-btn {
  text-align: center;
  color: #e6eaf1;
}
.cid-uAo9YmVkxy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAo9YmVkxy .container-fluid {
  padding: 0 3rem;
}
.cid-uAo9YmVkxy .media-container-column {
  padding: 0 2rem;
}
.cid-uAo9YmVkxy .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uAo9YmVkxy .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRAQ1cle {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAlRAQ1cle .container-fluid {
  padding: 0 3rem;
}
.cid-uAlRAQ1cle .media-container-column {
  padding: 0 2rem;
}
.cid-uAlRAQ1cle .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlRAQ1cle .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRAQpVSG.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRAQpVSG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRAQpVSG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRAQpVSG .modal-content,
.cid-uAlRAQpVSG .modal-dialog {
  height: auto;
}
.cid-uAlRAQpVSG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRAQpVSG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRAQpVSG .form-wrapper .mbr-form .form-group,
  .cid-uAlRAQpVSG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRAQpVSG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRAQpVSG .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-uAlRAQpVSG .mbr-text {
  text-align: center;
}
.cid-uAlRAQpVSG .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRAQpVSG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRAQpVSG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRAQpVSG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRAQpVSG .modal-open {
  overflow: hidden;
}
.cid-uAlRAQpVSG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRAQpVSG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRAQpVSG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRAQpVSG .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-uAlRAQpVSG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRAQpVSG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRAQpVSG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRAQpVSG .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRAQpVSG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRAQpVSG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRAQpVSG .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRAQpVSG .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRAQpVSG .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-uAlRAQpVSG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAQpVSG .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRAQpVSG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRAQpVSG .modal-header .close svg {
  fill: #611750;
}
.cid-uAlRAQpVSG .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRAQpVSG .modal-header .close:focus {
  outline: none;
}
.cid-uAlRAQpVSG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAlRAQpVSG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRAQpVSG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAQpVSG .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRAQpVSG .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-uAlRAQpVSG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAQpVSG .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRAQpVSG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRAQpVSG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRAQpVSG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRAQpVSG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRAQpVSG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRAQpVSG .modal-lg,
  .cid-uAlRAQpVSG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRAQpVSG .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRAQpVSG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRAQpVSG .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-uAlRAQpVSG .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRAQpVSG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRAQpVSG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRAQpVSG .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-uAlRAQpVSG .mbr-section-btn {
  margin: 0;
}
.cid-uAlRAQpVSG .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRAQYDmU.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRAQYDmU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRAQYDmU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRAQYDmU .modal-content,
.cid-uAlRAQYDmU .modal-dialog {
  height: auto;
}
.cid-uAlRAQYDmU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRAQYDmU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRAQYDmU .form-wrapper .mbr-form .form-group,
  .cid-uAlRAQYDmU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRAQYDmU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRAQYDmU .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-uAlRAQYDmU .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRAQYDmU .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRAQYDmU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRAQYDmU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRAQYDmU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRAQYDmU .modal-open {
  overflow: hidden;
}
.cid-uAlRAQYDmU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRAQYDmU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRAQYDmU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRAQYDmU .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-uAlRAQYDmU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRAQYDmU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRAQYDmU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRAQYDmU .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRAQYDmU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRAQYDmU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRAQYDmU .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRAQYDmU .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRAQYDmU .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-uAlRAQYDmU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAQYDmU .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRAQYDmU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRAQYDmU .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRAQYDmU .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRAQYDmU .modal-header .close:focus {
  outline: none;
}
.cid-uAlRAQYDmU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRAQYDmU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRAQYDmU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAQYDmU .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRAQYDmU .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-uAlRAQYDmU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAQYDmU .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRAQYDmU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRAQYDmU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRAQYDmU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRAQYDmU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRAQYDmU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRAQYDmU .modal-lg,
  .cid-uAlRAQYDmU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRAQYDmU .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRAQYDmU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRAQYDmU .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-uAlRAQYDmU .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRAQYDmU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRAQYDmU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRAQYDmU .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-uAlRAQYDmU .mbr-section-btn {
  margin: 0;
}
.cid-uAlRAQYDmU .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRARwUWc.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRARwUWc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRARwUWc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRARwUWc .modal-content,
.cid-uAlRARwUWc .modal-dialog {
  height: auto;
}
.cid-uAlRARwUWc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRARwUWc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRARwUWc .form-wrapper .mbr-form .form-group,
  .cid-uAlRARwUWc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRARwUWc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRARwUWc .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-uAlRARwUWc .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRARwUWc .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRARwUWc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRARwUWc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRARwUWc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRARwUWc .modal-open {
  overflow: hidden;
}
.cid-uAlRARwUWc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRARwUWc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRARwUWc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRARwUWc .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-uAlRARwUWc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRARwUWc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRARwUWc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRARwUWc .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRARwUWc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRARwUWc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRARwUWc .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRARwUWc .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRARwUWc .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-uAlRARwUWc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRARwUWc .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRARwUWc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRARwUWc .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRARwUWc .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRARwUWc .modal-header .close:focus {
  outline: none;
}
.cid-uAlRARwUWc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRARwUWc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRARwUWc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRARwUWc .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRARwUWc .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-uAlRARwUWc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRARwUWc .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRARwUWc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRARwUWc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRARwUWc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRARwUWc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRARwUWc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRARwUWc .modal-lg,
  .cid-uAlRARwUWc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRARwUWc .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRARwUWc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRARwUWc .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-uAlRARwUWc .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRARwUWc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRARwUWc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRARwUWc .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-uAlRARwUWc .mbr-section-btn {
  margin: 0;
}
.cid-uAlRARwUWc .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRASdr6P.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRASdr6P.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRASdr6P.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRASdr6P .modal-content,
.cid-uAlRASdr6P .modal-dialog {
  height: auto;
}
.cid-uAlRASdr6P .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRASdr6P .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRASdr6P .form-wrapper .mbr-form .form-group,
  .cid-uAlRASdr6P .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRASdr6P .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRASdr6P .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-uAlRASdr6P .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRASdr6P .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRASdr6P .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRASdr6P .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRASdr6P .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRASdr6P .modal-open {
  overflow: hidden;
}
.cid-uAlRASdr6P .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRASdr6P .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRASdr6P .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRASdr6P .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-uAlRASdr6P .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRASdr6P .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRASdr6P .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRASdr6P .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRASdr6P .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRASdr6P .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRASdr6P .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRASdr6P .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRASdr6P .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-uAlRASdr6P .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRASdr6P .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRASdr6P .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRASdr6P .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRASdr6P .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRASdr6P .modal-header .close:focus {
  outline: none;
}
.cid-uAlRASdr6P .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRASdr6P .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRASdr6P .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRASdr6P .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRASdr6P .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-uAlRASdr6P .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRASdr6P .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRASdr6P .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRASdr6P .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRASdr6P .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRASdr6P .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRASdr6P .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRASdr6P .modal-lg,
  .cid-uAlRASdr6P .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRASdr6P .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRASdr6P .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRASdr6P .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-uAlRASdr6P .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRASdr6P .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRASdr6P .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRASdr6P .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-uAlRASdr6P .mbr-section-btn {
  margin: 0;
}
.cid-uAlRASdr6P .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRASMbbS.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRASMbbS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRASMbbS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRASMbbS .modal-content,
.cid-uAlRASMbbS .modal-dialog {
  height: auto;
}
.cid-uAlRASMbbS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRASMbbS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRASMbbS .form-wrapper .mbr-form .form-group,
  .cid-uAlRASMbbS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRASMbbS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRASMbbS .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-uAlRASMbbS .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRASMbbS .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRASMbbS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRASMbbS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRASMbbS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRASMbbS .modal-open {
  overflow: hidden;
}
.cid-uAlRASMbbS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRASMbbS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRASMbbS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRASMbbS .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-uAlRASMbbS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRASMbbS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRASMbbS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRASMbbS .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRASMbbS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRASMbbS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRASMbbS .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRASMbbS .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRASMbbS .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-uAlRASMbbS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRASMbbS .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRASMbbS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRASMbbS .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRASMbbS .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRASMbbS .modal-header .close:focus {
  outline: none;
}
.cid-uAlRASMbbS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRASMbbS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRASMbbS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRASMbbS .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRASMbbS .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-uAlRASMbbS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRASMbbS .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRASMbbS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRASMbbS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRASMbbS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRASMbbS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRASMbbS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRASMbbS .modal-lg,
  .cid-uAlRASMbbS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRASMbbS .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRASMbbS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRASMbbS .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-uAlRASMbbS .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRASMbbS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRASMbbS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRASMbbS .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-uAlRASMbbS .mbr-section-btn {
  margin: 0;
}
.cid-uAlRASMbbS .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRATo8DU.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRATo8DU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRATo8DU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRATo8DU .modal-content,
.cid-uAlRATo8DU .modal-dialog {
  height: auto;
}
.cid-uAlRATo8DU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRATo8DU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRATo8DU .form-wrapper .mbr-form .form-group,
  .cid-uAlRATo8DU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRATo8DU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRATo8DU .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-uAlRATo8DU .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uAlRATo8DU .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRATo8DU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRATo8DU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRATo8DU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRATo8DU .modal-open {
  overflow: hidden;
}
.cid-uAlRATo8DU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRATo8DU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRATo8DU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRATo8DU .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-uAlRATo8DU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRATo8DU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRATo8DU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRATo8DU .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRATo8DU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRATo8DU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRATo8DU .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRATo8DU .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRATo8DU .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-uAlRATo8DU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRATo8DU .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRATo8DU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRATo8DU .modal-header .close svg {
  fill: #5849aa;
}
.cid-uAlRATo8DU .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRATo8DU .modal-header .close:focus {
  outline: none;
}
.cid-uAlRATo8DU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uAlRATo8DU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRATo8DU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRATo8DU .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRATo8DU .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-uAlRATo8DU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRATo8DU .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRATo8DU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRATo8DU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRATo8DU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRATo8DU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRATo8DU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRATo8DU .modal-lg,
  .cid-uAlRATo8DU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRATo8DU .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRATo8DU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRATo8DU .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-uAlRATo8DU .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRATo8DU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRATo8DU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRATo8DU .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-uAlRATo8DU .mbr-section-btn {
  margin: 0;
}
.cid-uAlRATo8DU .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRATYAQj.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRATYAQj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRATYAQj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRATYAQj .modal-content,
.cid-uAlRATYAQj .modal-dialog {
  height: auto;
}
.cid-uAlRATYAQj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRATYAQj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRATYAQj .form-wrapper .mbr-form .form-group,
  .cid-uAlRATYAQj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRATYAQj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRATYAQj .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-uAlRATYAQj .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uAlRATYAQj .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRATYAQj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRATYAQj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRATYAQj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRATYAQj .modal-open {
  overflow: hidden;
}
.cid-uAlRATYAQj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRATYAQj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRATYAQj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRATYAQj .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-uAlRATYAQj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRATYAQj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRATYAQj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRATYAQj .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRATYAQj .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRATYAQj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRATYAQj .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRATYAQj .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRATYAQj .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-uAlRATYAQj .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRATYAQj .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRATYAQj .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRATYAQj .modal-header .close svg {
  fill: #611750;
}
.cid-uAlRATYAQj .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRATYAQj .modal-header .close:focus {
  outline: none;
}
.cid-uAlRATYAQj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRATYAQj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRATYAQj .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRATYAQj .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRATYAQj .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-uAlRATYAQj .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRATYAQj .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRATYAQj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRATYAQj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRATYAQj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRATYAQj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRATYAQj .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRATYAQj .modal-lg,
  .cid-uAlRATYAQj .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRATYAQj .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRATYAQj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRATYAQj .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-uAlRATYAQj .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRATYAQj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRATYAQj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRATYAQj .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-uAlRATYAQj .mbr-section-btn {
  margin: 0;
}
.cid-uAlRATYAQj .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRAUHMaz.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRAUHMaz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRAUHMaz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRAUHMaz .modal-content,
.cid-uAlRAUHMaz .modal-dialog {
  height: auto;
}
.cid-uAlRAUHMaz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRAUHMaz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRAUHMaz .form-wrapper .mbr-form .form-group,
  .cid-uAlRAUHMaz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRAUHMaz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRAUHMaz .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-uAlRAUHMaz .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAlRAUHMaz .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRAUHMaz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRAUHMaz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRAUHMaz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRAUHMaz .modal-open {
  overflow: hidden;
}
.cid-uAlRAUHMaz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRAUHMaz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRAUHMaz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRAUHMaz .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-uAlRAUHMaz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRAUHMaz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRAUHMaz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRAUHMaz .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRAUHMaz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRAUHMaz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRAUHMaz .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRAUHMaz .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRAUHMaz .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-uAlRAUHMaz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAUHMaz .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRAUHMaz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRAUHMaz .modal-header .close svg {
  fill: #59307c;
}
.cid-uAlRAUHMaz .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRAUHMaz .modal-header .close:focus {
  outline: none;
}
.cid-uAlRAUHMaz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAlRAUHMaz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRAUHMaz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAUHMaz .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRAUHMaz .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-uAlRAUHMaz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAUHMaz .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRAUHMaz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRAUHMaz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRAUHMaz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRAUHMaz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRAUHMaz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRAUHMaz .modal-lg,
  .cid-uAlRAUHMaz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRAUHMaz .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRAUHMaz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRAUHMaz .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-uAlRAUHMaz .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRAUHMaz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRAUHMaz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRAUHMaz .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-uAlRAUHMaz .mbr-section-btn {
  margin: 0;
}
.cid-uAlRAUHMaz .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRAVj13L.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRAVj13L.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRAVj13L.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRAVj13L .modal-content,
.cid-uAlRAVj13L .modal-dialog {
  height: auto;
}
.cid-uAlRAVj13L .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRAVj13L .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRAVj13L .form-wrapper .mbr-form .form-group,
  .cid-uAlRAVj13L .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRAVj13L .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRAVj13L .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-uAlRAVj13L .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAlRAVj13L .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRAVj13L .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRAVj13L .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRAVj13L .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRAVj13L .modal-open {
  overflow: hidden;
}
.cid-uAlRAVj13L .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRAVj13L .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRAVj13L .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRAVj13L .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-uAlRAVj13L .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRAVj13L .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRAVj13L .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRAVj13L .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRAVj13L .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRAVj13L .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRAVj13L .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRAVj13L .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRAVj13L .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-uAlRAVj13L .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAVj13L .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRAVj13L .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRAVj13L .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAlRAVj13L .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRAVj13L .modal-header .close:focus {
  outline: none;
}
.cid-uAlRAVj13L .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAlRAVj13L .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRAVj13L .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAVj13L .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRAVj13L .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-uAlRAVj13L .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAVj13L .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRAVj13L .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRAVj13L .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRAVj13L .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRAVj13L .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRAVj13L .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRAVj13L .modal-lg,
  .cid-uAlRAVj13L .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRAVj13L .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRAVj13L .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRAVj13L .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-uAlRAVj13L .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRAVj13L .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRAVj13L .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRAVj13L .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-uAlRAVj13L .mbr-section-btn {
  margin: 0;
}
.cid-uAlRAVj13L .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRAVYotk.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRAVYotk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRAVYotk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRAVYotk .modal-content,
.cid-uAlRAVYotk .modal-dialog {
  height: auto;
}
.cid-uAlRAVYotk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRAVYotk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRAVYotk .form-wrapper .mbr-form .form-group,
  .cid-uAlRAVYotk .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRAVYotk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRAVYotk .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-uAlRAVYotk .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAlRAVYotk .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRAVYotk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRAVYotk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRAVYotk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRAVYotk .modal-open {
  overflow: hidden;
}
.cid-uAlRAVYotk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRAVYotk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRAVYotk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRAVYotk .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-uAlRAVYotk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRAVYotk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRAVYotk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRAVYotk .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRAVYotk .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRAVYotk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRAVYotk .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRAVYotk .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRAVYotk .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-uAlRAVYotk .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAVYotk .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRAVYotk .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRAVYotk .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAlRAVYotk .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRAVYotk .modal-header .close:focus {
  outline: none;
}
.cid-uAlRAVYotk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAlRAVYotk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRAVYotk .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAVYotk .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRAVYotk .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-uAlRAVYotk .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRAVYotk .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRAVYotk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRAVYotk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRAVYotk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRAVYotk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRAVYotk .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRAVYotk .modal-lg,
  .cid-uAlRAVYotk .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRAVYotk .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRAVYotk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRAVYotk .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-uAlRAVYotk .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRAVYotk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRAVYotk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRAVYotk .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-uAlRAVYotk .mbr-section-btn {
  margin: 0;
}
.cid-uAlRAVYotk .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw7YcCSte.popup-builder {
  background-color: #ffffff;
}
.cid-uBw7YcCSte.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw7YcCSte.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw7YcCSte .modal-content,
.cid-uBw7YcCSte .modal-dialog {
  height: auto;
}
.cid-uBw7YcCSte .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw7YcCSte .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw7YcCSte .form-wrapper .mbr-form .form-group,
  .cid-uBw7YcCSte .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw7YcCSte .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw7YcCSte .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-uBw7YcCSte .mbr-text {
  text-align: center;
}
.cid-uBw7YcCSte .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw7YcCSte .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw7YcCSte .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw7YcCSte .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw7YcCSte .modal-open {
  overflow: hidden;
}
.cid-uBw7YcCSte .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw7YcCSte .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw7YcCSte .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw7YcCSte .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-uBw7YcCSte .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw7YcCSte .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw7YcCSte .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw7YcCSte .modal-content {
  background: #ecedee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw7YcCSte .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw7YcCSte .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw7YcCSte .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw7YcCSte .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw7YcCSte .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-uBw7YcCSte .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw7YcCSte .modal-header {
    padding: 1rem;
  }
}
.cid-uBw7YcCSte .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw7YcCSte .modal-header .close svg {
  fill: #ffffff;
}
.cid-uBw7YcCSte .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw7YcCSte .modal-header .close:focus {
  outline: none;
}
.cid-uBw7YcCSte .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #1f0931;
}
.cid-uBw7YcCSte .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw7YcCSte .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw7YcCSte .modal-body {
    padding: 1rem;
  }
}
.cid-uBw7YcCSte .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-uBw7YcCSte .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw7YcCSte .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw7YcCSte .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw7YcCSte .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw7YcCSte .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw7YcCSte .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw7YcCSte .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw7YcCSte .modal-lg,
  .cid-uBw7YcCSte .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw7YcCSte .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw7YcCSte .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw7YcCSte .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-uBw7YcCSte .form-group {
  margin-bottom: 1rem;
}
.cid-uBw7YcCSte .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw7YcCSte .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw7YcCSte .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-uBw7YcCSte .mbr-section-btn {
  margin: 0;
}
.cid-uBw7YcCSte .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMi0AQ.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMi0AQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMi0AQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMi0AQ .modal-content,
.cid-uO9WTMi0AQ .modal-dialog {
  height: auto;
}
.cid-uO9WTMi0AQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMi0AQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMi0AQ .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMi0AQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMi0AQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMi0AQ .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-uO9WTMi0AQ .mbr-text {
  text-align: center;
}
.cid-uO9WTMi0AQ .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMi0AQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMi0AQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMi0AQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMi0AQ .modal-open {
  overflow: hidden;
}
.cid-uO9WTMi0AQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMi0AQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMi0AQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMi0AQ .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-uO9WTMi0AQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMi0AQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMi0AQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMi0AQ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMi0AQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMi0AQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMi0AQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMi0AQ .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMi0AQ .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-uO9WTMi0AQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi0AQ .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMi0AQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMi0AQ .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMi0AQ .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMi0AQ .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMi0AQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMi0AQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMi0AQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi0AQ .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMi0AQ .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-uO9WTMi0AQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi0AQ .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMi0AQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMi0AQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMi0AQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMi0AQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMi0AQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMi0AQ .modal-lg,
  .cid-uO9WTMi0AQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMi0AQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMi0AQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMi0AQ .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-uO9WTMi0AQ .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMi0AQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMi0AQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMi0AQ .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-uO9WTMi0AQ .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMi0AQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMqXwTR .dropdown-menu {
  padding: 12px 0;
}
.cid-uAlRMqXwTR .dropdown-item:hover,
.cid-uAlRMqXwTR .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAlRMqXwTR .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAlRMqXwTR .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAlRMqXwTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAlRMqXwTR .nav-link {
  position: relative;
}
.cid-uAlRMqXwTR .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAlRMqXwTR .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAlRMqXwTR .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAlRMqXwTR .dropdown-menu,
.cid-uAlRMqXwTR .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAlRMqXwTR .nav-item:focus,
.cid-uAlRMqXwTR .nav-link:focus {
  outline: none;
}
.cid-uAlRMqXwTR .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAlRMqXwTR .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAlRMqXwTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlRMqXwTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAlRMqXwTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAlRMqXwTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlRMqXwTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAlRMqXwTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAlRMqXwTR .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAlRMqXwTR .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAlRMqXwTR .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAlRMqXwTR .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAlRMqXwTR .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAlRMqXwTR .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAlRMqXwTR .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAlRMqXwTR .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAlRMqXwTR .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAlRMqXwTR .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAlRMqXwTR .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAlRMqXwTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAlRMqXwTR .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAlRMqXwTR .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAlRMqXwTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAlRMqXwTR .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAlRMqXwTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAlRMqXwTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAlRMqXwTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAlRMqXwTR .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: 55%;
}
.cid-uAlRMqXwTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAlRMqXwTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAlRMqXwTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAlRMqXwTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAlRMqXwTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAlRMqXwTR .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAlRMqXwTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAlRMqXwTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAlRMqXwTR .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: 41%;
  }
  .cid-uAlRMqXwTR .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAlRMqXwTR .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAlRMqXwTR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAlRMqXwTR .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAlRMqXwTR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAlRMqXwTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAlRMqXwTR .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAlRMqXwTR .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAlRMqXwTR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAlRMqXwTR .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAlRMqXwTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAlRMqXwTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAlRMqXwTR .dropdown-item.active,
.cid-uAlRMqXwTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uAlRMqXwTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAlRMqXwTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAlRMqXwTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAlRMqXwTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAlRMqXwTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAlRMqXwTR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAlRMqXwTR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAlRMqXwTR .navbar-buttons {
  text-align: center;
}
.cid-uAlRMqXwTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAlRMqXwTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAlRMqXwTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAlRMqXwTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlRMqXwTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlRMqXwTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAlRMqXwTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlRMqXwTR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAlRMqXwTR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAlRMqXwTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlRMqXwTR .navbar-dropdown {
  position: fixed;
}
.cid-uAlRMqXwTR a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAlRMqXwTR .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAlRMqXwTR .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAlRMqXwTR .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAlRMqXwTR .navbar {
    height: 77px;
  }
  .cid-uAlRMqXwTR .navbar.opened {
    height: auto;
  }
  .cid-uAlRMqXwTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAlRMrKqe9 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAlRMrKqe9 .container-fluid {
  padding: 0 3rem;
}
.cid-uAlRMrKqe9 .media-container-column {
  padding: 0 2rem;
}
.cid-uAlRMrKqe9 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlRMrKqe9 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRMs9kBc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-uAlRMs9kBc .mbr-section-title {
  color: #404040;
}
.cid-uAlRMs9kBc .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uAlRMs9kBc .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uAlRMs9kBc .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAlRMs9kBc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRMs9kBc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRMs9kBc .mbr-section-title,
.cid-uAlRMs9kBc .icon-wrap,
.cid-uAlRMs9kBc .mbr-section-btn {
  color: #ffffff;
}
.cid-uAnh6I2MYM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #260641;
}
.cid-uAnh6I2MYM .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAnh6I2MYM img {
    width: 90%;
  }
}
.cid-uAnh6I2MYM .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAnh6I2MYM .items {
  margin-bottom: 0;
}
.cid-uAnh6I2MYM .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAnh6I2MYM .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAnh6I2MYM .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAnh6I2MYM .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAnh6I2MYM .social-list {
    justify-content: center;
  }
}
.cid-uAnh6I2MYM .card-title {
  text-align: left;
  color: #e6eaf1;
}
.cid-uAlRMswKpS {
  display: flex;
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/rhogammclave-444x384.jpg");
  overflow: hidden;
}
.cid-uAlRMswKpS .mbr-overlay {
  background-color: #e6eaf1;
  opacity: 0.8;
}
.cid-uAlRMswKpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRMswKpS img {
  width: 200px;
  height: 200px;
  filter: grayscale(1);
  object-fit: cover;
  border-radius: 4rem !important;
}
@media (max-width: 767px) {
  .cid-uAlRMswKpS img {
    display: none;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMswKpS img {
    z-index: 10;
  }
}
.cid-uAlRMswKpS .face1 {
  position: absolute;
  left: 7%;
  top: 10%;
  animation: circle1 6s linear infinite;
}
.cid-uAlRMswKpS .face2 {
  position: absolute;
  right: 7%;
  top: 13%;
  animation: circle1 6s linear infinite;
}
.cid-uAlRMswKpS .face3 {
  position: absolute;
  left: 12%;
  bottom: 30%;
  animation: circle2 6s linear infinite;
}
.cid-uAlRMswKpS .face4 {
  position: absolute;
  right: 15%;
  bottom: 28%;
  animation: circle2 6s linear infinite;
}
@keyframes circle1 {
  0% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
}
@keyframes circle2 {
  0% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
  100% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
}
.cid-uAlRMswKpS .mbr-tag {
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 5px 30px;
  text-align: center;
  display: inline-block;
  margin-bottom: 6px;
}
.cid-uAlRMswKpS .round {
  position: absolute;
  bottom: -1430px;
  left: -20%;
  width: 140%;
  height: 1700px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background: #1f0931;
}
@media (max-width: 992px) {
  .cid-uAlRMswKpS .round {
    bottom: -1300px;
    height: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uAlRMswKpS .round {
    height: 600px;
    bottom: -500px;
  }
}
.cid-uAlRMswKpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRMswKpS .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uAlRMswKpS .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uAlRMswKpS {
    align-items: flex-start;
  }
  .cid-uAlRMswKpS .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAlRMswKpS .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uAlRMswKpS {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uAlRMswKpS .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uAlRMswKpS .content-wrap {
    width: 100%;
  }
}
.cid-uAlRMswKpS .mbr-section-title {
  text-align: center;
  color: #1f0931;
}
.cid-uAlRMswKpS .mbr-text,
.cid-uAlRMswKpS .mbr-section-btn {
  text-align: center;
  color: #38346b;
}
.cid-uAlRMswKpS .mbr-tag,
.cid-uAlRMswKpS .tags {
  text-align: center;
  color: #1f0931;
}
.cid-uAlRMswKpS .mbr-section-subtitle {
  color: #38346b;
  text-align: center;
}
.cid-uAlRMt38JR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAlRMt38JR .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAlRMt38JR img {
    width: 90%;
  }
}
.cid-uAlRMt38JR .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAlRMt38JR .items {
  margin-bottom: 0;
}
.cid-uAlRMt38JR .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAlRMt38JR .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAlRMt38JR .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAlRMt38JR .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAlRMt38JR .social-list {
    justify-content: center;
  }
}
.cid-uAlRMt38JR .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uAlRMtvPSA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uAlRMtvPSA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRMtvPSA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRMtvPSA .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAlRMtvPSA .content-wrapper .mbr-section-title span {
  color: #5ca7db;
}
.cid-uAlRMtvPSA .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uAlRMtvPSA .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uAlRMtvPSA .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #b97ecd, #292739);
}
@media (max-width: 992px) {
  .cid-uAlRMtvPSA .border-wrap {
    margin-top: 32px;
  }
}
.cid-uAlRMtvPSA .mbr-section-title {
  color: #ffffff;
}
.cid-uAlRMtvPSA .mbr-text,
.cid-uAlRMtvPSA .text-wrapper {
  color: #e6eaf1;
  text-align: center;
}
.cid-uAlRMtvPSA .mbr-section-title,
.cid-uAlRMtvPSA .mbr-section-btn {
  text-align: center;
  color: #e6eaf1;
}
.cid-uAoajJxn4P {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAoajJxn4P .container-fluid {
  padding: 0 3rem;
}
.cid-uAoajJxn4P .media-container-column {
  padding: 0 2rem;
}
.cid-uAoajJxn4P .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uAoajJxn4P .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRMwOVdu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAlRMwOVdu .container-fluid {
  padding: 0 3rem;
}
.cid-uAlRMwOVdu .media-container-column {
  padding: 0 2rem;
}
.cid-uAlRMwOVdu .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlRMwOVdu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRMx96mU.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMx96mU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMx96mU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMx96mU .modal-content,
.cid-uAlRMx96mU .modal-dialog {
  height: auto;
}
.cid-uAlRMx96mU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMx96mU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMx96mU .form-wrapper .mbr-form .form-group,
  .cid-uAlRMx96mU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMx96mU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMx96mU .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-uAlRMx96mU .mbr-text {
  text-align: center;
}
.cid-uAlRMx96mU .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMx96mU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMx96mU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMx96mU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMx96mU .modal-open {
  overflow: hidden;
}
.cid-uAlRMx96mU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMx96mU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMx96mU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMx96mU .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-uAlRMx96mU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMx96mU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMx96mU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMx96mU .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMx96mU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMx96mU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMx96mU .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMx96mU .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMx96mU .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-uAlRMx96mU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMx96mU .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMx96mU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMx96mU .modal-header .close svg {
  fill: #611750;
}
.cid-uAlRMx96mU .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMx96mU .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMx96mU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAlRMx96mU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMx96mU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMx96mU .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMx96mU .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-uAlRMx96mU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMx96mU .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMx96mU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMx96mU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMx96mU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMx96mU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMx96mU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMx96mU .modal-lg,
  .cid-uAlRMx96mU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMx96mU .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMx96mU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMx96mU .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-uAlRMx96mU .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMx96mU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMx96mU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMx96mU .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-uAlRMx96mU .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMx96mU .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMxFVj7.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMxFVj7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMxFVj7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMxFVj7 .modal-content,
.cid-uAlRMxFVj7 .modal-dialog {
  height: auto;
}
.cid-uAlRMxFVj7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMxFVj7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMxFVj7 .form-wrapper .mbr-form .form-group,
  .cid-uAlRMxFVj7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMxFVj7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMxFVj7 .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-uAlRMxFVj7 .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRMxFVj7 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMxFVj7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMxFVj7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMxFVj7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMxFVj7 .modal-open {
  overflow: hidden;
}
.cid-uAlRMxFVj7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMxFVj7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMxFVj7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMxFVj7 .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-uAlRMxFVj7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMxFVj7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMxFVj7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMxFVj7 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMxFVj7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMxFVj7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMxFVj7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMxFVj7 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMxFVj7 .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-uAlRMxFVj7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMxFVj7 .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMxFVj7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMxFVj7 .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRMxFVj7 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMxFVj7 .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMxFVj7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRMxFVj7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMxFVj7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMxFVj7 .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMxFVj7 .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-uAlRMxFVj7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMxFVj7 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMxFVj7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMxFVj7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMxFVj7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMxFVj7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMxFVj7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMxFVj7 .modal-lg,
  .cid-uAlRMxFVj7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMxFVj7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMxFVj7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMxFVj7 .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-uAlRMxFVj7 .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMxFVj7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMxFVj7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMxFVj7 .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-uAlRMxFVj7 .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMxFVj7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMyeEUa.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMyeEUa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMyeEUa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMyeEUa .modal-content,
.cid-uAlRMyeEUa .modal-dialog {
  height: auto;
}
.cid-uAlRMyeEUa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMyeEUa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMyeEUa .form-wrapper .mbr-form .form-group,
  .cid-uAlRMyeEUa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMyeEUa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMyeEUa .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-uAlRMyeEUa .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRMyeEUa .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMyeEUa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMyeEUa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMyeEUa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMyeEUa .modal-open {
  overflow: hidden;
}
.cid-uAlRMyeEUa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMyeEUa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMyeEUa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMyeEUa .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-uAlRMyeEUa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMyeEUa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMyeEUa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMyeEUa .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMyeEUa .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMyeEUa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMyeEUa .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMyeEUa .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMyeEUa .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-uAlRMyeEUa .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMyeEUa .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMyeEUa .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMyeEUa .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRMyeEUa .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMyeEUa .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMyeEUa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRMyeEUa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMyeEUa .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMyeEUa .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMyeEUa .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-uAlRMyeEUa .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMyeEUa .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMyeEUa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMyeEUa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMyeEUa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMyeEUa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMyeEUa .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMyeEUa .modal-lg,
  .cid-uAlRMyeEUa .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMyeEUa .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMyeEUa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMyeEUa .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-uAlRMyeEUa .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMyeEUa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMyeEUa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMyeEUa .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-uAlRMyeEUa .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMyeEUa .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMyJWqI.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMyJWqI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMyJWqI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMyJWqI .modal-content,
.cid-uAlRMyJWqI .modal-dialog {
  height: auto;
}
.cid-uAlRMyJWqI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMyJWqI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMyJWqI .form-wrapper .mbr-form .form-group,
  .cid-uAlRMyJWqI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMyJWqI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMyJWqI .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-uAlRMyJWqI .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRMyJWqI .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMyJWqI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMyJWqI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMyJWqI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMyJWqI .modal-open {
  overflow: hidden;
}
.cid-uAlRMyJWqI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMyJWqI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMyJWqI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMyJWqI .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-uAlRMyJWqI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMyJWqI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMyJWqI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMyJWqI .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMyJWqI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMyJWqI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMyJWqI .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMyJWqI .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMyJWqI .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-uAlRMyJWqI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMyJWqI .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMyJWqI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMyJWqI .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRMyJWqI .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMyJWqI .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMyJWqI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRMyJWqI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMyJWqI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMyJWqI .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMyJWqI .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-uAlRMyJWqI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMyJWqI .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMyJWqI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMyJWqI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMyJWqI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMyJWqI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMyJWqI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMyJWqI .modal-lg,
  .cid-uAlRMyJWqI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMyJWqI .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMyJWqI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMyJWqI .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-uAlRMyJWqI .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMyJWqI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMyJWqI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMyJWqI .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-uAlRMyJWqI .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMyJWqI .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMzh5FO.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMzh5FO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMzh5FO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMzh5FO .modal-content,
.cid-uAlRMzh5FO .modal-dialog {
  height: auto;
}
.cid-uAlRMzh5FO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMzh5FO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMzh5FO .form-wrapper .mbr-form .form-group,
  .cid-uAlRMzh5FO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMzh5FO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMzh5FO .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-uAlRMzh5FO .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRMzh5FO .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMzh5FO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMzh5FO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMzh5FO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMzh5FO .modal-open {
  overflow: hidden;
}
.cid-uAlRMzh5FO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMzh5FO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMzh5FO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMzh5FO .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-uAlRMzh5FO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMzh5FO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMzh5FO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMzh5FO .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMzh5FO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMzh5FO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMzh5FO .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMzh5FO .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMzh5FO .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-uAlRMzh5FO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMzh5FO .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMzh5FO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMzh5FO .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRMzh5FO .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMzh5FO .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMzh5FO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRMzh5FO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMzh5FO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMzh5FO .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMzh5FO .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-uAlRMzh5FO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMzh5FO .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMzh5FO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMzh5FO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMzh5FO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMzh5FO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMzh5FO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMzh5FO .modal-lg,
  .cid-uAlRMzh5FO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMzh5FO .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMzh5FO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMzh5FO .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-uAlRMzh5FO .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMzh5FO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMzh5FO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMzh5FO .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-uAlRMzh5FO .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMzh5FO .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMzRLat.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMzRLat.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMzRLat.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMzRLat .modal-content,
.cid-uAlRMzRLat .modal-dialog {
  height: auto;
}
.cid-uAlRMzRLat .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMzRLat .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMzRLat .form-wrapper .mbr-form .form-group,
  .cid-uAlRMzRLat .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMzRLat .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMzRLat .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-uAlRMzRLat .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uAlRMzRLat .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMzRLat .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMzRLat .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMzRLat .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMzRLat .modal-open {
  overflow: hidden;
}
.cid-uAlRMzRLat .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMzRLat .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMzRLat .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMzRLat .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-uAlRMzRLat .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMzRLat .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMzRLat .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMzRLat .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMzRLat .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMzRLat .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMzRLat .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMzRLat .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMzRLat .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-uAlRMzRLat .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMzRLat .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMzRLat .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMzRLat .modal-header .close svg {
  fill: #5849aa;
}
.cid-uAlRMzRLat .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMzRLat .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMzRLat .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uAlRMzRLat .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMzRLat .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMzRLat .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMzRLat .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-uAlRMzRLat .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMzRLat .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMzRLat .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMzRLat .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMzRLat .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMzRLat .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMzRLat .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMzRLat .modal-lg,
  .cid-uAlRMzRLat .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMzRLat .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMzRLat .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMzRLat .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-uAlRMzRLat .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMzRLat .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMzRLat .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMzRLat .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-uAlRMzRLat .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMzRLat .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMAp2LN.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMAp2LN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMAp2LN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMAp2LN .modal-content,
.cid-uAlRMAp2LN .modal-dialog {
  height: auto;
}
.cid-uAlRMAp2LN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMAp2LN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMAp2LN .form-wrapper .mbr-form .form-group,
  .cid-uAlRMAp2LN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMAp2LN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMAp2LN .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-uAlRMAp2LN .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uAlRMAp2LN .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMAp2LN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMAp2LN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMAp2LN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMAp2LN .modal-open {
  overflow: hidden;
}
.cid-uAlRMAp2LN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMAp2LN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMAp2LN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMAp2LN .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-uAlRMAp2LN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMAp2LN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMAp2LN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMAp2LN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMAp2LN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMAp2LN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMAp2LN .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMAp2LN .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMAp2LN .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-uAlRMAp2LN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMAp2LN .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMAp2LN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMAp2LN .modal-header .close svg {
  fill: #611750;
}
.cid-uAlRMAp2LN .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMAp2LN .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMAp2LN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRMAp2LN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMAp2LN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMAp2LN .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMAp2LN .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-uAlRMAp2LN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMAp2LN .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMAp2LN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMAp2LN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMAp2LN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMAp2LN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMAp2LN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMAp2LN .modal-lg,
  .cid-uAlRMAp2LN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMAp2LN .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMAp2LN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMAp2LN .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-uAlRMAp2LN .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMAp2LN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMAp2LN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMAp2LN .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-uAlRMAp2LN .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMAp2LN .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMAYR72.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMAYR72.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMAYR72.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMAYR72 .modal-content,
.cid-uAlRMAYR72 .modal-dialog {
  height: auto;
}
.cid-uAlRMAYR72 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMAYR72 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMAYR72 .form-wrapper .mbr-form .form-group,
  .cid-uAlRMAYR72 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMAYR72 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMAYR72 .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-uAlRMAYR72 .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAlRMAYR72 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMAYR72 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMAYR72 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMAYR72 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMAYR72 .modal-open {
  overflow: hidden;
}
.cid-uAlRMAYR72 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMAYR72 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMAYR72 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMAYR72 .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-uAlRMAYR72 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMAYR72 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMAYR72 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMAYR72 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMAYR72 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMAYR72 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMAYR72 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMAYR72 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMAYR72 .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-uAlRMAYR72 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMAYR72 .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMAYR72 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMAYR72 .modal-header .close svg {
  fill: #59307c;
}
.cid-uAlRMAYR72 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMAYR72 .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMAYR72 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAlRMAYR72 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMAYR72 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMAYR72 .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMAYR72 .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-uAlRMAYR72 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMAYR72 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMAYR72 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMAYR72 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMAYR72 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMAYR72 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMAYR72 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMAYR72 .modal-lg,
  .cid-uAlRMAYR72 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMAYR72 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMAYR72 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMAYR72 .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-uAlRMAYR72 .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMAYR72 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMAYR72 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMAYR72 .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-uAlRMAYR72 .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMAYR72 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMBy58M.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMBy58M.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMBy58M.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMBy58M .modal-content,
.cid-uAlRMBy58M .modal-dialog {
  height: auto;
}
.cid-uAlRMBy58M .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMBy58M .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMBy58M .form-wrapper .mbr-form .form-group,
  .cid-uAlRMBy58M .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMBy58M .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMBy58M .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-uAlRMBy58M .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAlRMBy58M .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMBy58M .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMBy58M .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMBy58M .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMBy58M .modal-open {
  overflow: hidden;
}
.cid-uAlRMBy58M .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMBy58M .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMBy58M .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMBy58M .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-uAlRMBy58M .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMBy58M .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMBy58M .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMBy58M .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMBy58M .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMBy58M .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMBy58M .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMBy58M .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMBy58M .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-uAlRMBy58M .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMBy58M .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMBy58M .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMBy58M .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAlRMBy58M .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMBy58M .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMBy58M .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAlRMBy58M .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMBy58M .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMBy58M .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMBy58M .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-uAlRMBy58M .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMBy58M .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMBy58M .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMBy58M .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMBy58M .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMBy58M .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMBy58M .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMBy58M .modal-lg,
  .cid-uAlRMBy58M .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMBy58M .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMBy58M .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMBy58M .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-uAlRMBy58M .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMBy58M .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMBy58M .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMBy58M .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-uAlRMBy58M .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMBy58M .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRMCjuUt.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRMCjuUt.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRMCjuUt.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRMCjuUt .modal-content,
.cid-uAlRMCjuUt .modal-dialog {
  height: auto;
}
.cid-uAlRMCjuUt .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRMCjuUt .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRMCjuUt .form-wrapper .mbr-form .form-group,
  .cid-uAlRMCjuUt .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRMCjuUt .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRMCjuUt .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-uAlRMCjuUt .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAlRMCjuUt .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRMCjuUt .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRMCjuUt .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRMCjuUt .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRMCjuUt .modal-open {
  overflow: hidden;
}
.cid-uAlRMCjuUt .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRMCjuUt .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRMCjuUt .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRMCjuUt .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-uAlRMCjuUt .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRMCjuUt .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRMCjuUt .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRMCjuUt .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRMCjuUt .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRMCjuUt .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRMCjuUt .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRMCjuUt .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRMCjuUt .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-uAlRMCjuUt .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMCjuUt .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRMCjuUt .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRMCjuUt .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAlRMCjuUt .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRMCjuUt .modal-header .close:focus {
  outline: none;
}
.cid-uAlRMCjuUt .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAlRMCjuUt .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRMCjuUt .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMCjuUt .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRMCjuUt .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-uAlRMCjuUt .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRMCjuUt .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRMCjuUt .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRMCjuUt .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRMCjuUt .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRMCjuUt .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRMCjuUt .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRMCjuUt .modal-lg,
  .cid-uAlRMCjuUt .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRMCjuUt .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRMCjuUt .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRMCjuUt .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-uAlRMCjuUt .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRMCjuUt .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRMCjuUt .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRMCjuUt .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-uAlRMCjuUt .mbr-section-btn {
  margin: 0;
}
.cid-uAlRMCjuUt .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw88rtGI6.popup-builder {
  background-color: #ffffff;
}
.cid-uBw88rtGI6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw88rtGI6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw88rtGI6 .modal-content,
.cid-uBw88rtGI6 .modal-dialog {
  height: auto;
}
.cid-uBw88rtGI6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw88rtGI6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw88rtGI6 .form-wrapper .mbr-form .form-group,
  .cid-uBw88rtGI6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw88rtGI6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw88rtGI6 .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-uBw88rtGI6 .mbr-text {
  text-align: center;
}
.cid-uBw88rtGI6 .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw88rtGI6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw88rtGI6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw88rtGI6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw88rtGI6 .modal-open {
  overflow: hidden;
}
.cid-uBw88rtGI6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw88rtGI6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw88rtGI6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw88rtGI6 .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-uBw88rtGI6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw88rtGI6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw88rtGI6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw88rtGI6 .modal-content {
  background: #ecedee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw88rtGI6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw88rtGI6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw88rtGI6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw88rtGI6 .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw88rtGI6 .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-uBw88rtGI6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw88rtGI6 .modal-header {
    padding: 1rem;
  }
}
.cid-uBw88rtGI6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw88rtGI6 .modal-header .close svg {
  fill: #ffffff;
}
.cid-uBw88rtGI6 .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw88rtGI6 .modal-header .close:focus {
  outline: none;
}
.cid-uBw88rtGI6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #1f0931;
}
.cid-uBw88rtGI6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw88rtGI6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw88rtGI6 .modal-body {
    padding: 1rem;
  }
}
.cid-uBw88rtGI6 .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-uBw88rtGI6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw88rtGI6 .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw88rtGI6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw88rtGI6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw88rtGI6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw88rtGI6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw88rtGI6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw88rtGI6 .modal-lg,
  .cid-uBw88rtGI6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw88rtGI6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw88rtGI6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw88rtGI6 .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-uBw88rtGI6 .form-group {
  margin-bottom: 1rem;
}
.cid-uBw88rtGI6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw88rtGI6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw88rtGI6 .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-uBw88rtGI6 .mbr-section-btn {
  margin: 0;
}
.cid-uBw88rtGI6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMi13T.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMi13T.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMi13T.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMi13T .modal-content,
.cid-uO9WTMi13T .modal-dialog {
  height: auto;
}
.cid-uO9WTMi13T .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMi13T .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMi13T .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMi13T .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMi13T .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMi13T .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-uO9WTMi13T .mbr-text {
  text-align: center;
}
.cid-uO9WTMi13T .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMi13T .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMi13T .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMi13T .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMi13T .modal-open {
  overflow: hidden;
}
.cid-uO9WTMi13T .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMi13T .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMi13T .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMi13T .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-uO9WTMi13T .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMi13T .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMi13T .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMi13T .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMi13T .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMi13T .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMi13T .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMi13T .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMi13T .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-uO9WTMi13T .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi13T .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMi13T .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMi13T .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMi13T .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMi13T .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMi13T .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMi13T .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMi13T .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi13T .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMi13T .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-uO9WTMi13T .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi13T .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMi13T .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMi13T .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMi13T .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMi13T .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMi13T .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMi13T .modal-lg,
  .cid-uO9WTMi13T .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMi13T .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMi13T .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMi13T .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-uO9WTMi13T .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMi13T .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMi13T .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMi13T .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-uO9WTMi13T .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMi13T .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUvLZAh .dropdown-menu {
  padding: 12px 0;
}
.cid-uAlRUvLZAh .dropdown-item:hover,
.cid-uAlRUvLZAh .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAlRUvLZAh .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAlRUvLZAh .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAlRUvLZAh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAlRUvLZAh .nav-link {
  position: relative;
}
.cid-uAlRUvLZAh .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAlRUvLZAh .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAlRUvLZAh .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAlRUvLZAh .dropdown-menu,
.cid-uAlRUvLZAh .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAlRUvLZAh .nav-item:focus,
.cid-uAlRUvLZAh .nav-link:focus {
  outline: none;
}
.cid-uAlRUvLZAh .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAlRUvLZAh .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAlRUvLZAh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlRUvLZAh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAlRUvLZAh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAlRUvLZAh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAlRUvLZAh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAlRUvLZAh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAlRUvLZAh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAlRUvLZAh .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAlRUvLZAh .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAlRUvLZAh .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAlRUvLZAh .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAlRUvLZAh .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAlRUvLZAh .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAlRUvLZAh .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAlRUvLZAh .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAlRUvLZAh .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAlRUvLZAh .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAlRUvLZAh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAlRUvLZAh .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAlRUvLZAh .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAlRUvLZAh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAlRUvLZAh .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAlRUvLZAh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAlRUvLZAh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAlRUvLZAh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAlRUvLZAh .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: 55%;
}
.cid-uAlRUvLZAh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAlRUvLZAh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAlRUvLZAh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAlRUvLZAh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAlRUvLZAh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAlRUvLZAh .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAlRUvLZAh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAlRUvLZAh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAlRUvLZAh .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: 41%;
  }
  .cid-uAlRUvLZAh .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAlRUvLZAh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAlRUvLZAh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAlRUvLZAh .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAlRUvLZAh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAlRUvLZAh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAlRUvLZAh .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAlRUvLZAh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAlRUvLZAh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAlRUvLZAh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAlRUvLZAh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAlRUvLZAh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAlRUvLZAh .dropdown-item.active,
.cid-uAlRUvLZAh .dropdown-item:active {
  background-color: transparent;
}
.cid-uAlRUvLZAh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAlRUvLZAh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAlRUvLZAh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAlRUvLZAh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAlRUvLZAh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAlRUvLZAh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAlRUvLZAh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAlRUvLZAh .navbar-buttons {
  text-align: center;
}
.cid-uAlRUvLZAh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAlRUvLZAh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAlRUvLZAh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAlRUvLZAh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlRUvLZAh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAlRUvLZAh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAlRUvLZAh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlRUvLZAh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAlRUvLZAh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAlRUvLZAh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAlRUvLZAh .navbar-dropdown {
  position: fixed;
}
.cid-uAlRUvLZAh a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAlRUvLZAh .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAlRUvLZAh .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAlRUvLZAh .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAlRUvLZAh .navbar {
    height: 77px;
  }
  .cid-uAlRUvLZAh .navbar.opened {
    height: auto;
  }
  .cid-uAlRUvLZAh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAlRUwulwF {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAlRUwulwF .container-fluid {
  padding: 0 3rem;
}
.cid-uAlRUwulwF .media-container-column {
  padding: 0 2rem;
}
.cid-uAlRUwulwF .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlRUwulwF .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRUwRs07 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-uAlRUwRs07 .mbr-section-title {
  color: #404040;
}
.cid-uAlRUwRs07 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uAlRUwRs07 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uAlRUwRs07 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAlRUwRs07 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRUwRs07 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRUwRs07 .mbr-section-title,
.cid-uAlRUwRs07 .icon-wrap,
.cid-uAlRUwRs07 .mbr-section-btn {
  color: #ffffff;
}
.cid-uAnh9r6pdR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #260641;
}
.cid-uAnh9r6pdR .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAnh9r6pdR img {
    width: 90%;
  }
}
.cid-uAnh9r6pdR .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAnh9r6pdR .items {
  margin-bottom: 0;
}
.cid-uAnh9r6pdR .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAnh9r6pdR .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAnh9r6pdR .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAnh9r6pdR .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAnh9r6pdR .social-list {
    justify-content: center;
  }
}
.cid-uAnh9r6pdR .card-title {
  text-align: left;
  color: #cecf90;
}
.cid-uAlRUxfSe9 {
  display: flex;
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-14-1920x1280.jpg");
  overflow: hidden;
}
.cid-uAlRUxfSe9 .mbr-overlay {
  background-color: #e6eaf1;
  opacity: 0.8;
}
.cid-uAlRUxfSe9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRUxfSe9 img {
  width: 200px;
  height: 200px;
  filter: grayscale(1);
  object-fit: cover;
  border-radius: 4rem !important;
}
@media (max-width: 767px) {
  .cid-uAlRUxfSe9 img {
    display: none;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUxfSe9 img {
    z-index: 10;
  }
}
.cid-uAlRUxfSe9 .face1 {
  position: absolute;
  left: 7%;
  top: 10%;
  animation: circle1 6s linear infinite;
}
.cid-uAlRUxfSe9 .face2 {
  position: absolute;
  right: 7%;
  top: 13%;
  animation: circle1 6s linear infinite;
}
.cid-uAlRUxfSe9 .face3 {
  position: absolute;
  left: 12%;
  bottom: 30%;
  animation: circle2 6s linear infinite;
}
.cid-uAlRUxfSe9 .face4 {
  position: absolute;
  right: 15%;
  bottom: 28%;
  animation: circle2 6s linear infinite;
}
@keyframes circle1 {
  0% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
}
@keyframes circle2 {
  0% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
  100% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
}
.cid-uAlRUxfSe9 .mbr-tag {
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 5px 30px;
  text-align: center;
  display: inline-block;
  margin-bottom: 6px;
}
.cid-uAlRUxfSe9 .round {
  position: absolute;
  bottom: -1430px;
  left: -20%;
  width: 140%;
  height: 1700px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background: #1f0931;
}
@media (max-width: 992px) {
  .cid-uAlRUxfSe9 .round {
    bottom: -1300px;
    height: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uAlRUxfSe9 .round {
    height: 600px;
    bottom: -500px;
  }
}
.cid-uAlRUxfSe9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRUxfSe9 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uAlRUxfSe9 .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uAlRUxfSe9 {
    align-items: flex-start;
  }
  .cid-uAlRUxfSe9 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAlRUxfSe9 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uAlRUxfSe9 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uAlRUxfSe9 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uAlRUxfSe9 .content-wrap {
    width: 100%;
  }
}
.cid-uAlRUxfSe9 .mbr-section-title {
  text-align: center;
  color: #1f0931;
}
.cid-uAlRUxfSe9 .mbr-text,
.cid-uAlRUxfSe9 .mbr-section-btn {
  text-align: center;
  color: #38346b;
}
.cid-uAlRUxfSe9 .mbr-tag,
.cid-uAlRUxfSe9 .tags {
  text-align: center;
  color: #1f0931;
}
.cid-uAlRUxfSe9 .mbr-section-subtitle {
  color: #38346b;
  text-align: center;
}
.cid-uAlRUxKwGM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAlRUxKwGM .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAlRUxKwGM img {
    width: 90%;
  }
}
.cid-uAlRUxKwGM .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAlRUxKwGM .items {
  margin-bottom: 0;
}
.cid-uAlRUxKwGM .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAlRUxKwGM .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAlRUxKwGM .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAlRUxKwGM .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAlRUxKwGM .social-list {
    justify-content: center;
  }
}
.cid-uAlRUxKwGM .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uAlRUyexBq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uAlRUyexBq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRUyexBq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRUyexBq .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAlRUyexBq .content-wrapper .mbr-section-title span {
  color: #5ca7db;
}
.cid-uAlRUyexBq .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uAlRUyexBq .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uAlRUyexBq .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #b97ecd, #292739);
}
@media (max-width: 992px) {
  .cid-uAlRUyexBq .border-wrap {
    margin-top: 32px;
  }
}
.cid-uAlRUyexBq .mbr-section-title {
  color: #ffffff;
}
.cid-uAlRUyexBq .mbr-text,
.cid-uAlRUyexBq .text-wrapper {
  color: #e6eaf1;
  text-align: center;
}
.cid-uAlRUyexBq .mbr-section-title,
.cid-uAlRUyexBq .mbr-section-btn {
  text-align: center;
  color: #e6eaf1;
}
.cid-uAlRUyHLYS {
  padding-top: 90px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
.cid-uAlRUyHLYS .link-align {
  width: 100%;
}
.cid-uAlRUyHLYS .link-wrap {
  display: inline-block;
}
@keyframes hover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uAlRUyHLYS .mbr-text,
.cid-uAlRUyHLYS .link-align {
  color: #ffffff;
}
.cid-uAlRUyHLYS .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  width: 100px;
  background-color: #e2090d;
  height: 100px;
  cursor: pointer;
}
.cid-uAlRUyHLYS .icon-wrap:hover {
  animation: 0.6s hover;
}
.cid-uAlRUyHLYS .icon-wrap span {
  padding-left: 4px;
}
.cid-uAlRUyHLYS .mbr-media span {
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uAlRUyHLYS .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uAlRUyHLYS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uAlRUyHLYS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uAlRUyHLYS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uAlRUyHLYS a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uAlRUyHLYS a.close:hover {
  color: #ffffff;
}
.cid-uAlRUyHLYS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRUyHLYS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRUyHLYS H1 {
  color: #d75959;
}
.cid-uAlRUznmbi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #999999;
}
.cid-uAlRUznmbi .container-fluid {
  padding: 0 3rem;
}
.cid-uAlRUznmbi .media-container-column {
  padding: 0 2rem;
}
.cid-uAlRUznmbi .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uAlRUznmbi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRUzL6A2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fdfcfa;
}
.cid-uAlRUzL6A2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAlRUzL6A2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAlRUzL6A2 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uAlRUzL6A2 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uAlRUzL6A2 .container {
    padding: 0;
  }
}
.cid-uAlRUzL6A2 .row {
  justify-content: center;
}
.cid-uAlRUzL6A2 .nav.nav-tabs {
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
  border: none;
}
@media (max-width: 992px) {
  .cid-uAlRUzL6A2 .nav.nav-tabs {
    margin-bottom: 40px;
    padding: 0 16px;
  }
}
.cid-uAlRUzL6A2 .nav.nav-tabs .nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  border-left: 1px solid #410078;
}
.cid-uAlRUzL6A2 .nav.nav-tabs .nav-item:first-child {
  border-left: none;
}
@media (max-width: 992px) {
  .cid-uAlRUzL6A2 .nav.nav-tabs .nav-item {
    border: none;
    margin-bottom: 10px;
  }
}
.cid-uAlRUzL6A2 .nav.nav-tabs .nav-item .nav-link {
  padding: 0;
  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-uAlRUzL6A2 .nav.nav-tabs .nav-item .nav-link.active {
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uAlRUzL6A2 .tab-content {
    margin-bottom: 40px;
    padding: 0 16px;
  }
}
.cid-uAlRUzL6A2 .tab-content .tab-pane .image-wrap img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAlRUzL6A2 .tab-content .tab-pane .image-wrap img {
    height: 300px;
  }
}
.cid-uAlRUzL6A2 .tab-content .tab-pane .text-wrap {
  padding-left: 70px;
}
@media (max-width: 992px) {
  .cid-uAlRUzL6A2 .tab-content .tab-pane .text-wrap {
    padding-left: 0;
    margin-top: 30px;
  }
}
.cid-uAlRUzL6A2 .tab-content .tab-pane .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAlRUzL6A2 .mbr-text {
  color: #15171a;
  text-align: left;
}
.cid-uAoaGO8K5S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAoaGO8K5S .container-fluid {
  padding: 0 3rem;
}
.cid-uAoaGO8K5S .media-container-column {
  padding: 0 2rem;
}
.cid-uAoaGO8K5S .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uAoaGO8K5S .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRUBIjOR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAlRUBIjOR .container-fluid {
  padding: 0 3rem;
}
.cid-uAlRUBIjOR .media-container-column {
  padding: 0 2rem;
}
.cid-uAlRUBIjOR .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAlRUBIjOR .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAlRUC3vJe.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUC3vJe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUC3vJe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUC3vJe .modal-content,
.cid-uAlRUC3vJe .modal-dialog {
  height: auto;
}
.cid-uAlRUC3vJe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUC3vJe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUC3vJe .form-wrapper .mbr-form .form-group,
  .cid-uAlRUC3vJe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUC3vJe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUC3vJe .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-uAlRUC3vJe .mbr-text {
  text-align: center;
}
.cid-uAlRUC3vJe .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUC3vJe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUC3vJe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUC3vJe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUC3vJe .modal-open {
  overflow: hidden;
}
.cid-uAlRUC3vJe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUC3vJe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUC3vJe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUC3vJe .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-uAlRUC3vJe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUC3vJe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUC3vJe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUC3vJe .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUC3vJe .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUC3vJe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUC3vJe .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUC3vJe .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUC3vJe .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-uAlRUC3vJe .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUC3vJe .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUC3vJe .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUC3vJe .modal-header .close svg {
  fill: #611750;
}
.cid-uAlRUC3vJe .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUC3vJe .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUC3vJe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAlRUC3vJe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUC3vJe .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUC3vJe .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUC3vJe .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-uAlRUC3vJe .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUC3vJe .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUC3vJe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUC3vJe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUC3vJe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUC3vJe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUC3vJe .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUC3vJe .modal-lg,
  .cid-uAlRUC3vJe .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUC3vJe .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUC3vJe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUC3vJe .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-uAlRUC3vJe .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUC3vJe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUC3vJe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUC3vJe .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-uAlRUC3vJe .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUC3vJe .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUCDlTG.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUCDlTG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUCDlTG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUCDlTG .modal-content,
.cid-uAlRUCDlTG .modal-dialog {
  height: auto;
}
.cid-uAlRUCDlTG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUCDlTG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUCDlTG .form-wrapper .mbr-form .form-group,
  .cid-uAlRUCDlTG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUCDlTG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUCDlTG .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-uAlRUCDlTG .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRUCDlTG .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUCDlTG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUCDlTG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUCDlTG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUCDlTG .modal-open {
  overflow: hidden;
}
.cid-uAlRUCDlTG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUCDlTG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUCDlTG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUCDlTG .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-uAlRUCDlTG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUCDlTG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUCDlTG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUCDlTG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUCDlTG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUCDlTG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUCDlTG .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUCDlTG .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUCDlTG .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-uAlRUCDlTG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUCDlTG .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUCDlTG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUCDlTG .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRUCDlTG .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUCDlTG .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUCDlTG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRUCDlTG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUCDlTG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUCDlTG .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUCDlTG .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-uAlRUCDlTG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUCDlTG .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUCDlTG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUCDlTG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUCDlTG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUCDlTG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUCDlTG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUCDlTG .modal-lg,
  .cid-uAlRUCDlTG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUCDlTG .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUCDlTG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUCDlTG .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-uAlRUCDlTG .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUCDlTG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUCDlTG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUCDlTG .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-uAlRUCDlTG .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUCDlTG .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUDakxe.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUDakxe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUDakxe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUDakxe .modal-content,
.cid-uAlRUDakxe .modal-dialog {
  height: auto;
}
.cid-uAlRUDakxe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUDakxe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUDakxe .form-wrapper .mbr-form .form-group,
  .cid-uAlRUDakxe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUDakxe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUDakxe .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-uAlRUDakxe .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRUDakxe .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUDakxe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUDakxe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUDakxe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUDakxe .modal-open {
  overflow: hidden;
}
.cid-uAlRUDakxe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUDakxe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUDakxe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUDakxe .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-uAlRUDakxe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUDakxe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUDakxe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUDakxe .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUDakxe .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUDakxe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUDakxe .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUDakxe .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUDakxe .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-uAlRUDakxe .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUDakxe .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUDakxe .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUDakxe .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRUDakxe .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUDakxe .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUDakxe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRUDakxe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUDakxe .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUDakxe .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUDakxe .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-uAlRUDakxe .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUDakxe .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUDakxe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUDakxe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUDakxe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUDakxe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUDakxe .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUDakxe .modal-lg,
  .cid-uAlRUDakxe .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUDakxe .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUDakxe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUDakxe .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-uAlRUDakxe .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUDakxe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUDakxe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUDakxe .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-uAlRUDakxe .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUDakxe .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUDHhnq.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUDHhnq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUDHhnq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUDHhnq .modal-content,
.cid-uAlRUDHhnq .modal-dialog {
  height: auto;
}
.cid-uAlRUDHhnq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUDHhnq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUDHhnq .form-wrapper .mbr-form .form-group,
  .cid-uAlRUDHhnq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUDHhnq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUDHhnq .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-uAlRUDHhnq .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRUDHhnq .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUDHhnq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUDHhnq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUDHhnq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUDHhnq .modal-open {
  overflow: hidden;
}
.cid-uAlRUDHhnq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUDHhnq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUDHhnq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUDHhnq .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-uAlRUDHhnq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUDHhnq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUDHhnq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUDHhnq .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUDHhnq .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUDHhnq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUDHhnq .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUDHhnq .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUDHhnq .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-uAlRUDHhnq .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUDHhnq .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUDHhnq .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUDHhnq .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRUDHhnq .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUDHhnq .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUDHhnq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRUDHhnq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUDHhnq .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUDHhnq .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUDHhnq .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-uAlRUDHhnq .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUDHhnq .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUDHhnq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUDHhnq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUDHhnq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUDHhnq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUDHhnq .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUDHhnq .modal-lg,
  .cid-uAlRUDHhnq .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUDHhnq .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUDHhnq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUDHhnq .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-uAlRUDHhnq .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUDHhnq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUDHhnq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUDHhnq .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-uAlRUDHhnq .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUDHhnq .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUEfirr.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUEfirr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUEfirr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUEfirr .modal-content,
.cid-uAlRUEfirr .modal-dialog {
  height: auto;
}
.cid-uAlRUEfirr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUEfirr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUEfirr .form-wrapper .mbr-form .form-group,
  .cid-uAlRUEfirr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUEfirr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUEfirr .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-uAlRUEfirr .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAlRUEfirr .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUEfirr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUEfirr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUEfirr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUEfirr .modal-open {
  overflow: hidden;
}
.cid-uAlRUEfirr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUEfirr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUEfirr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUEfirr .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-uAlRUEfirr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUEfirr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUEfirr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUEfirr .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUEfirr .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUEfirr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUEfirr .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUEfirr .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUEfirr .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-uAlRUEfirr .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUEfirr .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUEfirr .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUEfirr .modal-header .close svg {
  fill: #260641;
}
.cid-uAlRUEfirr .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUEfirr .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUEfirr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRUEfirr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUEfirr .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUEfirr .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUEfirr .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-uAlRUEfirr .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUEfirr .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUEfirr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUEfirr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUEfirr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUEfirr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUEfirr .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUEfirr .modal-lg,
  .cid-uAlRUEfirr .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUEfirr .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUEfirr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUEfirr .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-uAlRUEfirr .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUEfirr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUEfirr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUEfirr .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-uAlRUEfirr .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUEfirr .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUEVHi1.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUEVHi1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUEVHi1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUEVHi1 .modal-content,
.cid-uAlRUEVHi1 .modal-dialog {
  height: auto;
}
.cid-uAlRUEVHi1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUEVHi1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUEVHi1 .form-wrapper .mbr-form .form-group,
  .cid-uAlRUEVHi1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUEVHi1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUEVHi1 .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-uAlRUEVHi1 .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uAlRUEVHi1 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUEVHi1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUEVHi1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUEVHi1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUEVHi1 .modal-open {
  overflow: hidden;
}
.cid-uAlRUEVHi1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUEVHi1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUEVHi1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUEVHi1 .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-uAlRUEVHi1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUEVHi1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUEVHi1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUEVHi1 .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUEVHi1 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUEVHi1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUEVHi1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUEVHi1 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUEVHi1 .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-uAlRUEVHi1 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUEVHi1 .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUEVHi1 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUEVHi1 .modal-header .close svg {
  fill: #f9fafb;
}
.cid-uAlRUEVHi1 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUEVHi1 .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUEVHi1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uAlRUEVHi1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUEVHi1 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUEVHi1 .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUEVHi1 .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-uAlRUEVHi1 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUEVHi1 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUEVHi1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUEVHi1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUEVHi1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUEVHi1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUEVHi1 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUEVHi1 .modal-lg,
  .cid-uAlRUEVHi1 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUEVHi1 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUEVHi1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUEVHi1 .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-uAlRUEVHi1 .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUEVHi1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUEVHi1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUEVHi1 .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-uAlRUEVHi1 .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUEVHi1 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUFyoNm.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUFyoNm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUFyoNm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUFyoNm .modal-content,
.cid-uAlRUFyoNm .modal-dialog {
  height: auto;
}
.cid-uAlRUFyoNm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUFyoNm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUFyoNm .form-wrapper .mbr-form .form-group,
  .cid-uAlRUFyoNm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUFyoNm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUFyoNm .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-uAlRUFyoNm .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uAlRUFyoNm .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUFyoNm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUFyoNm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUFyoNm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUFyoNm .modal-open {
  overflow: hidden;
}
.cid-uAlRUFyoNm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUFyoNm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUFyoNm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUFyoNm .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-uAlRUFyoNm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUFyoNm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUFyoNm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUFyoNm .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUFyoNm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUFyoNm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUFyoNm .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUFyoNm .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUFyoNm .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-uAlRUFyoNm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUFyoNm .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUFyoNm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUFyoNm .modal-header .close svg {
  fill: #611750;
}
.cid-uAlRUFyoNm .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUFyoNm .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUFyoNm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAlRUFyoNm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUFyoNm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUFyoNm .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUFyoNm .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-uAlRUFyoNm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUFyoNm .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUFyoNm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUFyoNm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUFyoNm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUFyoNm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUFyoNm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUFyoNm .modal-lg,
  .cid-uAlRUFyoNm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUFyoNm .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUFyoNm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUFyoNm .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-uAlRUFyoNm .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUFyoNm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUFyoNm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUFyoNm .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-uAlRUFyoNm .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUFyoNm .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUG8a8S.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUG8a8S.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUG8a8S.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUG8a8S .modal-content,
.cid-uAlRUG8a8S .modal-dialog {
  height: auto;
}
.cid-uAlRUG8a8S .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUG8a8S .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUG8a8S .form-wrapper .mbr-form .form-group,
  .cid-uAlRUG8a8S .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUG8a8S .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUG8a8S .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-uAlRUG8a8S .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAlRUG8a8S .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUG8a8S .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUG8a8S .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUG8a8S .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUG8a8S .modal-open {
  overflow: hidden;
}
.cid-uAlRUG8a8S .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUG8a8S .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUG8a8S .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUG8a8S .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-uAlRUG8a8S .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUG8a8S .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUG8a8S .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUG8a8S .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUG8a8S .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUG8a8S .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUG8a8S .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUG8a8S .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUG8a8S .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-uAlRUG8a8S .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUG8a8S .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUG8a8S .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUG8a8S .modal-header .close svg {
  fill: #59307c;
}
.cid-uAlRUG8a8S .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUG8a8S .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUG8a8S .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAlRUG8a8S .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUG8a8S .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUG8a8S .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUG8a8S .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-uAlRUG8a8S .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUG8a8S .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUG8a8S .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUG8a8S .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUG8a8S .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUG8a8S .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUG8a8S .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUG8a8S .modal-lg,
  .cid-uAlRUG8a8S .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUG8a8S .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUG8a8S .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUG8a8S .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-uAlRUG8a8S .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUG8a8S .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUG8a8S .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUG8a8S .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-uAlRUG8a8S .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUG8a8S .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUGLomx.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUGLomx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUGLomx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUGLomx .modal-content,
.cid-uAlRUGLomx .modal-dialog {
  height: auto;
}
.cid-uAlRUGLomx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUGLomx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUGLomx .form-wrapper .mbr-form .form-group,
  .cid-uAlRUGLomx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUGLomx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUGLomx .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-uAlRUGLomx .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAlRUGLomx .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUGLomx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUGLomx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUGLomx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUGLomx .modal-open {
  overflow: hidden;
}
.cid-uAlRUGLomx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUGLomx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUGLomx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUGLomx .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-uAlRUGLomx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUGLomx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUGLomx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUGLomx .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUGLomx .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUGLomx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUGLomx .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUGLomx .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUGLomx .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-uAlRUGLomx .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUGLomx .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUGLomx .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUGLomx .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAlRUGLomx .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUGLomx .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUGLomx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAlRUGLomx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUGLomx .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUGLomx .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUGLomx .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-uAlRUGLomx .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUGLomx .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUGLomx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUGLomx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUGLomx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUGLomx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUGLomx .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUGLomx .modal-lg,
  .cid-uAlRUGLomx .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUGLomx .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUGLomx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUGLomx .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-uAlRUGLomx .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUGLomx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUGLomx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUGLomx .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-uAlRUGLomx .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUGLomx .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAlRUHpAhi.popup-builder {
  background-color: #ffffff;
}
.cid-uAlRUHpAhi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAlRUHpAhi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAlRUHpAhi .modal-content,
.cid-uAlRUHpAhi .modal-dialog {
  height: auto;
}
.cid-uAlRUHpAhi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAlRUHpAhi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAlRUHpAhi .form-wrapper .mbr-form .form-group,
  .cid-uAlRUHpAhi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAlRUHpAhi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAlRUHpAhi .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-uAlRUHpAhi .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAlRUHpAhi .pt-0 {
  padding-top: 0 !important;
}
.cid-uAlRUHpAhi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAlRUHpAhi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAlRUHpAhi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAlRUHpAhi .modal-open {
  overflow: hidden;
}
.cid-uAlRUHpAhi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAlRUHpAhi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAlRUHpAhi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAlRUHpAhi .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-uAlRUHpAhi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAlRUHpAhi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAlRUHpAhi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAlRUHpAhi .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAlRUHpAhi .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAlRUHpAhi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAlRUHpAhi .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAlRUHpAhi .modal-backdrop.show {
  opacity: .5;
}
.cid-uAlRUHpAhi .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-uAlRUHpAhi .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUHpAhi .modal-header {
    padding: 1rem;
  }
}
.cid-uAlRUHpAhi .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAlRUHpAhi .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAlRUHpAhi .modal-header .close:hover {
  opacity: 1;
}
.cid-uAlRUHpAhi .modal-header .close:focus {
  outline: none;
}
.cid-uAlRUHpAhi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAlRUHpAhi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAlRUHpAhi .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUHpAhi .modal-body {
    padding: 1rem;
  }
}
.cid-uAlRUHpAhi .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-uAlRUHpAhi .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAlRUHpAhi .modal-footer {
    padding: 1rem;
  }
}
.cid-uAlRUHpAhi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAlRUHpAhi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAlRUHpAhi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAlRUHpAhi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAlRUHpAhi .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAlRUHpAhi .modal-lg,
  .cid-uAlRUHpAhi .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAlRUHpAhi .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAlRUHpAhi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAlRUHpAhi .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-uAlRUHpAhi .form-group {
  margin-bottom: 1rem;
}
.cid-uAlRUHpAhi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAlRUHpAhi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAlRUHpAhi .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-uAlRUHpAhi .mbr-section-btn {
  margin: 0;
}
.cid-uAlRUHpAhi .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw8hP9QhS.popup-builder {
  background-color: #ffffff;
}
.cid-uBw8hP9QhS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw8hP9QhS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw8hP9QhS .modal-content,
.cid-uBw8hP9QhS .modal-dialog {
  height: auto;
}
.cid-uBw8hP9QhS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw8hP9QhS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw8hP9QhS .form-wrapper .mbr-form .form-group,
  .cid-uBw8hP9QhS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw8hP9QhS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw8hP9QhS .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-uBw8hP9QhS .mbr-text {
  text-align: center;
}
.cid-uBw8hP9QhS .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw8hP9QhS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw8hP9QhS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw8hP9QhS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw8hP9QhS .modal-open {
  overflow: hidden;
}
.cid-uBw8hP9QhS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw8hP9QhS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw8hP9QhS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw8hP9QhS .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-uBw8hP9QhS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw8hP9QhS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw8hP9QhS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw8hP9QhS .modal-content {
  background: #ecedee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw8hP9QhS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw8hP9QhS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw8hP9QhS .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw8hP9QhS .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw8hP9QhS .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-uBw8hP9QhS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw8hP9QhS .modal-header {
    padding: 1rem;
  }
}
.cid-uBw8hP9QhS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw8hP9QhS .modal-header .close svg {
  fill: #ffffff;
}
.cid-uBw8hP9QhS .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw8hP9QhS .modal-header .close:focus {
  outline: none;
}
.cid-uBw8hP9QhS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #1f0931;
}
.cid-uBw8hP9QhS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw8hP9QhS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw8hP9QhS .modal-body {
    padding: 1rem;
  }
}
.cid-uBw8hP9QhS .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-uBw8hP9QhS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw8hP9QhS .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw8hP9QhS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw8hP9QhS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw8hP9QhS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw8hP9QhS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw8hP9QhS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw8hP9QhS .modal-lg,
  .cid-uBw8hP9QhS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw8hP9QhS .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw8hP9QhS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw8hP9QhS .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-uBw8hP9QhS .form-group {
  margin-bottom: 1rem;
}
.cid-uBw8hP9QhS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw8hP9QhS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw8hP9QhS .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-uBw8hP9QhS .mbr-section-btn {
  margin: 0;
}
.cid-uBw8hP9QhS .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMiXNi.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMiXNi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMiXNi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMiXNi .modal-content,
.cid-uO9WTMiXNi .modal-dialog {
  height: auto;
}
.cid-uO9WTMiXNi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMiXNi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMiXNi .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMiXNi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMiXNi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMiXNi .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-uO9WTMiXNi .mbr-text {
  text-align: center;
}
.cid-uO9WTMiXNi .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMiXNi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMiXNi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMiXNi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMiXNi .modal-open {
  overflow: hidden;
}
.cid-uO9WTMiXNi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMiXNi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMiXNi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMiXNi .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-uO9WTMiXNi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMiXNi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMiXNi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMiXNi .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMiXNi .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMiXNi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMiXNi .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMiXNi .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMiXNi .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-uO9WTMiXNi .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMiXNi .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMiXNi .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMiXNi .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMiXNi .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMiXNi .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMiXNi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMiXNi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMiXNi .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMiXNi .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMiXNi .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-uO9WTMiXNi .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMiXNi .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMiXNi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMiXNi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMiXNi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMiXNi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMiXNi .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMiXNi .modal-lg,
  .cid-uO9WTMiXNi .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMiXNi .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMiXNi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMiXNi .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-uO9WTMiXNi .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMiXNi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMiXNi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMiXNi .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-uO9WTMiXNi .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMiXNi .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAm46W1PED .dropdown-menu {
  padding: 12px 0;
}
.cid-uAm46W1PED .dropdown-item:hover,
.cid-uAm46W1PED .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAm46W1PED .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAm46W1PED .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAm46W1PED .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAm46W1PED .nav-link {
  position: relative;
}
.cid-uAm46W1PED .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAm46W1PED .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAm46W1PED .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAm46W1PED .dropdown-menu,
.cid-uAm46W1PED .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAm46W1PED .nav-item:focus,
.cid-uAm46W1PED .nav-link:focus {
  outline: none;
}
.cid-uAm46W1PED .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAm46W1PED .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAm46W1PED .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAm46W1PED .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAm46W1PED .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAm46W1PED .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAm46W1PED .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAm46W1PED .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAm46W1PED .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAm46W1PED .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAm46W1PED .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAm46W1PED .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAm46W1PED .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAm46W1PED .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAm46W1PED .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAm46W1PED .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAm46W1PED .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAm46W1PED .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAm46W1PED .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAm46W1PED .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAm46W1PED .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAm46W1PED .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAm46W1PED .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAm46W1PED .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAm46W1PED .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAm46W1PED .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAm46W1PED .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAm46W1PED .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: 55%;
}
.cid-uAm46W1PED .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAm46W1PED .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAm46W1PED .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAm46W1PED .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAm46W1PED .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAm46W1PED .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAm46W1PED .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAm46W1PED .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAm46W1PED .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: 41%;
  }
  .cid-uAm46W1PED .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAm46W1PED .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAm46W1PED .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAm46W1PED .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAm46W1PED .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAm46W1PED .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAm46W1PED .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAm46W1PED .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAm46W1PED .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAm46W1PED .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAm46W1PED .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAm46W1PED .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAm46W1PED .dropdown-item.active,
.cid-uAm46W1PED .dropdown-item:active {
  background-color: transparent;
}
.cid-uAm46W1PED .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAm46W1PED .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAm46W1PED .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAm46W1PED .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAm46W1PED .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAm46W1PED .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAm46W1PED ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAm46W1PED .navbar-buttons {
  text-align: center;
}
.cid-uAm46W1PED button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAm46W1PED button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAm46W1PED button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAm46W1PED button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAm46W1PED button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAm46W1PED button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAm46W1PED nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAm46W1PED nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAm46W1PED nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAm46W1PED nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAm46W1PED .navbar-dropdown {
  position: fixed;
}
.cid-uAm46W1PED a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAm46W1PED .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAm46W1PED .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAm46W1PED .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAm46W1PED .navbar {
    height: 77px;
  }
  .cid-uAm46W1PED .navbar.opened {
    height: auto;
  }
  .cid-uAm46W1PED .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAm46WzDWj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAm46WzDWj .container-fluid {
  padding: 0 3rem;
}
.cid-uAm46WzDWj .media-container-column {
  padding: 0 2rem;
}
.cid-uAm46WzDWj .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAm46WzDWj .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAm46WTUBS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-uAm46WTUBS .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #3c71d3, #38346b);
}
.cid-uAm46WTUBS .mbr-text,
.cid-uAm46WTUBS .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uAm46WTUBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAm46WTUBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAm46WTUBS .mbr-section-title,
.cid-uAm46WTUBS .title-wrapper {
  text-align: center;
  color: #d4a4e4;
}
.cid-uAm46XUjJY {
  padding-top: 6rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uAm46XUjJY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAm46XUjJY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAm46XUjJY .container {
    padding: 0 16px;
  }
}
.cid-uAm46XUjJY .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAm46XUjJY .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAm46XUjJY .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uAm46XUjJY .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAm46XUjJY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAm46XUjJY .mbr-text {
  color: #ffffff;
}
.cid-uAm46XUjJY .mbr-text,
.cid-uAm46XUjJY .mbr-section-btn {
  text-align: center;
}
.cid-uAm46XUjJY .mbr-section-title,
.cid-uAm46XUjJY .title-wrap {
  color: #410078;
}
.cid-uAm46YeROD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAm46YeROD .container-fluid {
  padding: 0 3rem;
}
.cid-uAm46YeROD .media-container-column {
  padding: 0 2rem;
}
.cid-uAm46YeROD .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAm46YeROD .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAm46Yw7uA.popup-builder {
  background-color: #ffffff;
}
.cid-uAm46Yw7uA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAm46Yw7uA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAm46Yw7uA .modal-content,
.cid-uAm46Yw7uA .modal-dialog {
  height: auto;
}
.cid-uAm46Yw7uA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAm46Yw7uA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAm46Yw7uA .form-wrapper .mbr-form .form-group,
  .cid-uAm46Yw7uA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAm46Yw7uA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAm46Yw7uA .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-uAm46Yw7uA .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAm46Yw7uA .pt-0 {
  padding-top: 0 !important;
}
.cid-uAm46Yw7uA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAm46Yw7uA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAm46Yw7uA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAm46Yw7uA .modal-open {
  overflow: hidden;
}
.cid-uAm46Yw7uA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAm46Yw7uA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAm46Yw7uA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAm46Yw7uA .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-uAm46Yw7uA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAm46Yw7uA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAm46Yw7uA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAm46Yw7uA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAm46Yw7uA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAm46Yw7uA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAm46Yw7uA .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAm46Yw7uA .modal-backdrop.show {
  opacity: .5;
}
.cid-uAm46Yw7uA .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-uAm46Yw7uA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAm46Yw7uA .modal-header {
    padding: 1rem;
  }
}
.cid-uAm46Yw7uA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAm46Yw7uA .modal-header .close svg {
  fill: #59307c;
}
.cid-uAm46Yw7uA .modal-header .close:hover {
  opacity: 1;
}
.cid-uAm46Yw7uA .modal-header .close:focus {
  outline: none;
}
.cid-uAm46Yw7uA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAm46Yw7uA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAm46Yw7uA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAm46Yw7uA .modal-body {
    padding: 1rem;
  }
}
.cid-uAm46Yw7uA .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-uAm46Yw7uA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAm46Yw7uA .modal-footer {
    padding: 1rem;
  }
}
.cid-uAm46Yw7uA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAm46Yw7uA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAm46Yw7uA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAm46Yw7uA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAm46Yw7uA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAm46Yw7uA .modal-lg,
  .cid-uAm46Yw7uA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAm46Yw7uA .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAm46Yw7uA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAm46Yw7uA .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-uAm46Yw7uA .form-group {
  margin-bottom: 1rem;
}
.cid-uAm46Yw7uA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAm46Yw7uA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAm46Yw7uA .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-uAm46Yw7uA .mbr-section-btn {
  margin: 0;
}
.cid-uAm46Yw7uA .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAm46YZSGz.popup-builder {
  background-color: #ffffff;
}
.cid-uAm46YZSGz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAm46YZSGz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAm46YZSGz .modal-content,
.cid-uAm46YZSGz .modal-dialog {
  height: auto;
}
.cid-uAm46YZSGz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAm46YZSGz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAm46YZSGz .form-wrapper .mbr-form .form-group,
  .cid-uAm46YZSGz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAm46YZSGz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAm46YZSGz .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-uAm46YZSGz .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAm46YZSGz .pt-0 {
  padding-top: 0 !important;
}
.cid-uAm46YZSGz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAm46YZSGz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAm46YZSGz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAm46YZSGz .modal-open {
  overflow: hidden;
}
.cid-uAm46YZSGz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAm46YZSGz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAm46YZSGz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAm46YZSGz .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-uAm46YZSGz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAm46YZSGz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAm46YZSGz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAm46YZSGz .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAm46YZSGz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAm46YZSGz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAm46YZSGz .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAm46YZSGz .modal-backdrop.show {
  opacity: .5;
}
.cid-uAm46YZSGz .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-uAm46YZSGz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAm46YZSGz .modal-header {
    padding: 1rem;
  }
}
.cid-uAm46YZSGz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAm46YZSGz .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAm46YZSGz .modal-header .close:hover {
  opacity: 1;
}
.cid-uAm46YZSGz .modal-header .close:focus {
  outline: none;
}
.cid-uAm46YZSGz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAm46YZSGz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAm46YZSGz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAm46YZSGz .modal-body {
    padding: 1rem;
  }
}
.cid-uAm46YZSGz .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-uAm46YZSGz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAm46YZSGz .modal-footer {
    padding: 1rem;
  }
}
.cid-uAm46YZSGz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAm46YZSGz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAm46YZSGz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAm46YZSGz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAm46YZSGz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAm46YZSGz .modal-lg,
  .cid-uAm46YZSGz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAm46YZSGz .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAm46YZSGz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAm46YZSGz .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-uAm46YZSGz .form-group {
  margin-bottom: 1rem;
}
.cid-uAm46YZSGz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAm46YZSGz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAm46YZSGz .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-uAm46YZSGz .mbr-section-btn {
  margin: 0;
}
.cid-uAm46YZSGz .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAm46Zu7PK.popup-builder {
  background-color: #ffffff;
}
.cid-uAm46Zu7PK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAm46Zu7PK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAm46Zu7PK .modal-content,
.cid-uAm46Zu7PK .modal-dialog {
  height: auto;
}
.cid-uAm46Zu7PK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAm46Zu7PK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAm46Zu7PK .form-wrapper .mbr-form .form-group,
  .cid-uAm46Zu7PK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAm46Zu7PK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAm46Zu7PK .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-uAm46Zu7PK .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAm46Zu7PK .pt-0 {
  padding-top: 0 !important;
}
.cid-uAm46Zu7PK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAm46Zu7PK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAm46Zu7PK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAm46Zu7PK .modal-open {
  overflow: hidden;
}
.cid-uAm46Zu7PK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAm46Zu7PK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAm46Zu7PK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAm46Zu7PK .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-uAm46Zu7PK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAm46Zu7PK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAm46Zu7PK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAm46Zu7PK .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAm46Zu7PK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAm46Zu7PK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAm46Zu7PK .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAm46Zu7PK .modal-backdrop.show {
  opacity: .5;
}
.cid-uAm46Zu7PK .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-uAm46Zu7PK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAm46Zu7PK .modal-header {
    padding: 1rem;
  }
}
.cid-uAm46Zu7PK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAm46Zu7PK .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAm46Zu7PK .modal-header .close:hover {
  opacity: 1;
}
.cid-uAm46Zu7PK .modal-header .close:focus {
  outline: none;
}
.cid-uAm46Zu7PK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAm46Zu7PK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAm46Zu7PK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAm46Zu7PK .modal-body {
    padding: 1rem;
  }
}
.cid-uAm46Zu7PK .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-uAm46Zu7PK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAm46Zu7PK .modal-footer {
    padding: 1rem;
  }
}
.cid-uAm46Zu7PK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAm46Zu7PK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAm46Zu7PK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAm46Zu7PK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAm46Zu7PK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAm46Zu7PK .modal-lg,
  .cid-uAm46Zu7PK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAm46Zu7PK .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAm46Zu7PK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAm46Zu7PK .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-uAm46Zu7PK .form-group {
  margin-bottom: 1rem;
}
.cid-uAm46Zu7PK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAm46Zu7PK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAm46Zu7PK .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-uAm46Zu7PK .mbr-section-btn {
  margin: 0;
}
.cid-uAm46Zu7PK .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMi0qG.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMi0qG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMi0qG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMi0qG .modal-content,
.cid-uO9WTMi0qG .modal-dialog {
  height: auto;
}
.cid-uO9WTMi0qG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMi0qG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMi0qG .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMi0qG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMi0qG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMi0qG .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-uO9WTMi0qG .mbr-text {
  text-align: center;
}
.cid-uO9WTMi0qG .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMi0qG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMi0qG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMi0qG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMi0qG .modal-open {
  overflow: hidden;
}
.cid-uO9WTMi0qG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMi0qG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMi0qG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMi0qG .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-uO9WTMi0qG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMi0qG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMi0qG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMi0qG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMi0qG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMi0qG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMi0qG .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMi0qG .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMi0qG .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-uO9WTMi0qG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi0qG .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMi0qG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMi0qG .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMi0qG .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMi0qG .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMi0qG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMi0qG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMi0qG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi0qG .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMi0qG .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-uO9WTMi0qG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMi0qG .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMi0qG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMi0qG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMi0qG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMi0qG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMi0qG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMi0qG .modal-lg,
  .cid-uO9WTMi0qG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMi0qG .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMi0qG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMi0qG .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-uO9WTMi0qG .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMi0qG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMi0qG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMi0qG .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-uO9WTMi0qG .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMi0qG .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmfqWYZtx .dropdown-menu {
  padding: 12px 0;
}
.cid-uAmfqWYZtx .dropdown-item:hover,
.cid-uAmfqWYZtx .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAmfqWYZtx .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAmfqWYZtx .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAmfqWYZtx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAmfqWYZtx .nav-link {
  position: relative;
}
.cid-uAmfqWYZtx .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAmfqWYZtx .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAmfqWYZtx .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAmfqWYZtx .dropdown-menu,
.cid-uAmfqWYZtx .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAmfqWYZtx .nav-item:focus,
.cid-uAmfqWYZtx .nav-link:focus {
  outline: none;
}
.cid-uAmfqWYZtx .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAmfqWYZtx .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAmfqWYZtx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAmfqWYZtx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAmfqWYZtx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAmfqWYZtx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAmfqWYZtx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAmfqWYZtx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAmfqWYZtx .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAmfqWYZtx .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAmfqWYZtx .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAmfqWYZtx .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAmfqWYZtx .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAmfqWYZtx .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAmfqWYZtx .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAmfqWYZtx .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAmfqWYZtx .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAmfqWYZtx .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAmfqWYZtx .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAmfqWYZtx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAmfqWYZtx .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAmfqWYZtx .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAmfqWYZtx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAmfqWYZtx .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAmfqWYZtx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAmfqWYZtx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAmfqWYZtx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAmfqWYZtx .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: 55%;
}
.cid-uAmfqWYZtx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAmfqWYZtx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAmfqWYZtx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAmfqWYZtx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAmfqWYZtx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAmfqWYZtx .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAmfqWYZtx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAmfqWYZtx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAmfqWYZtx .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: 41%;
  }
  .cid-uAmfqWYZtx .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAmfqWYZtx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAmfqWYZtx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAmfqWYZtx .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAmfqWYZtx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAmfqWYZtx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAmfqWYZtx .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAmfqWYZtx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAmfqWYZtx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAmfqWYZtx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAmfqWYZtx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAmfqWYZtx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAmfqWYZtx .dropdown-item.active,
.cid-uAmfqWYZtx .dropdown-item:active {
  background-color: transparent;
}
.cid-uAmfqWYZtx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAmfqWYZtx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAmfqWYZtx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAmfqWYZtx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAmfqWYZtx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAmfqWYZtx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAmfqWYZtx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAmfqWYZtx .navbar-buttons {
  text-align: center;
}
.cid-uAmfqWYZtx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAmfqWYZtx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAmfqWYZtx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAmfqWYZtx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAmfqWYZtx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAmfqWYZtx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAmfqWYZtx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAmfqWYZtx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAmfqWYZtx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAmfqWYZtx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAmfqWYZtx .navbar-dropdown {
  position: fixed;
}
.cid-uAmfqWYZtx a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAmfqWYZtx .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAmfqWYZtx .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAmfqWYZtx .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAmfqWYZtx .navbar {
    height: 77px;
  }
  .cid-uAmfqWYZtx .navbar.opened {
    height: auto;
  }
  .cid-uAmfqWYZtx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAmfqXBivA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAmfqXBivA .container-fluid {
  padding: 0 3rem;
}
.cid-uAmfqXBivA .media-container-column {
  padding: 0 2rem;
}
.cid-uAmfqXBivA .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAmfqXBivA .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAmfqXVYWZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAmfqXVYWZ .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAmfqXVYWZ img {
    width: 90%;
  }
}
.cid-uAmfqXVYWZ .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAmfqXVYWZ .items {
  margin-bottom: 0;
}
.cid-uAmfqXVYWZ .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAmfqXVYWZ .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAmfqXVYWZ .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAmfqXVYWZ .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAmfqXVYWZ .social-list {
    justify-content: center;
  }
}
.cid-uAmfqXVYWZ .card-title {
  text-align: left;
  color: #e6eaf1;
}
.cid-uAo2MVb7kZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAo2MVb7kZ .mbr-text {
  color: #ffffff;
}
.cid-uAo2MVb7kZ .mbr-section-subtitle {
  color: #b469fb;
  text-align: center;
}
.cid-uAo2MVb7kZ .mbr-section-title {
  color: #ffffff;
}
.cid-uAmfqZxgUP {
  padding-top: 9rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uAmfqZxgUP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAmfqZxgUP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAmfqZxgUP .container {
    padding: 0 16px;
  }
}
.cid-uAmfqZxgUP .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uAmfqZxgUP .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAmfqZxgUP .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uAmfqZxgUP .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uAmfqZxgUP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAmfqZxgUP .mbr-text {
  color: #ffffff;
}
.cid-uAmfqZxgUP .mbr-text,
.cid-uAmfqZxgUP .mbr-section-btn {
  text-align: center;
}
.cid-uAmfqZxgUP .mbr-section-title,
.cid-uAmfqZxgUP .title-wrap {
  color: #410078;
}
.cid-uAmfqZaxy7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAmfqZaxy7 .container-fluid {
  padding: 0 3rem;
}
.cid-uAmfqZaxy7 .media-container-column {
  padding: 0 2rem;
}
.cid-uAmfqZaxy7 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAmfqZaxy7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAmfqZW0Ln.popup-builder {
  background-color: #ffffff;
}
.cid-uAmfqZW0Ln.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmfqZW0Ln.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmfqZW0Ln .modal-content,
.cid-uAmfqZW0Ln .modal-dialog {
  height: auto;
}
.cid-uAmfqZW0Ln .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmfqZW0Ln .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmfqZW0Ln .form-wrapper .mbr-form .form-group,
  .cid-uAmfqZW0Ln .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmfqZW0Ln .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmfqZW0Ln .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-uAmfqZW0Ln .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAmfqZW0Ln .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmfqZW0Ln .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmfqZW0Ln .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmfqZW0Ln .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmfqZW0Ln .modal-open {
  overflow: hidden;
}
.cid-uAmfqZW0Ln .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmfqZW0Ln .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmfqZW0Ln .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmfqZW0Ln .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-uAmfqZW0Ln .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmfqZW0Ln .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmfqZW0Ln .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmfqZW0Ln .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmfqZW0Ln .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmfqZW0Ln .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmfqZW0Ln .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmfqZW0Ln .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmfqZW0Ln .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-uAmfqZW0Ln .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmfqZW0Ln .modal-header {
    padding: 1rem;
  }
}
.cid-uAmfqZW0Ln .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmfqZW0Ln .modal-header .close svg {
  fill: #59307c;
}
.cid-uAmfqZW0Ln .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmfqZW0Ln .modal-header .close:focus {
  outline: none;
}
.cid-uAmfqZW0Ln .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAmfqZW0Ln .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmfqZW0Ln .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmfqZW0Ln .modal-body {
    padding: 1rem;
  }
}
.cid-uAmfqZW0Ln .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-uAmfqZW0Ln .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmfqZW0Ln .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmfqZW0Ln .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmfqZW0Ln .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmfqZW0Ln .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmfqZW0Ln .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmfqZW0Ln .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmfqZW0Ln .modal-lg,
  .cid-uAmfqZW0Ln .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmfqZW0Ln .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmfqZW0Ln .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmfqZW0Ln .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-uAmfqZW0Ln .form-group {
  margin-bottom: 1rem;
}
.cid-uAmfqZW0Ln .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmfqZW0Ln .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmfqZW0Ln .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-uAmfqZW0Ln .mbr-section-btn {
  margin: 0;
}
.cid-uAmfqZW0Ln .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmfr0tBQI.popup-builder {
  background-color: #ffffff;
}
.cid-uAmfr0tBQI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmfr0tBQI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmfr0tBQI .modal-content,
.cid-uAmfr0tBQI .modal-dialog {
  height: auto;
}
.cid-uAmfr0tBQI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmfr0tBQI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmfr0tBQI .form-wrapper .mbr-form .form-group,
  .cid-uAmfr0tBQI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmfr0tBQI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmfr0tBQI .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-uAmfr0tBQI .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAmfr0tBQI .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmfr0tBQI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmfr0tBQI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmfr0tBQI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmfr0tBQI .modal-open {
  overflow: hidden;
}
.cid-uAmfr0tBQI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmfr0tBQI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmfr0tBQI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmfr0tBQI .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-uAmfr0tBQI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmfr0tBQI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmfr0tBQI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmfr0tBQI .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmfr0tBQI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmfr0tBQI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmfr0tBQI .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmfr0tBQI .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmfr0tBQI .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-uAmfr0tBQI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmfr0tBQI .modal-header {
    padding: 1rem;
  }
}
.cid-uAmfr0tBQI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmfr0tBQI .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAmfr0tBQI .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmfr0tBQI .modal-header .close:focus {
  outline: none;
}
.cid-uAmfr0tBQI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAmfr0tBQI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmfr0tBQI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmfr0tBQI .modal-body {
    padding: 1rem;
  }
}
.cid-uAmfr0tBQI .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-uAmfr0tBQI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmfr0tBQI .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmfr0tBQI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmfr0tBQI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmfr0tBQI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmfr0tBQI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmfr0tBQI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmfr0tBQI .modal-lg,
  .cid-uAmfr0tBQI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmfr0tBQI .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmfr0tBQI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmfr0tBQI .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-uAmfr0tBQI .form-group {
  margin-bottom: 1rem;
}
.cid-uAmfr0tBQI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmfr0tBQI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmfr0tBQI .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-uAmfr0tBQI .mbr-section-btn {
  margin: 0;
}
.cid-uAmfr0tBQI .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmfr0UAiE.popup-builder {
  background-color: #ffffff;
}
.cid-uAmfr0UAiE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmfr0UAiE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmfr0UAiE .modal-content,
.cid-uAmfr0UAiE .modal-dialog {
  height: auto;
}
.cid-uAmfr0UAiE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmfr0UAiE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmfr0UAiE .form-wrapper .mbr-form .form-group,
  .cid-uAmfr0UAiE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmfr0UAiE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmfr0UAiE .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-uAmfr0UAiE .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAmfr0UAiE .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmfr0UAiE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmfr0UAiE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmfr0UAiE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmfr0UAiE .modal-open {
  overflow: hidden;
}
.cid-uAmfr0UAiE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmfr0UAiE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmfr0UAiE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmfr0UAiE .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-uAmfr0UAiE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmfr0UAiE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmfr0UAiE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmfr0UAiE .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmfr0UAiE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmfr0UAiE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmfr0UAiE .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmfr0UAiE .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmfr0UAiE .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-uAmfr0UAiE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmfr0UAiE .modal-header {
    padding: 1rem;
  }
}
.cid-uAmfr0UAiE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmfr0UAiE .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAmfr0UAiE .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmfr0UAiE .modal-header .close:focus {
  outline: none;
}
.cid-uAmfr0UAiE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAmfr0UAiE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmfr0UAiE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmfr0UAiE .modal-body {
    padding: 1rem;
  }
}
.cid-uAmfr0UAiE .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-uAmfr0UAiE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmfr0UAiE .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmfr0UAiE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmfr0UAiE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmfr0UAiE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmfr0UAiE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmfr0UAiE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmfr0UAiE .modal-lg,
  .cid-uAmfr0UAiE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmfr0UAiE .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmfr0UAiE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmfr0UAiE .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-uAmfr0UAiE .form-group {
  margin-bottom: 1rem;
}
.cid-uAmfr0UAiE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmfr0UAiE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmfr0UAiE .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-uAmfr0UAiE .mbr-section-btn {
  margin: 0;
}
.cid-uAmfr0UAiE .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMiaun.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMiaun.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMiaun.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMiaun .modal-content,
.cid-uO9WTMiaun .modal-dialog {
  height: auto;
}
.cid-uO9WTMiaun .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMiaun .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMiaun .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMiaun .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMiaun .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMiaun .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-uO9WTMiaun .mbr-text {
  text-align: center;
}
.cid-uO9WTMiaun .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMiaun .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMiaun .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMiaun .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMiaun .modal-open {
  overflow: hidden;
}
.cid-uO9WTMiaun .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMiaun .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMiaun .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMiaun .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-uO9WTMiaun .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMiaun .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMiaun .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMiaun .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMiaun .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMiaun .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMiaun .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMiaun .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMiaun .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-uO9WTMiaun .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMiaun .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMiaun .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMiaun .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMiaun .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMiaun .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMiaun .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMiaun .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMiaun .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMiaun .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMiaun .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-uO9WTMiaun .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMiaun .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMiaun .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMiaun .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMiaun .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMiaun .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMiaun .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMiaun .modal-lg,
  .cid-uO9WTMiaun .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMiaun .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMiaun .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMiaun .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-uO9WTMiaun .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMiaun .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMiaun .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMiaun .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-uO9WTMiaun .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMiaun .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWGVgpma .dropdown-menu {
  padding: 12px 0;
}
.cid-uAmWGVgpma .dropdown-item:hover,
.cid-uAmWGVgpma .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uAmWGVgpma .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAmWGVgpma .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uAmWGVgpma .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAmWGVgpma .nav-link {
  position: relative;
}
.cid-uAmWGVgpma .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uAmWGVgpma .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAmWGVgpma .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uAmWGVgpma .dropdown-menu,
.cid-uAmWGVgpma .navbar.opened {
  background: #1f0931 !important;
}
.cid-uAmWGVgpma .nav-item:focus,
.cid-uAmWGVgpma .nav-link:focus {
  outline: none;
}
.cid-uAmWGVgpma .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uAmWGVgpma .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uAmWGVgpma .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAmWGVgpma .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAmWGVgpma .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uAmWGVgpma .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uAmWGVgpma .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAmWGVgpma .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAmWGVgpma .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uAmWGVgpma .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uAmWGVgpma .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uAmWGVgpma .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uAmWGVgpma .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uAmWGVgpma .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uAmWGVgpma .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uAmWGVgpma .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uAmWGVgpma .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uAmWGVgpma .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uAmWGVgpma .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uAmWGVgpma .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAmWGVgpma .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uAmWGVgpma .navbar.collapsed.opened {
  position: fixed;
}
.cid-uAmWGVgpma .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uAmWGVgpma .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uAmWGVgpma .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAmWGVgpma .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAmWGVgpma .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAmWGVgpma .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: 55%;
}
.cid-uAmWGVgpma .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAmWGVgpma .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAmWGVgpma .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAmWGVgpma .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAmWGVgpma .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAmWGVgpma .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uAmWGVgpma .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAmWGVgpma .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAmWGVgpma .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: 41%;
  }
  .cid-uAmWGVgpma .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uAmWGVgpma .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAmWGVgpma .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAmWGVgpma .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAmWGVgpma .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uAmWGVgpma .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAmWGVgpma .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uAmWGVgpma .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAmWGVgpma .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAmWGVgpma .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAmWGVgpma .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAmWGVgpma .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAmWGVgpma .dropdown-item.active,
.cid-uAmWGVgpma .dropdown-item:active {
  background-color: transparent;
}
.cid-uAmWGVgpma .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAmWGVgpma .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAmWGVgpma .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAmWGVgpma .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uAmWGVgpma .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAmWGVgpma .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAmWGVgpma ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAmWGVgpma .navbar-buttons {
  text-align: center;
}
.cid-uAmWGVgpma button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAmWGVgpma button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uAmWGVgpma button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAmWGVgpma button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAmWGVgpma button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAmWGVgpma button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAmWGVgpma nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAmWGVgpma nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAmWGVgpma nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAmWGVgpma nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAmWGVgpma .navbar-dropdown {
  position: fixed;
}
.cid-uAmWGVgpma a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAmWGVgpma .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uAmWGVgpma .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uAmWGVgpma .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAmWGVgpma .navbar {
    height: 77px;
  }
  .cid-uAmWGVgpma .navbar.opened {
    height: auto;
  }
  .cid-uAmWGVgpma .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAmWGVVciR {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAmWGVVciR .container-fluid {
  padding: 0 3rem;
}
.cid-uAmWGVVciR .media-container-column {
  padding: 0 2rem;
}
.cid-uAmWGVVciR .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAmWGVVciR .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAneTRT4B2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uAneTRT4B2 .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAneTRT4B2 img {
    width: 90%;
  }
}
.cid-uAneTRT4B2 .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAneTRT4B2 .items {
  margin-bottom: 0;
}
.cid-uAneTRT4B2 .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAneTRT4B2 .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAneTRT4B2 .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAneTRT4B2 .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAneTRT4B2 .social-list {
    justify-content: center;
  }
}
.cid-uAneTRT4B2 .card-title {
  text-align: left;
  color: #cecf90;
}
.cid-uAmWGYOdgk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAmWGYOdgk .container-fluid {
  padding: 0 3rem;
}
.cid-uAmWGYOdgk .media-container-column {
  padding: 0 2rem;
}
.cid-uAmWGYOdgk .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAmWGYOdgk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAmWGZ5EJ2.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWGZ5EJ2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWGZ5EJ2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWGZ5EJ2 .modal-content,
.cid-uAmWGZ5EJ2 .modal-dialog {
  height: auto;
}
.cid-uAmWGZ5EJ2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWGZ5EJ2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWGZ5EJ2 .form-wrapper .mbr-form .form-group,
  .cid-uAmWGZ5EJ2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWGZ5EJ2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWGZ5EJ2 .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-uAmWGZ5EJ2 .mbr-text {
  text-align: center;
}
.cid-uAmWGZ5EJ2 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWGZ5EJ2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWGZ5EJ2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWGZ5EJ2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWGZ5EJ2 .modal-open {
  overflow: hidden;
}
.cid-uAmWGZ5EJ2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWGZ5EJ2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWGZ5EJ2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWGZ5EJ2 .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-uAmWGZ5EJ2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWGZ5EJ2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWGZ5EJ2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWGZ5EJ2 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWGZ5EJ2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWGZ5EJ2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWGZ5EJ2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWGZ5EJ2 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWGZ5EJ2 .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-uAmWGZ5EJ2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWGZ5EJ2 .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWGZ5EJ2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWGZ5EJ2 .modal-header .close svg {
  fill: #611750;
}
.cid-uAmWGZ5EJ2 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWGZ5EJ2 .modal-header .close:focus {
  outline: none;
}
.cid-uAmWGZ5EJ2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAmWGZ5EJ2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWGZ5EJ2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWGZ5EJ2 .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWGZ5EJ2 .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-uAmWGZ5EJ2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWGZ5EJ2 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWGZ5EJ2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWGZ5EJ2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWGZ5EJ2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWGZ5EJ2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWGZ5EJ2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWGZ5EJ2 .modal-lg,
  .cid-uAmWGZ5EJ2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWGZ5EJ2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWGZ5EJ2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWGZ5EJ2 .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-uAmWGZ5EJ2 .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWGZ5EJ2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWGZ5EJ2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWGZ5EJ2 .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-uAmWGZ5EJ2 .mbr-section-btn {
  margin: 0;
}
.cid-uAmWGZ5EJ2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWGZvYcy.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWGZvYcy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWGZvYcy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWGZvYcy .modal-content,
.cid-uAmWGZvYcy .modal-dialog {
  height: auto;
}
.cid-uAmWGZvYcy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWGZvYcy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWGZvYcy .form-wrapper .mbr-form .form-group,
  .cid-uAmWGZvYcy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWGZvYcy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWGZvYcy .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-uAmWGZvYcy .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAmWGZvYcy .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWGZvYcy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWGZvYcy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWGZvYcy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWGZvYcy .modal-open {
  overflow: hidden;
}
.cid-uAmWGZvYcy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWGZvYcy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWGZvYcy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWGZvYcy .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-uAmWGZvYcy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWGZvYcy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWGZvYcy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWGZvYcy .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWGZvYcy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWGZvYcy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWGZvYcy .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWGZvYcy .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWGZvYcy .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-uAmWGZvYcy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWGZvYcy .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWGZvYcy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWGZvYcy .modal-header .close svg {
  fill: #260641;
}
.cid-uAmWGZvYcy .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWGZvYcy .modal-header .close:focus {
  outline: none;
}
.cid-uAmWGZvYcy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAmWGZvYcy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWGZvYcy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWGZvYcy .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWGZvYcy .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-uAmWGZvYcy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWGZvYcy .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWGZvYcy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWGZvYcy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWGZvYcy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWGZvYcy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWGZvYcy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWGZvYcy .modal-lg,
  .cid-uAmWGZvYcy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWGZvYcy .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWGZvYcy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWGZvYcy .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-uAmWGZvYcy .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWGZvYcy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWGZvYcy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWGZvYcy .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-uAmWGZvYcy .mbr-section-btn {
  margin: 0;
}
.cid-uAmWGZvYcy .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWGZY5Lb.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWGZY5Lb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWGZY5Lb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWGZY5Lb .modal-content,
.cid-uAmWGZY5Lb .modal-dialog {
  height: auto;
}
.cid-uAmWGZY5Lb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWGZY5Lb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWGZY5Lb .form-wrapper .mbr-form .form-group,
  .cid-uAmWGZY5Lb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWGZY5Lb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWGZY5Lb .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-uAmWGZY5Lb .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAmWGZY5Lb .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWGZY5Lb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWGZY5Lb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWGZY5Lb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWGZY5Lb .modal-open {
  overflow: hidden;
}
.cid-uAmWGZY5Lb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWGZY5Lb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWGZY5Lb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWGZY5Lb .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-uAmWGZY5Lb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWGZY5Lb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWGZY5Lb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWGZY5Lb .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWGZY5Lb .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWGZY5Lb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWGZY5Lb .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWGZY5Lb .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWGZY5Lb .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-uAmWGZY5Lb .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWGZY5Lb .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWGZY5Lb .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWGZY5Lb .modal-header .close svg {
  fill: #260641;
}
.cid-uAmWGZY5Lb .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWGZY5Lb .modal-header .close:focus {
  outline: none;
}
.cid-uAmWGZY5Lb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAmWGZY5Lb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWGZY5Lb .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWGZY5Lb .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWGZY5Lb .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-uAmWGZY5Lb .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWGZY5Lb .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWGZY5Lb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWGZY5Lb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWGZY5Lb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWGZY5Lb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWGZY5Lb .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWGZY5Lb .modal-lg,
  .cid-uAmWGZY5Lb .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWGZY5Lb .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWGZY5Lb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWGZY5Lb .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-uAmWGZY5Lb .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWGZY5Lb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWGZY5Lb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWGZY5Lb .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-uAmWGZY5Lb .mbr-section-btn {
  margin: 0;
}
.cid-uAmWGZY5Lb .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWH0o944.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWH0o944.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWH0o944.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWH0o944 .modal-content,
.cid-uAmWH0o944 .modal-dialog {
  height: auto;
}
.cid-uAmWH0o944 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWH0o944 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWH0o944 .form-wrapper .mbr-form .form-group,
  .cid-uAmWH0o944 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWH0o944 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWH0o944 .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-uAmWH0o944 .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAmWH0o944 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWH0o944 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWH0o944 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWH0o944 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWH0o944 .modal-open {
  overflow: hidden;
}
.cid-uAmWH0o944 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWH0o944 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWH0o944 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWH0o944 .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-uAmWH0o944 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWH0o944 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWH0o944 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWH0o944 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWH0o944 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWH0o944 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWH0o944 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWH0o944 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWH0o944 .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-uAmWH0o944 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH0o944 .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWH0o944 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWH0o944 .modal-header .close svg {
  fill: #260641;
}
.cid-uAmWH0o944 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWH0o944 .modal-header .close:focus {
  outline: none;
}
.cid-uAmWH0o944 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAmWH0o944 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWH0o944 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH0o944 .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWH0o944 .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-uAmWH0o944 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH0o944 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWH0o944 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWH0o944 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWH0o944 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWH0o944 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWH0o944 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWH0o944 .modal-lg,
  .cid-uAmWH0o944 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWH0o944 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWH0o944 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWH0o944 .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-uAmWH0o944 .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWH0o944 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWH0o944 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWH0o944 .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-uAmWH0o944 .mbr-section-btn {
  margin: 0;
}
.cid-uAmWH0o944 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWH0QYXG.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWH0QYXG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWH0QYXG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWH0QYXG .modal-content,
.cid-uAmWH0QYXG .modal-dialog {
  height: auto;
}
.cid-uAmWH0QYXG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWH0QYXG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWH0QYXG .form-wrapper .mbr-form .form-group,
  .cid-uAmWH0QYXG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWH0QYXG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWH0QYXG .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-uAmWH0QYXG .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAmWH0QYXG .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWH0QYXG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWH0QYXG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWH0QYXG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWH0QYXG .modal-open {
  overflow: hidden;
}
.cid-uAmWH0QYXG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWH0QYXG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWH0QYXG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWH0QYXG .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-uAmWH0QYXG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWH0QYXG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWH0QYXG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWH0QYXG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWH0QYXG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWH0QYXG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWH0QYXG .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWH0QYXG .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWH0QYXG .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-uAmWH0QYXG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH0QYXG .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWH0QYXG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWH0QYXG .modal-header .close svg {
  fill: #260641;
}
.cid-uAmWH0QYXG .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWH0QYXG .modal-header .close:focus {
  outline: none;
}
.cid-uAmWH0QYXG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAmWH0QYXG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWH0QYXG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH0QYXG .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWH0QYXG .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-uAmWH0QYXG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH0QYXG .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWH0QYXG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWH0QYXG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWH0QYXG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWH0QYXG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWH0QYXG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWH0QYXG .modal-lg,
  .cid-uAmWH0QYXG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWH0QYXG .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWH0QYXG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWH0QYXG .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-uAmWH0QYXG .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWH0QYXG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWH0QYXG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWH0QYXG .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-uAmWH0QYXG .mbr-section-btn {
  margin: 0;
}
.cid-uAmWH0QYXG .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWH1gWFG.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWH1gWFG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWH1gWFG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWH1gWFG .modal-content,
.cid-uAmWH1gWFG .modal-dialog {
  height: auto;
}
.cid-uAmWH1gWFG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWH1gWFG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWH1gWFG .form-wrapper .mbr-form .form-group,
  .cid-uAmWH1gWFG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWH1gWFG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWH1gWFG .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-uAmWH1gWFG .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uAmWH1gWFG .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWH1gWFG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWH1gWFG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWH1gWFG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWH1gWFG .modal-open {
  overflow: hidden;
}
.cid-uAmWH1gWFG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWH1gWFG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWH1gWFG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWH1gWFG .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-uAmWH1gWFG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWH1gWFG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWH1gWFG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWH1gWFG .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWH1gWFG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWH1gWFG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWH1gWFG .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWH1gWFG .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWH1gWFG .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-uAmWH1gWFG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH1gWFG .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWH1gWFG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWH1gWFG .modal-header .close svg {
  fill: #5849aa;
}
.cid-uAmWH1gWFG .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWH1gWFG .modal-header .close:focus {
  outline: none;
}
.cid-uAmWH1gWFG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uAmWH1gWFG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWH1gWFG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH1gWFG .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWH1gWFG .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-uAmWH1gWFG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH1gWFG .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWH1gWFG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWH1gWFG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWH1gWFG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWH1gWFG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWH1gWFG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWH1gWFG .modal-lg,
  .cid-uAmWH1gWFG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWH1gWFG .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWH1gWFG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWH1gWFG .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-uAmWH1gWFG .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWH1gWFG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWH1gWFG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWH1gWFG .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-uAmWH1gWFG .mbr-section-btn {
  margin: 0;
}
.cid-uAmWH1gWFG .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWH1JVTB.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWH1JVTB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWH1JVTB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWH1JVTB .modal-content,
.cid-uAmWH1JVTB .modal-dialog {
  height: auto;
}
.cid-uAmWH1JVTB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWH1JVTB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWH1JVTB .form-wrapper .mbr-form .form-group,
  .cid-uAmWH1JVTB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWH1JVTB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWH1JVTB .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-uAmWH1JVTB .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uAmWH1JVTB .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWH1JVTB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWH1JVTB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWH1JVTB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWH1JVTB .modal-open {
  overflow: hidden;
}
.cid-uAmWH1JVTB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWH1JVTB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWH1JVTB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWH1JVTB .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-uAmWH1JVTB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWH1JVTB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWH1JVTB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWH1JVTB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWH1JVTB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWH1JVTB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWH1JVTB .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWH1JVTB .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWH1JVTB .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-uAmWH1JVTB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH1JVTB .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWH1JVTB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWH1JVTB .modal-header .close svg {
  fill: #611750;
}
.cid-uAmWH1JVTB .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWH1JVTB .modal-header .close:focus {
  outline: none;
}
.cid-uAmWH1JVTB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAmWH1JVTB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWH1JVTB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH1JVTB .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWH1JVTB .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-uAmWH1JVTB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH1JVTB .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWH1JVTB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWH1JVTB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWH1JVTB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWH1JVTB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWH1JVTB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWH1JVTB .modal-lg,
  .cid-uAmWH1JVTB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWH1JVTB .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWH1JVTB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWH1JVTB .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-uAmWH1JVTB .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWH1JVTB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWH1JVTB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWH1JVTB .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-uAmWH1JVTB .mbr-section-btn {
  margin: 0;
}
.cid-uAmWH1JVTB .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWH2fBkz.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWH2fBkz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWH2fBkz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWH2fBkz .modal-content,
.cid-uAmWH2fBkz .modal-dialog {
  height: auto;
}
.cid-uAmWH2fBkz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWH2fBkz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWH2fBkz .form-wrapper .mbr-form .form-group,
  .cid-uAmWH2fBkz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWH2fBkz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWH2fBkz .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-uAmWH2fBkz .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uAmWH2fBkz .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWH2fBkz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWH2fBkz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWH2fBkz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWH2fBkz .modal-open {
  overflow: hidden;
}
.cid-uAmWH2fBkz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWH2fBkz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWH2fBkz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWH2fBkz .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-uAmWH2fBkz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWH2fBkz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWH2fBkz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWH2fBkz .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWH2fBkz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWH2fBkz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWH2fBkz .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWH2fBkz .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWH2fBkz .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-uAmWH2fBkz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH2fBkz .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWH2fBkz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWH2fBkz .modal-header .close svg {
  fill: #59307c;
}
.cid-uAmWH2fBkz .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWH2fBkz .modal-header .close:focus {
  outline: none;
}
.cid-uAmWH2fBkz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uAmWH2fBkz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWH2fBkz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH2fBkz .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWH2fBkz .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-uAmWH2fBkz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH2fBkz .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWH2fBkz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWH2fBkz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWH2fBkz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWH2fBkz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWH2fBkz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWH2fBkz .modal-lg,
  .cid-uAmWH2fBkz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWH2fBkz .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWH2fBkz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWH2fBkz .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-uAmWH2fBkz .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWH2fBkz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWH2fBkz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWH2fBkz .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-uAmWH2fBkz .mbr-section-btn {
  margin: 0;
}
.cid-uAmWH2fBkz .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWH2Hnqv.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWH2Hnqv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWH2Hnqv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWH2Hnqv .modal-content,
.cid-uAmWH2Hnqv .modal-dialog {
  height: auto;
}
.cid-uAmWH2Hnqv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWH2Hnqv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWH2Hnqv .form-wrapper .mbr-form .form-group,
  .cid-uAmWH2Hnqv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWH2Hnqv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWH2Hnqv .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-uAmWH2Hnqv .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAmWH2Hnqv .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWH2Hnqv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWH2Hnqv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWH2Hnqv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWH2Hnqv .modal-open {
  overflow: hidden;
}
.cid-uAmWH2Hnqv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWH2Hnqv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWH2Hnqv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWH2Hnqv .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-uAmWH2Hnqv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWH2Hnqv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWH2Hnqv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWH2Hnqv .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWH2Hnqv .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWH2Hnqv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWH2Hnqv .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWH2Hnqv .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWH2Hnqv .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-uAmWH2Hnqv .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH2Hnqv .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWH2Hnqv .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWH2Hnqv .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAmWH2Hnqv .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWH2Hnqv .modal-header .close:focus {
  outline: none;
}
.cid-uAmWH2Hnqv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAmWH2Hnqv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWH2Hnqv .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH2Hnqv .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWH2Hnqv .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-uAmWH2Hnqv .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH2Hnqv .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWH2Hnqv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWH2Hnqv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWH2Hnqv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWH2Hnqv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWH2Hnqv .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWH2Hnqv .modal-lg,
  .cid-uAmWH2Hnqv .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWH2Hnqv .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWH2Hnqv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWH2Hnqv .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-uAmWH2Hnqv .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWH2Hnqv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWH2Hnqv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWH2Hnqv .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-uAmWH2Hnqv .mbr-section-btn {
  margin: 0;
}
.cid-uAmWH2Hnqv .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAmWH3auI7.popup-builder {
  background-color: #ffffff;
}
.cid-uAmWH3auI7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAmWH3auI7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAmWH3auI7 .modal-content,
.cid-uAmWH3auI7 .modal-dialog {
  height: auto;
}
.cid-uAmWH3auI7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAmWH3auI7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAmWH3auI7 .form-wrapper .mbr-form .form-group,
  .cid-uAmWH3auI7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAmWH3auI7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAmWH3auI7 .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-uAmWH3auI7 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAmWH3auI7 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAmWH3auI7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAmWH3auI7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAmWH3auI7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAmWH3auI7 .modal-open {
  overflow: hidden;
}
.cid-uAmWH3auI7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAmWH3auI7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAmWH3auI7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAmWH3auI7 .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-uAmWH3auI7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAmWH3auI7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAmWH3auI7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAmWH3auI7 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAmWH3auI7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAmWH3auI7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAmWH3auI7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAmWH3auI7 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAmWH3auI7 .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-uAmWH3auI7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH3auI7 .modal-header {
    padding: 1rem;
  }
}
.cid-uAmWH3auI7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAmWH3auI7 .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAmWH3auI7 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAmWH3auI7 .modal-header .close:focus {
  outline: none;
}
.cid-uAmWH3auI7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAmWH3auI7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAmWH3auI7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH3auI7 .modal-body {
    padding: 1rem;
  }
}
.cid-uAmWH3auI7 .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-uAmWH3auI7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmWH3auI7 .modal-footer {
    padding: 1rem;
  }
}
.cid-uAmWH3auI7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAmWH3auI7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAmWH3auI7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAmWH3auI7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAmWH3auI7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAmWH3auI7 .modal-lg,
  .cid-uAmWH3auI7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAmWH3auI7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAmWH3auI7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAmWH3auI7 .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-uAmWH3auI7 .form-group {
  margin-bottom: 1rem;
}
.cid-uAmWH3auI7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAmWH3auI7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAmWH3auI7 .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-uAmWH3auI7 .mbr-section-btn {
  margin: 0;
}
.cid-uAmWH3auI7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAnmQ862ER.popup-builder {
  background-color: #ffffff;
}
.cid-uAnmQ862ER.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAnmQ862ER.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAnmQ862ER .modal-content,
.cid-uAnmQ862ER .modal-dialog {
  height: auto;
}
.cid-uAnmQ862ER .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAnmQ862ER .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAnmQ862ER .form-wrapper .mbr-form .form-group,
  .cid-uAnmQ862ER .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAnmQ862ER .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAnmQ862ER .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-uAnmQ862ER .mbr-text {
  text-align: center;
}
.cid-uAnmQ862ER .pt-0 {
  padding-top: 0 !important;
}
.cid-uAnmQ862ER .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAnmQ862ER .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAnmQ862ER .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAnmQ862ER .modal-open {
  overflow: hidden;
}
.cid-uAnmQ862ER .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAnmQ862ER .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAnmQ862ER .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAnmQ862ER .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-uAnmQ862ER .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAnmQ862ER .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAnmQ862ER .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAnmQ862ER .modal-content {
  background: #ecedee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAnmQ862ER .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAnmQ862ER .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAnmQ862ER .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAnmQ862ER .modal-backdrop.show {
  opacity: .5;
}
.cid-uAnmQ862ER .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-uAnmQ862ER .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnmQ862ER .modal-header {
    padding: 1rem;
  }
}
.cid-uAnmQ862ER .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAnmQ862ER .modal-header .close svg {
  fill: #1f0931;
}
.cid-uAnmQ862ER .modal-header .close:hover {
  opacity: 1;
}
.cid-uAnmQ862ER .modal-header .close:focus {
  outline: none;
}
.cid-uAnmQ862ER .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #1f0931;
}
.cid-uAnmQ862ER .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAnmQ862ER .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnmQ862ER .modal-body {
    padding: 1rem;
  }
}
.cid-uAnmQ862ER .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-uAnmQ862ER .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnmQ862ER .modal-footer {
    padding: 1rem;
  }
}
.cid-uAnmQ862ER .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAnmQ862ER .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAnmQ862ER .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAnmQ862ER .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAnmQ862ER .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAnmQ862ER .modal-lg,
  .cid-uAnmQ862ER .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAnmQ862ER .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAnmQ862ER .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAnmQ862ER .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-uAnmQ862ER .form-group {
  margin-bottom: 1rem;
}
.cid-uAnmQ862ER .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAnmQ862ER .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAnmQ862ER .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-uAnmQ862ER .mbr-section-btn {
  margin: 0;
}
.cid-uAnmQ862ER .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMjFUs.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMjFUs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMjFUs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMjFUs .modal-content,
.cid-uO9WTMjFUs .modal-dialog {
  height: auto;
}
.cid-uO9WTMjFUs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMjFUs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMjFUs .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMjFUs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMjFUs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMjFUs .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-uO9WTMjFUs .mbr-text {
  text-align: center;
}
.cid-uO9WTMjFUs .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMjFUs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMjFUs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMjFUs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMjFUs .modal-open {
  overflow: hidden;
}
.cid-uO9WTMjFUs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMjFUs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMjFUs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMjFUs .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-uO9WTMjFUs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMjFUs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMjFUs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMjFUs .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMjFUs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMjFUs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMjFUs .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMjFUs .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMjFUs .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-uO9WTMjFUs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjFUs .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMjFUs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMjFUs .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMjFUs .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMjFUs .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMjFUs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMjFUs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMjFUs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjFUs .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMjFUs .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-uO9WTMjFUs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjFUs .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMjFUs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMjFUs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMjFUs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMjFUs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMjFUs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMjFUs .modal-lg,
  .cid-uO9WTMjFUs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMjFUs .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMjFUs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMjFUs .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-uO9WTMjFUs .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMjFUs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMjFUs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMjFUs .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-uO9WTMjFUs .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMjFUs .mbr-section-btn .btn {
  margin: 0;
}
.cid-sDA5o5arl7 .dropdown-menu {
  padding: 12px 0;
}
.cid-sDA5o5arl7 .dropdown-item:hover,
.cid-sDA5o5arl7 .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-sDA5o5arl7 .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sDA5o5arl7 .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-sDA5o5arl7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDA5o5arl7 .nav-link {
  position: relative;
}
.cid-sDA5o5arl7 .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-sDA5o5arl7 .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDA5o5arl7 .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-sDA5o5arl7 .dropdown-menu,
.cid-sDA5o5arl7 .navbar.opened {
  background: #1f0931 !important;
}
.cid-sDA5o5arl7 .nav-item:focus,
.cid-sDA5o5arl7 .nav-link:focus {
  outline: none;
}
.cid-sDA5o5arl7 .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-sDA5o5arl7 .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-sDA5o5arl7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sDA5o5arl7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDA5o5arl7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sDA5o5arl7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sDA5o5arl7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDA5o5arl7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDA5o5arl7 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-sDA5o5arl7 .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-sDA5o5arl7 .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-sDA5o5arl7 .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-sDA5o5arl7 .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-sDA5o5arl7 .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-sDA5o5arl7 .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-sDA5o5arl7 .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-sDA5o5arl7 .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-sDA5o5arl7 .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-sDA5o5arl7 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sDA5o5arl7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDA5o5arl7 .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-sDA5o5arl7 .navbar.collapsed.opened {
  position: fixed;
}
.cid-sDA5o5arl7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-sDA5o5arl7 .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-sDA5o5arl7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sDA5o5arl7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDA5o5arl7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDA5o5arl7 .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: 55%;
}
.cid-sDA5o5arl7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDA5o5arl7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDA5o5arl7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDA5o5arl7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDA5o5arl7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDA5o5arl7 .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-sDA5o5arl7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDA5o5arl7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDA5o5arl7 .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: 41%;
  }
  .cid-sDA5o5arl7 .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-sDA5o5arl7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sDA5o5arl7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDA5o5arl7 .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDA5o5arl7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-sDA5o5arl7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDA5o5arl7 .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-sDA5o5arl7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sDA5o5arl7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sDA5o5arl7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sDA5o5arl7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDA5o5arl7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDA5o5arl7 .dropdown-item.active,
.cid-sDA5o5arl7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sDA5o5arl7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDA5o5arl7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDA5o5arl7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDA5o5arl7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-sDA5o5arl7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDA5o5arl7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDA5o5arl7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sDA5o5arl7 .navbar-buttons {
  text-align: center;
}
.cid-sDA5o5arl7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sDA5o5arl7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-sDA5o5arl7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDA5o5arl7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDA5o5arl7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDA5o5arl7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDA5o5arl7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDA5o5arl7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDA5o5arl7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDA5o5arl7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDA5o5arl7 .navbar-dropdown {
  position: fixed;
}
.cid-sDA5o5arl7 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sDA5o5arl7 .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sDA5o5arl7 .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-sDA5o5arl7 .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sDA5o5arl7 .navbar {
    height: 77px;
  }
  .cid-sDA5o5arl7 .navbar.opened {
    height: auto;
  }
  .cid-sDA5o5arl7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAhAvgd8Bv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1f0931;
}
.cid-uAhAvgd8Bv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAhAvgd8Bv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAhAvgd8Bv .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAhAvgd8Bv .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uAhAvgd8Bv .content-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uAhAvgd8Bv .content-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all .3s ease;
}
.cid-uAhAvgd8Bv .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAhAvgd8Bv .content-wrapper .list .item-wrap:hover,
.cid-uAhAvgd8Bv .content-wrapper .list .item-wrap:focus {
  color: #bcfe1e;
}
.cid-uAhAvgd8Bv .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #b469fb, #292739);
}
@media (max-width: 992px) {
  .cid-uAhAvgd8Bv .border-wrap {
    margin-top: 32px;
  }
}
.cid-uAhAvgd8Bv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAhAvgd8Bv .list {
  color: #bbbbbb;
  text-align: center;
}
.cid-uAhAvgd8Bv .list,
.cid-uAhAvgd8Bv .item-wrap {
  color: #b97ecd;
  text-align: center;
}
.cid-uNXoKToGl1 {
  position: relative;
  overflow: hidden;
}
.cid-uNXoKToGl1 svg {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  bottom: -1rem;
  left: 50%;
  transform: translate(-50%) scale(1.9, 1.6);
}
.cid-uNXoKToGl1 #e2_shape {
  fill: #1f0931 !important;
}
.cid-uNXoKToGl1 .main-text {
  color: #606060;
}
.cid-uNXoKToGl1 .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 25rem;
}
.cid-uNXoKToGl1 .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: brightness(37%);
}
.cid-uNXoKToGl1 .content-block {
  padding: 0.75rem 1rem;
  top: -50%;
  position: relative;
  z-index: 1;
  transform: translateY(50%);
}
.cid-uNXoKToGl1 .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 21px;
}
.cid-uNXoKToGl1 .btn.display-4 {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 16px 24px;
}
.cid-uNXoKToGl1 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNXoKToGl1 .carousel-item.active,
.cid-uNXoKToGl1 .carousel-item-next,
.cid-uNXoKToGl1 .carousel-item-prev {
  display: flex;
}
.cid-uNXoKToGl1 .carousel-indicators {
  margin: 20px auto 0;
  align-items: center;
  bottom: 50px;
}
.cid-uNXoKToGl1 .carousel-indicators .active {
  transform: scale(1);
  border: 0;
  background-color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uNXoKToGl1 .carousel-indicators li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: opacity 0.5s;
  background-color: #cecf90;
  font-size: 2rem;
  border-width: 0px;
  transform: scale(0.6);
  opacity: 1;
}
.cid-uNXoKToGl1 .carousel-controls {
  display: none;
}
@media (max-width: 991px) {
  .cid-uNXoKToGl1 .carousel-controls {
    display: block;
  }
  .cid-uNXoKToGl1 .carousel-controls a {
    transition: opacity 0.5s;
    font-size: 2rem;
  }
  .cid-uNXoKToGl1 .carousel-controls a span {
    padding: 10px;
    border-radius: 50%;
    color: #ffffff;
    background: #444444;
    opacity: 0.9;
  }
  .cid-uNXoKToGl1 .carousel-controls a:hover span {
    opacity: 1;
  }
  .cid-uNXoKToGl1 .carousel-indicators {
    display: none;
  }
}
@media (max-width: 540px) {
  .cid-uNXoKToGl1 .text-element {
    padding: 1rem;
  }
  .cid-uNXoKToGl1 .carousel-controls {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNXoKToGl1 .image-element {
    min-width: 50%;
  }
  .cid-uNXoKToGl1 .media-container-row {
    width: 100%;
  }
}
.cid-uNXoKToGl1 .card-title {
  color: #e0e284;
}
.cid-uNXoKToGl1 .wrapper .content-block .mbr-section-subtitle {
  color: #e6eaf1;
}
.cid-u1nHswC59V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/20200131-201000-2000x972.jpg");
}
.cid-u1nHswC59V .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1nHswC59V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u1nHswC59V .container {
    padding: 0 15px;
  }
}
.cid-u1nHswC59V .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-u1nHswC59V .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u1nHswC59V .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-u1nHswC59V .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-u1nHswC59V .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-u1nHswC59V .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u1nHswC59V .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u1nHswC59V .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-u1nHswC59V .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-u1nHswC59V .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #373d52;
  box-shadow: 10px 10px 50px #4f5b5f;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-u1nHswC59V .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-u1nHswC59V .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-u1nHswC59V .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-u1nHswC59V .mbr-section-title {
  color: #ffffff;
}
.cid-u1nHswC59V .mbr-section-subtitle {
  color: #e6eaf1;
  text-align: center;
}
.cid-u1nHswC59V .mbr-text {
  color: #d2d2df;
  text-align: center;
}
.cid-u1nHswC59V .mbr-section-title,
.cid-u1nHswC59V .mbr-section-btn {
  text-align: center;
  color: #b97ecd;
}
.cid-u4FadjB4pZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-u4FadjB4pZ .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-u4FadjB4pZ img {
    width: 90%;
  }
}
.cid-u4FadjB4pZ .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-u4FadjB4pZ .items {
  margin-bottom: 0;
}
.cid-u4FadjB4pZ .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-u4FadjB4pZ .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-u4FadjB4pZ .soc-item:hover span {
  color: #38346b !important;
}
.cid-u4FadjB4pZ .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-u4FadjB4pZ .social-list {
    justify-content: center;
  }
}
.cid-u4FadjB4pZ .card-title {
  text-align: center;
  color: #cecf90;
}
.cid-uA5kmCfV4T {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #000000;
}
.cid-uA5kmCfV4T .carousel-item {
  padding: 0 10%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uA5kmCfV4T .carousel-item.active,
.cid-uA5kmCfV4T .carousel-item-next,
.cid-uA5kmCfV4T .carousel-item-prev {
  display: flex;
}
.cid-uA5kmCfV4T .img-box {
  position: relative;
  width: fit-content;
  margin: auto;
}
.cid-uA5kmCfV4T .carousel-controls .mbr-iconfont {
  font-family: Moririse2 !important;
  font-size: 1rem;
  font-weight: 900;
  transition: opacity .3s;
}
.cid-uA5kmCfV4T .carousel-controls a {
  transition: all .3s;
  border-radius: 50%;
  border: none;
  background-color: transparent;
}
.cid-uA5kmCfV4T .carousel-controls a span {
  color: #b97ecd !important;
  font-size: 35px !important;
}
.cid-uA5kmCfV4T .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-uA5kmCfV4T .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-uA5kmCfV4T .carousel-controls .carousel-control-next,
.cid-uA5kmCfV4T .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-uA5kmCfV4T .carousel-controls .carousel-control-next {
  bottom: auto;
  top: 44%;
}
.cid-uA5kmCfV4T .carousel-controls .carousel-control-prev {
  bottom: auto;
  top: 44%;
}
.cid-uA5kmCfV4T .author-box {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uA5kmCfV4T .face {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
  object-fit: cover;
}
.cid-uA5kmCfV4T .author {
  margin: auto 0;
}
.cid-uA5kmCfV4T .mbr-text {
  margin-bottom: 34px !important;
}
.cid-uA5kmCfV4T h3,
.cid-uA5kmCfV4T h4 {
  margin: 0;
  padding: 0;
}
.cid-uA5kmCfV4T .mbr-bottom {
  color: #e6eaf1;
}
.cid-uA5kmCfV4T .box {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px!important;
}
@media (max-width: 992px) {
  .cid-uA5kmCfV4T .carousel-controls a span {
    bottom: auto;
    top: 30%;
  }
}
@media (max-width: 767px) {
  .cid-uA5kmCfV4T .carousel-controls a span {
    bottom: auto;
    top: 20%;
  }
}
.cid-uA5kmCfV4T .carousel-indicators {
  bottom: -65px;
}
@media (max-width: 786px) {
  .cid-uA5kmCfV4T .carousel-indicators {
    bottom: -75px;
  }
}
.cid-uA5kmCfV4T .carousel-indicators li {
  margin-right: 31px;
  margin-left: 31px;
  opacity: 1;
  width: 6px;
  height: 6px;
  max-width: 6px;
  max-height: 6px;
  min-width: 6px;
  min-height: 6px;
  background: #cecf90;
  border: none;
  position: relative;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cid-uA5kmCfV4T .carousel-indicators li:hover {
  opacity: 1 !important;
}
.cid-uA5kmCfV4T .carousel-indicators li svg {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  z-index: 1;
  fill: none;
  color: #d4a4e4;
  stroke: none;
  overflow: visible;
}
.cid-uA5kmCfV4T .carousel-indicators li svg circle {
  stroke-dasharray: 110;
  stroke-dashoffset: 110;
  stroke: #d4a4e4;
  stroke-width: 1;
  transition: all 0.6s cubic-bezier(0.43, 0.41, 0.36, 0.9);
  transform: rotate(-145deg);
  transform-origin: center;
}
.cid-uA5kmCfV4T .carousel-indicators li.active {
  background: #d4a4e4;
}
.cid-uA5kmCfV4T .carousel-indicators li.active circle {
  stroke-dashoffset: 0;
  transform: rotate(55deg);
}
.cid-uA5kmCfV4T .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uA5kmCfV4T .mbr-text,
.cid-uA5kmCfV4T .mbr-section-btn {
  text-align: center;
  color: #e6eaf1;
}
.cid-uA5kmCfV4T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA5kmCfV4T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA5kmCfV4T H3 {
  color: #e6eaf1;
}
.cid-u21TWuCuQ7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-u21TWuCuQ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u21TWuCuQ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u21TWuCuQ7 .container {
    padding: 0 16px;
  }
}
.cid-u21TWuCuQ7 .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u21TWuCuQ7 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u21TWuCuQ7 .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-u21TWuCuQ7 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-u21TWuCuQ7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u21TWuCuQ7 .mbr-text {
  color: #ffffff;
}
.cid-u21TWuCuQ7 .mbr-text,
.cid-u21TWuCuQ7 .mbr-section-btn {
  text-align: center;
}
.cid-u21TWuCuQ7 .mbr-section-title,
.cid-u21TWuCuQ7 .title-wrap {
  color: #410078;
}
.cid-sDA2uGRfS7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sDA2uGRfS7 .container-fluid {
  padding: 0 3rem;
}
.cid-sDA2uGRfS7 .media-container-column {
  padding: 0 2rem;
}
.cid-sDA2uGRfS7 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #d4a4e4;
}
@media (max-width: 767px) {
  .cid-sDA2uGRfS7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNYf7pBwfK.popup-builder {
  background-color: #ffffff;
}
.cid-uNYf7pBwfK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNYf7pBwfK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNYf7pBwfK .modal-content,
.cid-uNYf7pBwfK .modal-dialog {
  height: auto;
}
.cid-uNYf7pBwfK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNYf7pBwfK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNYf7pBwfK .form-wrapper .mbr-form .form-group,
  .cid-uNYf7pBwfK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNYf7pBwfK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNYf7pBwfK .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-uNYf7pBwfK .mbr-text {
  text-align: center;
}
.cid-uNYf7pBwfK .pt-0 {
  padding-top: 0 !important;
}
.cid-uNYf7pBwfK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNYf7pBwfK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNYf7pBwfK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNYf7pBwfK .modal-open {
  overflow: hidden;
}
.cid-uNYf7pBwfK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNYf7pBwfK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNYf7pBwfK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNYf7pBwfK .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-uNYf7pBwfK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNYf7pBwfK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNYf7pBwfK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNYf7pBwfK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uNYf7pBwfK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNYf7pBwfK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNYf7pBwfK .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNYf7pBwfK .modal-backdrop.show {
  opacity: .5;
}
.cid-uNYf7pBwfK .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-uNYf7pBwfK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYf7pBwfK .modal-header {
    padding: 1rem;
  }
}
.cid-uNYf7pBwfK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNYf7pBwfK .modal-header .close svg {
  fill: #353535;
}
.cid-uNYf7pBwfK .modal-header .close:hover {
  opacity: 1;
}
.cid-uNYf7pBwfK .modal-header .close:focus {
  outline: none;
}
.cid-uNYf7pBwfK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uNYf7pBwfK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNYf7pBwfK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYf7pBwfK .modal-body {
    padding: 1rem;
  }
}
.cid-uNYf7pBwfK .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-uNYf7pBwfK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYf7pBwfK .modal-footer {
    padding: 1rem;
  }
}
.cid-uNYf7pBwfK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNYf7pBwfK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNYf7pBwfK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNYf7pBwfK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNYf7pBwfK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNYf7pBwfK .modal-lg,
  .cid-uNYf7pBwfK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNYf7pBwfK .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNYf7pBwfK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNYf7pBwfK .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-uNYf7pBwfK .form-group {
  margin-bottom: 1rem;
}
.cid-uNYf7pBwfK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNYf7pBwfK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNYf7pBwfK .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-uNYf7pBwfK .mbr-section-btn {
  margin: 0;
}
.cid-uNYf7pBwfK .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNXXDWFDFa.popup-builder {
  background-color: #ffffff;
}
.cid-uNXXDWFDFa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNXXDWFDFa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNXXDWFDFa .modal-content,
.cid-uNXXDWFDFa .modal-dialog {
  height: auto;
}
.cid-uNXXDWFDFa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNXXDWFDFa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNXXDWFDFa .form-wrapper .mbr-form .form-group,
  .cid-uNXXDWFDFa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNXXDWFDFa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNXXDWFDFa .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-uNXXDWFDFa .mbr-text {
  text-align: center;
}
.cid-uNXXDWFDFa .pt-0 {
  padding-top: 0 !important;
}
.cid-uNXXDWFDFa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNXXDWFDFa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNXXDWFDFa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNXXDWFDFa .modal-open {
  overflow: hidden;
}
.cid-uNXXDWFDFa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNXXDWFDFa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNXXDWFDFa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNXXDWFDFa .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-uNXXDWFDFa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNXXDWFDFa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNXXDWFDFa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNXXDWFDFa .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uNXXDWFDFa .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNXXDWFDFa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNXXDWFDFa .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNXXDWFDFa .modal-backdrop.show {
  opacity: .5;
}
.cid-uNXXDWFDFa .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-uNXXDWFDFa .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNXXDWFDFa .modal-header {
    padding: 1rem;
  }
}
.cid-uNXXDWFDFa .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNXXDWFDFa .modal-header .close svg {
  fill: #353535;
}
.cid-uNXXDWFDFa .modal-header .close:hover {
  opacity: 1;
}
.cid-uNXXDWFDFa .modal-header .close:focus {
  outline: none;
}
.cid-uNXXDWFDFa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uNXXDWFDFa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNXXDWFDFa .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNXXDWFDFa .modal-body {
    padding: 1rem;
  }
}
.cid-uNXXDWFDFa .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-uNXXDWFDFa .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNXXDWFDFa .modal-footer {
    padding: 1rem;
  }
}
.cid-uNXXDWFDFa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNXXDWFDFa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNXXDWFDFa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNXXDWFDFa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNXXDWFDFa .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNXXDWFDFa .modal-lg,
  .cid-uNXXDWFDFa .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNXXDWFDFa .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNXXDWFDFa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNXXDWFDFa .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-uNXXDWFDFa .form-group {
  margin-bottom: 1rem;
}
.cid-uNXXDWFDFa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNXXDWFDFa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNXXDWFDFa .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-uNXXDWFDFa .mbr-section-btn {
  margin: 0;
}
.cid-uNXXDWFDFa .mbr-section-btn .btn {
  margin: 0;
}
.cid-ur7k43nC0d.popup-builder {
  background-color: #ffffff;
}
.cid-ur7k43nC0d.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ur7k43nC0d.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ur7k43nC0d .modal-content,
.cid-ur7k43nC0d .modal-dialog {
  height: auto;
}
.cid-ur7k43nC0d .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ur7k43nC0d .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ur7k43nC0d .form-wrapper .mbr-form .form-group,
  .cid-ur7k43nC0d .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ur7k43nC0d .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ur7k43nC0d .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-ur7k43nC0d .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-ur7k43nC0d .pt-0 {
  padding-top: 0 !important;
}
.cid-ur7k43nC0d .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ur7k43nC0d .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ur7k43nC0d .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ur7k43nC0d .modal-open {
  overflow: hidden;
}
.cid-ur7k43nC0d .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ur7k43nC0d .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ur7k43nC0d .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ur7k43nC0d .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-ur7k43nC0d .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ur7k43nC0d .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ur7k43nC0d .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ur7k43nC0d .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-ur7k43nC0d .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ur7k43nC0d .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ur7k43nC0d .modal-backdrop.fade {
  opacity: 0;
}
.cid-ur7k43nC0d .modal-backdrop.show {
  opacity: .5;
}
.cid-ur7k43nC0d .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-ur7k43nC0d .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ur7k43nC0d .modal-header {
    padding: 1rem;
  }
}
.cid-ur7k43nC0d .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ur7k43nC0d .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-ur7k43nC0d .modal-header .close:hover {
  opacity: 1;
}
.cid-ur7k43nC0d .modal-header .close:focus {
  outline: none;
}
.cid-ur7k43nC0d .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-ur7k43nC0d .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ur7k43nC0d .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ur7k43nC0d .modal-body {
    padding: 1rem;
  }
}
.cid-ur7k43nC0d .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-ur7k43nC0d .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ur7k43nC0d .modal-footer {
    padding: 1rem;
  }
}
.cid-ur7k43nC0d .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ur7k43nC0d .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ur7k43nC0d .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ur7k43nC0d .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ur7k43nC0d .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ur7k43nC0d .modal-lg,
  .cid-ur7k43nC0d .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ur7k43nC0d .modal-xl {
    max-width: 1140px;
  }
}
.cid-ur7k43nC0d .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ur7k43nC0d .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-ur7k43nC0d .form-group {
  margin-bottom: 1rem;
}
.cid-ur7k43nC0d .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ur7k43nC0d .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ur7k43nC0d .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-ur7k43nC0d .mbr-section-btn {
  margin: 0;
}
.cid-ur7k43nC0d .mbr-section-btn .btn {
  margin: 0;
}
.cid-usDEuzK68z.popup-builder {
  background-color: #ffffff;
}
.cid-usDEuzK68z.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usDEuzK68z.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usDEuzK68z .modal-content,
.cid-usDEuzK68z .modal-dialog {
  height: auto;
}
.cid-usDEuzK68z .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usDEuzK68z .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usDEuzK68z .form-wrapper .mbr-form .form-group,
  .cid-usDEuzK68z .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usDEuzK68z .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usDEuzK68z .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-usDEuzK68z .mbr-text {
  text-align: center;
  color: #fcfd83;
}
.cid-usDEuzK68z .pt-0 {
  padding-top: 0 !important;
}
.cid-usDEuzK68z .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usDEuzK68z .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usDEuzK68z .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usDEuzK68z .modal-open {
  overflow: hidden;
}
.cid-usDEuzK68z .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usDEuzK68z .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usDEuzK68z .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usDEuzK68z .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-usDEuzK68z .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usDEuzK68z .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usDEuzK68z .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usDEuzK68z .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usDEuzK68z .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usDEuzK68z .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usDEuzK68z .modal-backdrop.fade {
  opacity: 0;
}
.cid-usDEuzK68z .modal-backdrop.show {
  opacity: .5;
}
.cid-usDEuzK68z .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-usDEuzK68z .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usDEuzK68z .modal-header {
    padding: 1rem;
  }
}
.cid-usDEuzK68z .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usDEuzK68z .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-usDEuzK68z .modal-header .close:hover {
  opacity: 1;
}
.cid-usDEuzK68z .modal-header .close:focus {
  outline: none;
}
.cid-usDEuzK68z .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-usDEuzK68z .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usDEuzK68z .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usDEuzK68z .modal-body {
    padding: 1rem;
  }
}
.cid-usDEuzK68z .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-usDEuzK68z .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usDEuzK68z .modal-footer {
    padding: 1rem;
  }
}
.cid-usDEuzK68z .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usDEuzK68z .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usDEuzK68z .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usDEuzK68z .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usDEuzK68z .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usDEuzK68z .modal-lg,
  .cid-usDEuzK68z .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usDEuzK68z .modal-xl {
    max-width: 1140px;
  }
}
.cid-usDEuzK68z .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usDEuzK68z .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-usDEuzK68z .form-group {
  margin-bottom: 1rem;
}
.cid-usDEuzK68z .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usDEuzK68z .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usDEuzK68z .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-usDEuzK68z .mbr-section-btn {
  margin: 0;
}
.cid-usDEuzK68z .mbr-section-btn .btn {
  margin: 0;
}
.cid-v1h4foZK7f.popup-builder {
  background-color: #ffffff;
}
.cid-v1h4foZK7f.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v1h4foZK7f.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v1h4foZK7f .modal-content,
.cid-v1h4foZK7f .modal-dialog {
  height: auto;
}
.cid-v1h4foZK7f .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v1h4foZK7f .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v1h4foZK7f .form-wrapper .mbr-form .form-group,
  .cid-v1h4foZK7f .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v1h4foZK7f .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v1h4foZK7f .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-v1h4foZK7f .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-v1h4foZK7f .pt-0 {
  padding-top: 0 !important;
}
.cid-v1h4foZK7f .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v1h4foZK7f .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v1h4foZK7f .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v1h4foZK7f .modal-open {
  overflow: hidden;
}
.cid-v1h4foZK7f .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v1h4foZK7f .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v1h4foZK7f .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v1h4foZK7f .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-v1h4foZK7f .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v1h4foZK7f .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v1h4foZK7f .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v1h4foZK7f .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-v1h4foZK7f .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v1h4foZK7f .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v1h4foZK7f .modal-backdrop.fade {
  opacity: 0;
}
.cid-v1h4foZK7f .modal-backdrop.show {
  opacity: .5;
}
.cid-v1h4foZK7f .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-v1h4foZK7f .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v1h4foZK7f .modal-header {
    padding: 1rem;
  }
}
.cid-v1h4foZK7f .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v1h4foZK7f .modal-header .close svg {
  fill: #ffffff;
}
.cid-v1h4foZK7f .modal-header .close:hover {
  opacity: 1;
}
.cid-v1h4foZK7f .modal-header .close:focus {
  outline: none;
}
.cid-v1h4foZK7f .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-v1h4foZK7f .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v1h4foZK7f .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1h4foZK7f .modal-body {
    padding: 1rem;
  }
}
.cid-v1h4foZK7f .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-v1h4foZK7f .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1h4foZK7f .modal-footer {
    padding: 1rem;
  }
}
.cid-v1h4foZK7f .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v1h4foZK7f .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v1h4foZK7f .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v1h4foZK7f .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v1h4foZK7f .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v1h4foZK7f .modal-lg,
  .cid-v1h4foZK7f .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v1h4foZK7f .modal-xl {
    max-width: 1140px;
  }
}
.cid-v1h4foZK7f .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v1h4foZK7f .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-v1h4foZK7f .form-group {
  margin-bottom: 1rem;
}
.cid-v1h4foZK7f .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v1h4foZK7f .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v1h4foZK7f .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-v1h4foZK7f .mbr-section-btn {
  margin: 0;
}
.cid-v1h4foZK7f .mbr-section-btn .btn {
  margin: 0;
}
.cid-utpdorHj55.popup-builder {
  background-color: #ffffff;
}
.cid-utpdorHj55.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-utpdorHj55.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-utpdorHj55 .modal-content,
.cid-utpdorHj55 .modal-dialog {
  height: auto;
}
.cid-utpdorHj55 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-utpdorHj55 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-utpdorHj55 .form-wrapper .mbr-form .form-group,
  .cid-utpdorHj55 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-utpdorHj55 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-utpdorHj55 .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-utpdorHj55 .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-utpdorHj55 .pt-0 {
  padding-top: 0 !important;
}
.cid-utpdorHj55 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-utpdorHj55 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-utpdorHj55 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-utpdorHj55 .modal-open {
  overflow: hidden;
}
.cid-utpdorHj55 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-utpdorHj55 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-utpdorHj55 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-utpdorHj55 .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-utpdorHj55 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-utpdorHj55 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-utpdorHj55 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-utpdorHj55 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-utpdorHj55 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-utpdorHj55 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-utpdorHj55 .modal-backdrop.fade {
  opacity: 0;
}
.cid-utpdorHj55 .modal-backdrop.show {
  opacity: .5;
}
.cid-utpdorHj55 .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-utpdorHj55 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-utpdorHj55 .modal-header {
    padding: 1rem;
  }
}
.cid-utpdorHj55 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-utpdorHj55 .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-utpdorHj55 .modal-header .close:hover {
  opacity: 1;
}
.cid-utpdorHj55 .modal-header .close:focus {
  outline: none;
}
.cid-utpdorHj55 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-utpdorHj55 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-utpdorHj55 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utpdorHj55 .modal-body {
    padding: 1rem;
  }
}
.cid-utpdorHj55 .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-utpdorHj55 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utpdorHj55 .modal-footer {
    padding: 1rem;
  }
}
.cid-utpdorHj55 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-utpdorHj55 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-utpdorHj55 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-utpdorHj55 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-utpdorHj55 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-utpdorHj55 .modal-lg,
  .cid-utpdorHj55 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-utpdorHj55 .modal-xl {
    max-width: 1140px;
  }
}
.cid-utpdorHj55 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-utpdorHj55 .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-utpdorHj55 .form-group {
  margin-bottom: 1rem;
}
.cid-utpdorHj55 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-utpdorHj55 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-utpdorHj55 .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-utpdorHj55 .mbr-section-btn {
  margin: 0;
}
.cid-utpdorHj55 .mbr-section-btn .btn {
  margin: 0;
}
.cid-ur8zT4DFtp.popup-builder {
  background-color: #ffffff;
}
.cid-ur8zT4DFtp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ur8zT4DFtp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ur8zT4DFtp .modal-content,
.cid-ur8zT4DFtp .modal-dialog {
  height: auto;
}
.cid-ur8zT4DFtp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ur8zT4DFtp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ur8zT4DFtp .form-wrapper .mbr-form .form-group,
  .cid-ur8zT4DFtp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ur8zT4DFtp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ur8zT4DFtp .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-ur8zT4DFtp .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-ur8zT4DFtp .pt-0 {
  padding-top: 0 !important;
}
.cid-ur8zT4DFtp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ur8zT4DFtp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ur8zT4DFtp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ur8zT4DFtp .modal-open {
  overflow: hidden;
}
.cid-ur8zT4DFtp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ur8zT4DFtp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ur8zT4DFtp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ur8zT4DFtp .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-ur8zT4DFtp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ur8zT4DFtp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ur8zT4DFtp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ur8zT4DFtp .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-ur8zT4DFtp .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ur8zT4DFtp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ur8zT4DFtp .modal-backdrop.fade {
  opacity: 0;
}
.cid-ur8zT4DFtp .modal-backdrop.show {
  opacity: .5;
}
.cid-ur8zT4DFtp .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-ur8zT4DFtp .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ur8zT4DFtp .modal-header {
    padding: 1rem;
  }
}
.cid-ur8zT4DFtp .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ur8zT4DFtp .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-ur8zT4DFtp .modal-header .close:hover {
  opacity: 1;
}
.cid-ur8zT4DFtp .modal-header .close:focus {
  outline: none;
}
.cid-ur8zT4DFtp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #fcfd83;
}
.cid-ur8zT4DFtp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ur8zT4DFtp .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ur8zT4DFtp .modal-body {
    padding: 1rem;
  }
}
.cid-ur8zT4DFtp .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-ur8zT4DFtp .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ur8zT4DFtp .modal-footer {
    padding: 1rem;
  }
}
.cid-ur8zT4DFtp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ur8zT4DFtp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ur8zT4DFtp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ur8zT4DFtp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ur8zT4DFtp .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ur8zT4DFtp .modal-lg,
  .cid-ur8zT4DFtp .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ur8zT4DFtp .modal-xl {
    max-width: 1140px;
  }
}
.cid-ur8zT4DFtp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ur8zT4DFtp .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-ur8zT4DFtp .form-group {
  margin-bottom: 1rem;
}
.cid-ur8zT4DFtp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ur8zT4DFtp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ur8zT4DFtp .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-ur8zT4DFtp .mbr-section-btn {
  margin: 0;
}
.cid-ur8zT4DFtp .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNXArCXi5C.popup-builder {
  background-color: #ffffff;
}
.cid-uNXArCXi5C.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNXArCXi5C.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNXArCXi5C .modal-content,
.cid-uNXArCXi5C .modal-dialog {
  height: auto;
}
.cid-uNXArCXi5C .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNXArCXi5C .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNXArCXi5C .form-wrapper .mbr-form .form-group,
  .cid-uNXArCXi5C .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNXArCXi5C .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNXArCXi5C .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-uNXArCXi5C .mbr-text {
  text-align: center;
}
.cid-uNXArCXi5C .pt-0 {
  padding-top: 0 !important;
}
.cid-uNXArCXi5C .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNXArCXi5C .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNXArCXi5C .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNXArCXi5C .modal-open {
  overflow: hidden;
}
.cid-uNXArCXi5C .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNXArCXi5C .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNXArCXi5C .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNXArCXi5C .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-uNXArCXi5C .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNXArCXi5C .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNXArCXi5C .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNXArCXi5C .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uNXArCXi5C .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNXArCXi5C .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNXArCXi5C .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNXArCXi5C .modal-backdrop.show {
  opacity: .5;
}
.cid-uNXArCXi5C .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-uNXArCXi5C .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNXArCXi5C .modal-header {
    padding: 1rem;
  }
}
.cid-uNXArCXi5C .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNXArCXi5C .modal-header .close svg {
  fill: #353535;
}
.cid-uNXArCXi5C .modal-header .close:hover {
  opacity: 1;
}
.cid-uNXArCXi5C .modal-header .close:focus {
  outline: none;
}
.cid-uNXArCXi5C .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uNXArCXi5C .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNXArCXi5C .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNXArCXi5C .modal-body {
    padding: 1rem;
  }
}
.cid-uNXArCXi5C .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-uNXArCXi5C .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNXArCXi5C .modal-footer {
    padding: 1rem;
  }
}
.cid-uNXArCXi5C .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNXArCXi5C .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNXArCXi5C .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNXArCXi5C .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNXArCXi5C .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNXArCXi5C .modal-lg,
  .cid-uNXArCXi5C .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNXArCXi5C .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNXArCXi5C .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNXArCXi5C .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-uNXArCXi5C .form-group {
  margin-bottom: 1rem;
}
.cid-uNXArCXi5C .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNXArCXi5C .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNXArCXi5C .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-uNXArCXi5C .mbr-section-btn {
  margin: 0;
}
.cid-uNXArCXi5C .mbr-section-btn .btn {
  margin: 0;
}
.cid-u20v5V1sqs.popup-builder {
  background-color: #ffffff;
}
.cid-u20v5V1sqs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u20v5V1sqs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u20v5V1sqs .modal-content,
.cid-u20v5V1sqs .modal-dialog {
  height: auto;
}
.cid-u20v5V1sqs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u20v5V1sqs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u20v5V1sqs .form-wrapper .mbr-form .form-group,
  .cid-u20v5V1sqs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u20v5V1sqs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u20v5V1sqs .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-u20v5V1sqs .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-u20v5V1sqs .pt-0 {
  padding-top: 0 !important;
}
.cid-u20v5V1sqs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u20v5V1sqs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u20v5V1sqs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u20v5V1sqs .modal-open {
  overflow: hidden;
}
.cid-u20v5V1sqs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u20v5V1sqs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u20v5V1sqs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u20v5V1sqs .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-u20v5V1sqs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u20v5V1sqs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u20v5V1sqs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u20v5V1sqs .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-u20v5V1sqs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u20v5V1sqs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u20v5V1sqs .modal-backdrop.fade {
  opacity: 0;
}
.cid-u20v5V1sqs .modal-backdrop.show {
  opacity: .5;
}
.cid-u20v5V1sqs .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-u20v5V1sqs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u20v5V1sqs .modal-header {
    padding: 1rem;
  }
}
.cid-u20v5V1sqs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u20v5V1sqs .modal-header .close svg {
  fill: #59307c;
}
.cid-u20v5V1sqs .modal-header .close:hover {
  opacity: 1;
}
.cid-u20v5V1sqs .modal-header .close:focus {
  outline: none;
}
.cid-u20v5V1sqs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-u20v5V1sqs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u20v5V1sqs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u20v5V1sqs .modal-body {
    padding: 1rem;
  }
}
.cid-u20v5V1sqs .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-u20v5V1sqs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u20v5V1sqs .modal-footer {
    padding: 1rem;
  }
}
.cid-u20v5V1sqs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u20v5V1sqs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u20v5V1sqs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u20v5V1sqs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u20v5V1sqs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u20v5V1sqs .modal-lg,
  .cid-u20v5V1sqs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u20v5V1sqs .modal-xl {
    max-width: 1140px;
  }
}
.cid-u20v5V1sqs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u20v5V1sqs .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-u20v5V1sqs .form-group {
  margin-bottom: 1rem;
}
.cid-u20v5V1sqs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u20v5V1sqs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u20v5V1sqs .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-u20v5V1sqs .mbr-section-btn {
  margin: 0;
}
.cid-u20v5V1sqs .mbr-section-btn .btn {
  margin: 0;
}
.cid-usQSPSHdQ2.popup-builder {
  background-color: #ffffff;
}
.cid-usQSPSHdQ2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usQSPSHdQ2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usQSPSHdQ2 .modal-content,
.cid-usQSPSHdQ2 .modal-dialog {
  height: auto;
}
.cid-usQSPSHdQ2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usQSPSHdQ2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usQSPSHdQ2 .form-wrapper .mbr-form .form-group,
  .cid-usQSPSHdQ2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usQSPSHdQ2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usQSPSHdQ2 .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-usQSPSHdQ2 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-usQSPSHdQ2 .pt-0 {
  padding-top: 0 !important;
}
.cid-usQSPSHdQ2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usQSPSHdQ2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usQSPSHdQ2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usQSPSHdQ2 .modal-open {
  overflow: hidden;
}
.cid-usQSPSHdQ2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usQSPSHdQ2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usQSPSHdQ2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usQSPSHdQ2 .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-usQSPSHdQ2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usQSPSHdQ2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usQSPSHdQ2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usQSPSHdQ2 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usQSPSHdQ2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usQSPSHdQ2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usQSPSHdQ2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-usQSPSHdQ2 .modal-backdrop.show {
  opacity: .5;
}
.cid-usQSPSHdQ2 .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-usQSPSHdQ2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usQSPSHdQ2 .modal-header {
    padding: 1rem;
  }
}
.cid-usQSPSHdQ2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usQSPSHdQ2 .modal-header .close svg {
  fill: #b97ecd;
}
.cid-usQSPSHdQ2 .modal-header .close:hover {
  opacity: 1;
}
.cid-usQSPSHdQ2 .modal-header .close:focus {
  outline: none;
}
.cid-usQSPSHdQ2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-usQSPSHdQ2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usQSPSHdQ2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usQSPSHdQ2 .modal-body {
    padding: 1rem;
  }
}
.cid-usQSPSHdQ2 .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-usQSPSHdQ2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usQSPSHdQ2 .modal-footer {
    padding: 1rem;
  }
}
.cid-usQSPSHdQ2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usQSPSHdQ2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usQSPSHdQ2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usQSPSHdQ2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usQSPSHdQ2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usQSPSHdQ2 .modal-lg,
  .cid-usQSPSHdQ2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usQSPSHdQ2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-usQSPSHdQ2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usQSPSHdQ2 .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-usQSPSHdQ2 .form-group {
  margin-bottom: 1rem;
}
.cid-usQSPSHdQ2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usQSPSHdQ2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usQSPSHdQ2 .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-usQSPSHdQ2 .mbr-section-btn {
  margin: 0;
}
.cid-usQSPSHdQ2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-usP7yzcNMr.popup-builder {
  background-color: #ffffff;
}
.cid-usP7yzcNMr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usP7yzcNMr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usP7yzcNMr .modal-content,
.cid-usP7yzcNMr .modal-dialog {
  height: auto;
}
.cid-usP7yzcNMr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usP7yzcNMr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usP7yzcNMr .form-wrapper .mbr-form .form-group,
  .cid-usP7yzcNMr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usP7yzcNMr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usP7yzcNMr .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-usP7yzcNMr .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-usP7yzcNMr .pt-0 {
  padding-top: 0 !important;
}
.cid-usP7yzcNMr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usP7yzcNMr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usP7yzcNMr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usP7yzcNMr .modal-open {
  overflow: hidden;
}
.cid-usP7yzcNMr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usP7yzcNMr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usP7yzcNMr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usP7yzcNMr .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-usP7yzcNMr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usP7yzcNMr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usP7yzcNMr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usP7yzcNMr .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usP7yzcNMr .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usP7yzcNMr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usP7yzcNMr .modal-backdrop.fade {
  opacity: 0;
}
.cid-usP7yzcNMr .modal-backdrop.show {
  opacity: .5;
}
.cid-usP7yzcNMr .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-usP7yzcNMr .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usP7yzcNMr .modal-header {
    padding: 1rem;
  }
}
.cid-usP7yzcNMr .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usP7yzcNMr .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-usP7yzcNMr .modal-header .close:hover {
  opacity: 1;
}
.cid-usP7yzcNMr .modal-header .close:focus {
  outline: none;
}
.cid-usP7yzcNMr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-usP7yzcNMr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usP7yzcNMr .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usP7yzcNMr .modal-body {
    padding: 1rem;
  }
}
.cid-usP7yzcNMr .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-usP7yzcNMr .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usP7yzcNMr .modal-footer {
    padding: 1rem;
  }
}
.cid-usP7yzcNMr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usP7yzcNMr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usP7yzcNMr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usP7yzcNMr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usP7yzcNMr .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usP7yzcNMr .modal-lg,
  .cid-usP7yzcNMr .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usP7yzcNMr .modal-xl {
    max-width: 1140px;
  }
}
.cid-usP7yzcNMr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usP7yzcNMr .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-usP7yzcNMr .form-group {
  margin-bottom: 1rem;
}
.cid-usP7yzcNMr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usP7yzcNMr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usP7yzcNMr .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-usP7yzcNMr .mbr-section-btn {
  margin: 0;
}
.cid-usP7yzcNMr .mbr-section-btn .btn {
  margin: 0;
}
.cid-usDX5YLUWu.popup-builder {
  background-color: #ffffff;
}
.cid-usDX5YLUWu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usDX5YLUWu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usDX5YLUWu .modal-content,
.cid-usDX5YLUWu .modal-dialog {
  height: auto;
}
.cid-usDX5YLUWu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usDX5YLUWu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usDX5YLUWu .form-wrapper .mbr-form .form-group,
  .cid-usDX5YLUWu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usDX5YLUWu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usDX5YLUWu .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-usDX5YLUWu .mbr-text {
  text-align: center;
  color: #f3f6f9;
}
.cid-usDX5YLUWu .pt-0 {
  padding-top: 0 !important;
}
.cid-usDX5YLUWu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usDX5YLUWu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usDX5YLUWu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usDX5YLUWu .modal-open {
  overflow: hidden;
}
.cid-usDX5YLUWu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usDX5YLUWu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usDX5YLUWu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usDX5YLUWu .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-usDX5YLUWu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usDX5YLUWu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usDX5YLUWu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usDX5YLUWu .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usDX5YLUWu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usDX5YLUWu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usDX5YLUWu .modal-backdrop.fade {
  opacity: 0;
}
.cid-usDX5YLUWu .modal-backdrop.show {
  opacity: .5;
}
.cid-usDX5YLUWu .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-usDX5YLUWu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usDX5YLUWu .modal-header {
    padding: 1rem;
  }
}
.cid-usDX5YLUWu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usDX5YLUWu .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-usDX5YLUWu .modal-header .close:hover {
  opacity: 1;
}
.cid-usDX5YLUWu .modal-header .close:focus {
  outline: none;
}
.cid-usDX5YLUWu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #e6eaf1;
}
.cid-usDX5YLUWu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usDX5YLUWu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usDX5YLUWu .modal-body {
    padding: 1rem;
  }
}
.cid-usDX5YLUWu .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-usDX5YLUWu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usDX5YLUWu .modal-footer {
    padding: 1rem;
  }
}
.cid-usDX5YLUWu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usDX5YLUWu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usDX5YLUWu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usDX5YLUWu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usDX5YLUWu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usDX5YLUWu .modal-lg,
  .cid-usDX5YLUWu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usDX5YLUWu .modal-xl {
    max-width: 1140px;
  }
}
.cid-usDX5YLUWu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usDX5YLUWu .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-usDX5YLUWu .form-group {
  margin-bottom: 1rem;
}
.cid-usDX5YLUWu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usDX5YLUWu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usDX5YLUWu .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-usDX5YLUWu .mbr-section-btn {
  margin: 0;
}
.cid-usDX5YLUWu .mbr-section-btn .btn {
  margin: 0;
}
.cid-ur7oYCs5hI.popup-builder {
  background-color: #ffffff;
}
.cid-ur7oYCs5hI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ur7oYCs5hI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ur7oYCs5hI .modal-content,
.cid-ur7oYCs5hI .modal-dialog {
  height: auto;
}
.cid-ur7oYCs5hI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ur7oYCs5hI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ur7oYCs5hI .form-wrapper .mbr-form .form-group,
  .cid-ur7oYCs5hI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ur7oYCs5hI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ur7oYCs5hI .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-ur7oYCs5hI .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-ur7oYCs5hI .pt-0 {
  padding-top: 0 !important;
}
.cid-ur7oYCs5hI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ur7oYCs5hI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ur7oYCs5hI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ur7oYCs5hI .modal-open {
  overflow: hidden;
}
.cid-ur7oYCs5hI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ur7oYCs5hI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ur7oYCs5hI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ur7oYCs5hI .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-ur7oYCs5hI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ur7oYCs5hI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ur7oYCs5hI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ur7oYCs5hI .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-ur7oYCs5hI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ur7oYCs5hI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ur7oYCs5hI .modal-backdrop.fade {
  opacity: 0;
}
.cid-ur7oYCs5hI .modal-backdrop.show {
  opacity: .5;
}
.cid-ur7oYCs5hI .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-ur7oYCs5hI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ur7oYCs5hI .modal-header {
    padding: 1rem;
  }
}
.cid-ur7oYCs5hI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ur7oYCs5hI .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-ur7oYCs5hI .modal-header .close:hover {
  opacity: 1;
}
.cid-ur7oYCs5hI .modal-header .close:focus {
  outline: none;
}
.cid-ur7oYCs5hI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-ur7oYCs5hI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ur7oYCs5hI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ur7oYCs5hI .modal-body {
    padding: 1rem;
  }
}
.cid-ur7oYCs5hI .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-ur7oYCs5hI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ur7oYCs5hI .modal-footer {
    padding: 1rem;
  }
}
.cid-ur7oYCs5hI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ur7oYCs5hI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ur7oYCs5hI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ur7oYCs5hI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ur7oYCs5hI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ur7oYCs5hI .modal-lg,
  .cid-ur7oYCs5hI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ur7oYCs5hI .modal-xl {
    max-width: 1140px;
  }
}
.cid-ur7oYCs5hI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ur7oYCs5hI .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-ur7oYCs5hI .form-group {
  margin-bottom: 1rem;
}
.cid-ur7oYCs5hI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ur7oYCs5hI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ur7oYCs5hI .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-ur7oYCs5hI .mbr-section-btn {
  margin: 0;
}
.cid-ur7oYCs5hI .mbr-section-btn .btn {
  margin: 0;
}
.cid-ur8Is5mPFQ.popup-builder {
  background-color: #ffffff;
}
.cid-ur8Is5mPFQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ur8Is5mPFQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ur8Is5mPFQ .modal-content,
.cid-ur8Is5mPFQ .modal-dialog {
  height: auto;
}
.cid-ur8Is5mPFQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ur8Is5mPFQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ur8Is5mPFQ .form-wrapper .mbr-form .form-group,
  .cid-ur8Is5mPFQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ur8Is5mPFQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ur8Is5mPFQ .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-ur8Is5mPFQ .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-ur8Is5mPFQ .pt-0 {
  padding-top: 0 !important;
}
.cid-ur8Is5mPFQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ur8Is5mPFQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ur8Is5mPFQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ur8Is5mPFQ .modal-open {
  overflow: hidden;
}
.cid-ur8Is5mPFQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ur8Is5mPFQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ur8Is5mPFQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ur8Is5mPFQ .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-ur8Is5mPFQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ur8Is5mPFQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ur8Is5mPFQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ur8Is5mPFQ .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-ur8Is5mPFQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ur8Is5mPFQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ur8Is5mPFQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-ur8Is5mPFQ .modal-backdrop.show {
  opacity: .5;
}
.cid-ur8Is5mPFQ .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-ur8Is5mPFQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ur8Is5mPFQ .modal-header {
    padding: 1rem;
  }
}
.cid-ur8Is5mPFQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ur8Is5mPFQ .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-ur8Is5mPFQ .modal-header .close:hover {
  opacity: 1;
}
.cid-ur8Is5mPFQ .modal-header .close:focus {
  outline: none;
}
.cid-ur8Is5mPFQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-ur8Is5mPFQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ur8Is5mPFQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ur8Is5mPFQ .modal-body {
    padding: 1rem;
  }
}
.cid-ur8Is5mPFQ .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-ur8Is5mPFQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ur8Is5mPFQ .modal-footer {
    padding: 1rem;
  }
}
.cid-ur8Is5mPFQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ur8Is5mPFQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ur8Is5mPFQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ur8Is5mPFQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ur8Is5mPFQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ur8Is5mPFQ .modal-lg,
  .cid-ur8Is5mPFQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ur8Is5mPFQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-ur8Is5mPFQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ur8Is5mPFQ .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-ur8Is5mPFQ .form-group {
  margin-bottom: 1rem;
}
.cid-ur8Is5mPFQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ur8Is5mPFQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ur8Is5mPFQ .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-ur8Is5mPFQ .mbr-section-btn {
  margin: 0;
}
.cid-ur8Is5mPFQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-usyt5E4fX7.popup-builder {
  background-color: #ffffff;
}
.cid-usyt5E4fX7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usyt5E4fX7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usyt5E4fX7 .modal-content,
.cid-usyt5E4fX7 .modal-dialog {
  height: auto;
}
.cid-usyt5E4fX7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usyt5E4fX7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usyt5E4fX7 .form-wrapper .mbr-form .form-group,
  .cid-usyt5E4fX7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usyt5E4fX7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usyt5E4fX7 .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-usyt5E4fX7 .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-usyt5E4fX7 .pt-0 {
  padding-top: 0 !important;
}
.cid-usyt5E4fX7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usyt5E4fX7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usyt5E4fX7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usyt5E4fX7 .modal-open {
  overflow: hidden;
}
.cid-usyt5E4fX7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usyt5E4fX7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usyt5E4fX7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usyt5E4fX7 .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-usyt5E4fX7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usyt5E4fX7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usyt5E4fX7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usyt5E4fX7 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-usyt5E4fX7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usyt5E4fX7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usyt5E4fX7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-usyt5E4fX7 .modal-backdrop.show {
  opacity: .5;
}
.cid-usyt5E4fX7 .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-usyt5E4fX7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usyt5E4fX7 .modal-header {
    padding: 1rem;
  }
}
.cid-usyt5E4fX7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usyt5E4fX7 .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-usyt5E4fX7 .modal-header .close:hover {
  opacity: 1;
}
.cid-usyt5E4fX7 .modal-header .close:focus {
  outline: none;
}
.cid-usyt5E4fX7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-usyt5E4fX7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usyt5E4fX7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usyt5E4fX7 .modal-body {
    padding: 1rem;
  }
}
.cid-usyt5E4fX7 .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-usyt5E4fX7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usyt5E4fX7 .modal-footer {
    padding: 1rem;
  }
}
.cid-usyt5E4fX7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usyt5E4fX7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usyt5E4fX7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usyt5E4fX7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usyt5E4fX7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usyt5E4fX7 .modal-lg,
  .cid-usyt5E4fX7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usyt5E4fX7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-usyt5E4fX7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usyt5E4fX7 .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-usyt5E4fX7 .form-group {
  margin-bottom: 1rem;
}
.cid-usyt5E4fX7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usyt5E4fX7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usyt5E4fX7 .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-usyt5E4fX7 .mbr-section-btn {
  margin: 0;
}
.cid-usyt5E4fX7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-url2Qy3KDQ.popup-builder {
  background-color: #ffffff;
}
.cid-url2Qy3KDQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-url2Qy3KDQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-url2Qy3KDQ .modal-content,
.cid-url2Qy3KDQ .modal-dialog {
  height: auto;
}
.cid-url2Qy3KDQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-url2Qy3KDQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-url2Qy3KDQ .form-wrapper .mbr-form .form-group,
  .cid-url2Qy3KDQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-url2Qy3KDQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-url2Qy3KDQ .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-url2Qy3KDQ .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-url2Qy3KDQ .pt-0 {
  padding-top: 0 !important;
}
.cid-url2Qy3KDQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-url2Qy3KDQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-url2Qy3KDQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-url2Qy3KDQ .modal-open {
  overflow: hidden;
}
.cid-url2Qy3KDQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-url2Qy3KDQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-url2Qy3KDQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-url2Qy3KDQ .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-url2Qy3KDQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-url2Qy3KDQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-url2Qy3KDQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-url2Qy3KDQ .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-url2Qy3KDQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-url2Qy3KDQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-url2Qy3KDQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-url2Qy3KDQ .modal-backdrop.show {
  opacity: .5;
}
.cid-url2Qy3KDQ .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-url2Qy3KDQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-url2Qy3KDQ .modal-header {
    padding: 1rem;
  }
}
.cid-url2Qy3KDQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-url2Qy3KDQ .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-url2Qy3KDQ .modal-header .close:hover {
  opacity: 1;
}
.cid-url2Qy3KDQ .modal-header .close:focus {
  outline: none;
}
.cid-url2Qy3KDQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #bdbe5a;
}
.cid-url2Qy3KDQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-url2Qy3KDQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-url2Qy3KDQ .modal-body {
    padding: 1rem;
  }
}
.cid-url2Qy3KDQ .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-url2Qy3KDQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-url2Qy3KDQ .modal-footer {
    padding: 1rem;
  }
}
.cid-url2Qy3KDQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-url2Qy3KDQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-url2Qy3KDQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-url2Qy3KDQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-url2Qy3KDQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-url2Qy3KDQ .modal-lg,
  .cid-url2Qy3KDQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-url2Qy3KDQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-url2Qy3KDQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-url2Qy3KDQ .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-url2Qy3KDQ .form-group {
  margin-bottom: 1rem;
}
.cid-url2Qy3KDQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-url2Qy3KDQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-url2Qy3KDQ .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-url2Qy3KDQ .mbr-section-btn {
  margin: 0;
}
.cid-url2Qy3KDQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-urw69AGcb0.popup-builder {
  background-color: #ffffff;
}
.cid-urw69AGcb0.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-urw69AGcb0.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-urw69AGcb0 .modal-content,
.cid-urw69AGcb0 .modal-dialog {
  height: auto;
}
.cid-urw69AGcb0 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-urw69AGcb0 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-urw69AGcb0 .form-wrapper .mbr-form .form-group,
  .cid-urw69AGcb0 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-urw69AGcb0 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-urw69AGcb0 .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-urw69AGcb0 .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-urw69AGcb0 .pt-0 {
  padding-top: 0 !important;
}
.cid-urw69AGcb0 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-urw69AGcb0 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-urw69AGcb0 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-urw69AGcb0 .modal-open {
  overflow: hidden;
}
.cid-urw69AGcb0 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-urw69AGcb0 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-urw69AGcb0 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-urw69AGcb0 .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-urw69AGcb0 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-urw69AGcb0 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-urw69AGcb0 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-urw69AGcb0 .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-urw69AGcb0 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-urw69AGcb0 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-urw69AGcb0 .modal-backdrop.fade {
  opacity: 0;
}
.cid-urw69AGcb0 .modal-backdrop.show {
  opacity: .5;
}
.cid-urw69AGcb0 .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-urw69AGcb0 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urw69AGcb0 .modal-header {
    padding: 1rem;
  }
}
.cid-urw69AGcb0 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-urw69AGcb0 .modal-header .close svg {
  fill: #e6eaf1;
}
.cid-urw69AGcb0 .modal-header .close:hover {
  opacity: 1;
}
.cid-urw69AGcb0 .modal-header .close:focus {
  outline: none;
}
.cid-urw69AGcb0 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #bdbe5a;
}
.cid-urw69AGcb0 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-urw69AGcb0 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urw69AGcb0 .modal-body {
    padding: 1rem;
  }
}
.cid-urw69AGcb0 .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-urw69AGcb0 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urw69AGcb0 .modal-footer {
    padding: 1rem;
  }
}
.cid-urw69AGcb0 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-urw69AGcb0 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-urw69AGcb0 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-urw69AGcb0 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-urw69AGcb0 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-urw69AGcb0 .modal-lg,
  .cid-urw69AGcb0 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-urw69AGcb0 .modal-xl {
    max-width: 1140px;
  }
}
.cid-urw69AGcb0 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-urw69AGcb0 .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-urw69AGcb0 .form-group {
  margin-bottom: 1rem;
}
.cid-urw69AGcb0 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-urw69AGcb0 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-urw69AGcb0 .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-urw69AGcb0 .mbr-section-btn {
  margin: 0;
}
.cid-urw69AGcb0 .mbr-section-btn .btn {
  margin: 0;
}
.cid-u20QGdimJ8.popup-builder {
  background-color: #ffffff;
}
.cid-u20QGdimJ8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u20QGdimJ8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u20QGdimJ8 .modal-content,
.cid-u20QGdimJ8 .modal-dialog {
  height: auto;
}
.cid-u20QGdimJ8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u20QGdimJ8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u20QGdimJ8 .form-wrapper .mbr-form .form-group,
  .cid-u20QGdimJ8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u20QGdimJ8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u20QGdimJ8 .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-u20QGdimJ8 .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-u20QGdimJ8 .pt-0 {
  padding-top: 0 !important;
}
.cid-u20QGdimJ8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u20QGdimJ8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u20QGdimJ8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u20QGdimJ8 .modal-open {
  overflow: hidden;
}
.cid-u20QGdimJ8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u20QGdimJ8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u20QGdimJ8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u20QGdimJ8 .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-u20QGdimJ8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u20QGdimJ8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u20QGdimJ8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u20QGdimJ8 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-u20QGdimJ8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u20QGdimJ8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u20QGdimJ8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-u20QGdimJ8 .modal-backdrop.show {
  opacity: .5;
}
.cid-u20QGdimJ8 .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-u20QGdimJ8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u20QGdimJ8 .modal-header {
    padding: 1rem;
  }
}
.cid-u20QGdimJ8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u20QGdimJ8 .modal-header .close svg {
  fill: #ffffff;
}
.cid-u20QGdimJ8 .modal-header .close:hover {
  opacity: 1;
}
.cid-u20QGdimJ8 .modal-header .close:focus {
  outline: none;
}
.cid-u20QGdimJ8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-u20QGdimJ8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u20QGdimJ8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u20QGdimJ8 .modal-body {
    padding: 1rem;
  }
}
.cid-u20QGdimJ8 .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-u20QGdimJ8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u20QGdimJ8 .modal-footer {
    padding: 1rem;
  }
}
.cid-u20QGdimJ8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u20QGdimJ8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u20QGdimJ8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u20QGdimJ8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u20QGdimJ8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u20QGdimJ8 .modal-lg,
  .cid-u20QGdimJ8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u20QGdimJ8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-u20QGdimJ8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u20QGdimJ8 .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-u20QGdimJ8 .form-group {
  margin-bottom: 1rem;
}
.cid-u20QGdimJ8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u20QGdimJ8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u20QGdimJ8 .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-u20QGdimJ8 .mbr-section-btn {
  margin: 0;
}
.cid-u20QGdimJ8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAnWYgXRv7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #1f0931;
}
.cid-uAnWYgXRv7 .container-fluid {
  padding: 0 3rem;
}
.cid-uAnWYgXRv7 .media-container-column {
  padding: 0 2rem;
}
.cid-uAnWYgXRv7 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #bdbe5a;
}
@media (max-width: 767px) {
  .cid-uAnWYgXRv7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAnWYgXRv7 .mbr-section-subtitle {
  color: #f3f3f3;
}
.cid-uAnWYhpHU2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAnWYhpHU2 .mbr-text {
  color: #ffffff;
}
.cid-uAnWYhpHU2 .mbr-section-subtitle {
  color: #cecf90;
  text-align: center;
}
.cid-uAnWYhpHU2 .mbr-section-title {
  color: #ffffff;
}
.cid-uAnWYhHPU2 {
  padding-top: 300px;
  padding-bottom: 255px;
  background-image: url("../../../assets/images/shield-2-700x525.jpg");
}
.cid-uAnWYhHPU2 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-uAnWYhHPU2 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uAnWYhHPU2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAnWYhHPU2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAnWYi5e0i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uAnWYi5e0i .container-fluid {
  padding: 0 3rem;
}
.cid-uAnWYi5e0i .media-container-column {
  padding: 0 2rem;
}
.cid-uAnWYi5e0i .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAnWYi5e0i .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAnWYimUeF.popup-builder {
  background-color: #ffffff;
}
.cid-uAnWYimUeF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAnWYimUeF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAnWYimUeF .modal-content,
.cid-uAnWYimUeF .modal-dialog {
  height: auto;
}
.cid-uAnWYimUeF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAnWYimUeF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAnWYimUeF .form-wrapper .mbr-form .form-group,
  .cid-uAnWYimUeF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAnWYimUeF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAnWYimUeF .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-uAnWYimUeF .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uAnWYimUeF .pt-0 {
  padding-top: 0 !important;
}
.cid-uAnWYimUeF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAnWYimUeF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAnWYimUeF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAnWYimUeF .modal-open {
  overflow: hidden;
}
.cid-uAnWYimUeF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAnWYimUeF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAnWYimUeF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAnWYimUeF .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-uAnWYimUeF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAnWYimUeF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAnWYimUeF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAnWYimUeF .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAnWYimUeF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAnWYimUeF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAnWYimUeF .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAnWYimUeF .modal-backdrop.show {
  opacity: .5;
}
.cid-uAnWYimUeF .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-uAnWYimUeF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnWYimUeF .modal-header {
    padding: 1rem;
  }
}
.cid-uAnWYimUeF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAnWYimUeF .modal-header .close svg {
  fill: #ffffff;
}
.cid-uAnWYimUeF .modal-header .close:hover {
  opacity: 1;
}
.cid-uAnWYimUeF .modal-header .close:focus {
  outline: none;
}
.cid-uAnWYimUeF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uAnWYimUeF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAnWYimUeF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnWYimUeF .modal-body {
    padding: 1rem;
  }
}
.cid-uAnWYimUeF .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-uAnWYimUeF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnWYimUeF .modal-footer {
    padding: 1rem;
  }
}
.cid-uAnWYimUeF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAnWYimUeF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAnWYimUeF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAnWYimUeF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAnWYimUeF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAnWYimUeF .modal-lg,
  .cid-uAnWYimUeF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAnWYimUeF .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAnWYimUeF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAnWYimUeF .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-uAnWYimUeF .form-group {
  margin-bottom: 1rem;
}
.cid-uAnWYimUeF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAnWYimUeF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAnWYimUeF .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-uAnWYimUeF .mbr-section-btn {
  margin: 0;
}
.cid-uAnWYimUeF .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAnWYiVR1q.popup-builder {
  background-color: #ffffff;
}
.cid-uAnWYiVR1q.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAnWYiVR1q.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAnWYiVR1q .modal-content,
.cid-uAnWYiVR1q .modal-dialog {
  height: auto;
}
.cid-uAnWYiVR1q .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAnWYiVR1q .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAnWYiVR1q .form-wrapper .mbr-form .form-group,
  .cid-uAnWYiVR1q .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAnWYiVR1q .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAnWYiVR1q .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-uAnWYiVR1q .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uAnWYiVR1q .pt-0 {
  padding-top: 0 !important;
}
.cid-uAnWYiVR1q .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAnWYiVR1q .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAnWYiVR1q .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAnWYiVR1q .modal-open {
  overflow: hidden;
}
.cid-uAnWYiVR1q .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAnWYiVR1q .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAnWYiVR1q .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAnWYiVR1q .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-uAnWYiVR1q .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAnWYiVR1q .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAnWYiVR1q .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAnWYiVR1q .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAnWYiVR1q .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAnWYiVR1q .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAnWYiVR1q .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAnWYiVR1q .modal-backdrop.show {
  opacity: .5;
}
.cid-uAnWYiVR1q .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-uAnWYiVR1q .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnWYiVR1q .modal-header {
    padding: 1rem;
  }
}
.cid-uAnWYiVR1q .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAnWYiVR1q .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uAnWYiVR1q .modal-header .close:hover {
  opacity: 1;
}
.cid-uAnWYiVR1q .modal-header .close:focus {
  outline: none;
}
.cid-uAnWYiVR1q .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uAnWYiVR1q .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAnWYiVR1q .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnWYiVR1q .modal-body {
    padding: 1rem;
  }
}
.cid-uAnWYiVR1q .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-uAnWYiVR1q .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAnWYiVR1q .modal-footer {
    padding: 1rem;
  }
}
.cid-uAnWYiVR1q .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAnWYiVR1q .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAnWYiVR1q .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAnWYiVR1q .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAnWYiVR1q .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAnWYiVR1q .modal-lg,
  .cid-uAnWYiVR1q .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAnWYiVR1q .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAnWYiVR1q .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAnWYiVR1q .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-uAnWYiVR1q .form-group {
  margin-bottom: 1rem;
}
.cid-uAnWYiVR1q .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAnWYiVR1q .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAnWYiVR1q .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-uAnWYiVR1q .mbr-section-btn {
  margin: 0;
}
.cid-uAnWYiVR1q .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEfZ66PI .dropdown-menu {
  padding: 12px 0;
}
.cid-uBvEfZ66PI .dropdown-item:hover,
.cid-uBvEfZ66PI .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uBvEfZ66PI .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uBvEfZ66PI .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uBvEfZ66PI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBvEfZ66PI .nav-link {
  position: relative;
}
.cid-uBvEfZ66PI .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uBvEfZ66PI .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBvEfZ66PI .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uBvEfZ66PI .dropdown-menu,
.cid-uBvEfZ66PI .navbar.opened {
  background: #1f0931 !important;
}
.cid-uBvEfZ66PI .nav-item:focus,
.cid-uBvEfZ66PI .nav-link:focus {
  outline: none;
}
.cid-uBvEfZ66PI .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uBvEfZ66PI .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uBvEfZ66PI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBvEfZ66PI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBvEfZ66PI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uBvEfZ66PI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uBvEfZ66PI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBvEfZ66PI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBvEfZ66PI .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uBvEfZ66PI .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uBvEfZ66PI .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uBvEfZ66PI .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uBvEfZ66PI .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uBvEfZ66PI .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uBvEfZ66PI .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uBvEfZ66PI .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uBvEfZ66PI .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uBvEfZ66PI .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uBvEfZ66PI .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uBvEfZ66PI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBvEfZ66PI .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uBvEfZ66PI .navbar.collapsed.opened {
  position: fixed;
}
.cid-uBvEfZ66PI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uBvEfZ66PI .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uBvEfZ66PI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uBvEfZ66PI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBvEfZ66PI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBvEfZ66PI .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: 55%;
}
.cid-uBvEfZ66PI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBvEfZ66PI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBvEfZ66PI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBvEfZ66PI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBvEfZ66PI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBvEfZ66PI .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uBvEfZ66PI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBvEfZ66PI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBvEfZ66PI .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: 41%;
  }
  .cid-uBvEfZ66PI .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uBvEfZ66PI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uBvEfZ66PI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBvEfZ66PI .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBvEfZ66PI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uBvEfZ66PI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBvEfZ66PI .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uBvEfZ66PI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uBvEfZ66PI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uBvEfZ66PI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uBvEfZ66PI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBvEfZ66PI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBvEfZ66PI .dropdown-item.active,
.cid-uBvEfZ66PI .dropdown-item:active {
  background-color: transparent;
}
.cid-uBvEfZ66PI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBvEfZ66PI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBvEfZ66PI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBvEfZ66PI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uBvEfZ66PI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBvEfZ66PI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBvEfZ66PI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uBvEfZ66PI .navbar-buttons {
  text-align: center;
}
.cid-uBvEfZ66PI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uBvEfZ66PI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uBvEfZ66PI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBvEfZ66PI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBvEfZ66PI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBvEfZ66PI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBvEfZ66PI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBvEfZ66PI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBvEfZ66PI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBvEfZ66PI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBvEfZ66PI .navbar-dropdown {
  position: fixed;
}
.cid-uBvEfZ66PI a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uBvEfZ66PI .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uBvEfZ66PI .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uBvEfZ66PI .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBvEfZ66PI .navbar {
    height: 77px;
  }
  .cid-uBvEfZ66PI .navbar.opened {
    height: auto;
  }
  .cid-uBvEfZ66PI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBvEfZPPXS {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uBvEfZPPXS .container-fluid {
  padding: 0 3rem;
}
.cid-uBvEfZPPXS .media-container-column {
  padding: 0 2rem;
}
.cid-uBvEfZPPXS .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uBvEfZPPXS .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uBvEg0aEUt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-uBvEg0aEUt .mbr-section-title {
  color: #404040;
}
.cid-uBvEg0aEUt .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uBvEg0aEUt .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uBvEg0aEUt .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uBvEg0aEUt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBvEg0aEUt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBvEg0aEUt .mbr-section-title,
.cid-uBvEg0aEUt .icon-wrap,
.cid-uBvEg0aEUt .mbr-section-btn {
  color: #ffffff;
}
.cid-uBvEg0xI5X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #260641;
}
.cid-uBvEg0xI5X .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uBvEg0xI5X img {
    width: 90%;
  }
}
.cid-uBvEg0xI5X .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uBvEg0xI5X .items {
  margin-bottom: 0;
}
.cid-uBvEg0xI5X .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uBvEg0xI5X .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uBvEg0xI5X .soc-item:hover span {
  color: #38346b !important;
}
.cid-uBvEg0xI5X .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uBvEg0xI5X .social-list {
    justify-content: center;
  }
}
.cid-uBvEg0xI5X .card-title {
  text-align: center;
  color: #cecf90;
}
.cid-uBwhCTScF0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uBwhCTScF0 .container-fluid {
  padding: 0 3rem;
}
.cid-uBwhCTScF0 .media-container-column {
  padding: 0 2rem;
}
.cid-uBwhCTScF0 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #848abd;
}
@media (max-width: 767px) {
  .cid-uBwhCTScF0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uBvMdprMjv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBvMdprMjv [class^='socicon-']:before,
.cid-uBvMdprMjv [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-uBvMdprMjv .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #5849aa;
  transition: all 0.3s;
  border-color: #5849aa;
}
.cid-uBvMdprMjv .btn-social:hover {
  background: #5849aa;
}
.cid-uBvMdprMjv .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-uBvMdprMjv .btn-social:hover span {
  color: #ffffff !important;
}
.cid-uBvMdprMjv .mbr-section-title {
  color: #2e6b75;
}
.cid-uBvMdprMjv .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-uBvMdprMjv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBvMdprMjv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBwhQSxkOs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uBwhQSxkOs .container-fluid {
  padding: 0 3rem;
}
.cid-uBwhQSxkOs .media-container-column {
  padding: 0 2rem;
}
.cid-uBwhQSxkOs .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #848abd;
}
@media (max-width: 767px) {
  .cid-uBwhQSxkOs .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uBvPs0MKIJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBvPs0MKIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBvPs0MKIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBvPs0MKIJ .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBvPs0MKIJ .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uBvPs0MKIJ .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uBvPs0MKIJ .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBvPs0MKIJ .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBvPs0MKIJ .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #38346b;
}
@media (max-width: 992px) {
  .cid-uBvPs0MKIJ .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #b469fb;
}
@media (max-width: 992px) {
  .cid-uBvPs0MKIJ .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-uBvPs0MKIJ .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBvPs0MKIJ .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uBvPs0MKIJ .mbr-section-title {
  color: #404349;
}
.cid-uBvPs0MKIJ .panel-title-edit {
  color: #ffffff;
}
.cid-uBvPs0MKIJ .panel-text {
  color: #404349;
}
.cid-uBvPs0MKIJ .panel-text,
.cid-uBvPs0MKIJ .panel-body {
  color: #ffffff;
  text-align: center;
}
.cid-uBwiHcyERG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #483769;
}
.cid-uBwiHcyERG .mbr-text,
.cid-uBwiHcyERG .ornament {
  color: #ffffff;
}
.cid-uBvZ9dMdNJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBvZ9dMdNJ .item:focus,
.cid-uBvZ9dMdNJ span:focus {
  outline: none;
}
.cid-uBvZ9dMdNJ .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uBvZ9dMdNJ .item {
  font-weight: 700;
  color: #e6eaf1;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uBvZ9dMdNJ .item {
    min-height: 45px;
  }
}
.cid-uBvEg1VlUn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uBvEg1VlUn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBvEg1VlUn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBvEg1VlUn .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBvEg1VlUn .content-wrapper .mbr-section-title span {
  color: #5ca7db;
}
.cid-uBvEg1VlUn .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uBvEg1VlUn .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBvEg1VlUn .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #b97ecd, #292739);
}
@media (max-width: 992px) {
  .cid-uBvEg1VlUn .border-wrap {
    margin-top: 32px;
  }
}
.cid-uBvEg1VlUn .mbr-section-title {
  color: #ffffff;
}
.cid-uBvEg1VlUn .mbr-text,
.cid-uBvEg1VlUn .text-wrapper {
  color: #e6eaf1;
  text-align: center;
}
.cid-uBvEg1VlUn .mbr-section-title,
.cid-uBvEg1VlUn .mbr-section-btn {
  text-align: center;
  color: #e6eaf1;
}
.cid-uBvEg1rw3B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uBvEg1rw3B .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uBvEg1rw3B img {
    width: 90%;
  }
}
.cid-uBvEg1rw3B .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uBvEg1rw3B .items {
  margin-bottom: 0;
}
.cid-uBvEg1rw3B .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uBvEg1rw3B .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uBvEg1rw3B .soc-item:hover span {
  color: #38346b !important;
}
.cid-uBvEg1rw3B .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uBvEg1rw3B .social-list {
    justify-content: center;
  }
}
.cid-uBvEg1rw3B .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uBvEg2mR1Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uBvEg2mR1Q .container-fluid {
  padding: 0 3rem;
}
.cid-uBvEg2mR1Q .media-container-column {
  padding: 0 2rem;
}
.cid-uBvEg2mR1Q .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uBvEg2mR1Q .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uBvEg2Kj20.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg2Kj20.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg2Kj20.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg2Kj20 .modal-content,
.cid-uBvEg2Kj20 .modal-dialog {
  height: auto;
}
.cid-uBvEg2Kj20 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg2Kj20 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg2Kj20 .form-wrapper .mbr-form .form-group,
  .cid-uBvEg2Kj20 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg2Kj20 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg2Kj20 .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-uBvEg2Kj20 .mbr-text {
  text-align: center;
}
.cid-uBvEg2Kj20 .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg2Kj20 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg2Kj20 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg2Kj20 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg2Kj20 .modal-open {
  overflow: hidden;
}
.cid-uBvEg2Kj20 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg2Kj20 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg2Kj20 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg2Kj20 .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-uBvEg2Kj20 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg2Kj20 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg2Kj20 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg2Kj20 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg2Kj20 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg2Kj20 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg2Kj20 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg2Kj20 .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg2Kj20 .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-uBvEg2Kj20 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg2Kj20 .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg2Kj20 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg2Kj20 .modal-header .close svg {
  fill: #611750;
}
.cid-uBvEg2Kj20 .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg2Kj20 .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg2Kj20 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uBvEg2Kj20 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg2Kj20 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg2Kj20 .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg2Kj20 .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-uBvEg2Kj20 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg2Kj20 .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg2Kj20 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg2Kj20 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg2Kj20 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg2Kj20 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg2Kj20 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg2Kj20 .modal-lg,
  .cid-uBvEg2Kj20 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg2Kj20 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg2Kj20 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg2Kj20 .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-uBvEg2Kj20 .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg2Kj20 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg2Kj20 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg2Kj20 .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-uBvEg2Kj20 .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg2Kj20 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEg3jBDs.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg3jBDs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg3jBDs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg3jBDs .modal-content,
.cid-uBvEg3jBDs .modal-dialog {
  height: auto;
}
.cid-uBvEg3jBDs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg3jBDs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg3jBDs .form-wrapper .mbr-form .form-group,
  .cid-uBvEg3jBDs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg3jBDs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg3jBDs .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-uBvEg3jBDs .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uBvEg3jBDs .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg3jBDs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg3jBDs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg3jBDs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg3jBDs .modal-open {
  overflow: hidden;
}
.cid-uBvEg3jBDs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg3jBDs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg3jBDs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg3jBDs .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-uBvEg3jBDs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg3jBDs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg3jBDs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg3jBDs .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg3jBDs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg3jBDs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg3jBDs .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg3jBDs .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg3jBDs .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-uBvEg3jBDs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg3jBDs .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg3jBDs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg3jBDs .modal-header .close svg {
  fill: #260641;
}
.cid-uBvEg3jBDs .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg3jBDs .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg3jBDs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBvEg3jBDs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg3jBDs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg3jBDs .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg3jBDs .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-uBvEg3jBDs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg3jBDs .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg3jBDs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg3jBDs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg3jBDs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg3jBDs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg3jBDs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg3jBDs .modal-lg,
  .cid-uBvEg3jBDs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg3jBDs .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg3jBDs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg3jBDs .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-uBvEg3jBDs .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg3jBDs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg3jBDs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg3jBDs .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-uBvEg3jBDs .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg3jBDs .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEg3TQ75.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg3TQ75.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg3TQ75.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg3TQ75 .modal-content,
.cid-uBvEg3TQ75 .modal-dialog {
  height: auto;
}
.cid-uBvEg3TQ75 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg3TQ75 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg3TQ75 .form-wrapper .mbr-form .form-group,
  .cid-uBvEg3TQ75 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg3TQ75 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg3TQ75 .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-uBvEg3TQ75 .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uBvEg3TQ75 .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg3TQ75 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg3TQ75 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg3TQ75 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg3TQ75 .modal-open {
  overflow: hidden;
}
.cid-uBvEg3TQ75 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg3TQ75 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg3TQ75 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg3TQ75 .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-uBvEg3TQ75 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg3TQ75 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg3TQ75 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg3TQ75 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg3TQ75 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg3TQ75 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg3TQ75 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg3TQ75 .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg3TQ75 .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-uBvEg3TQ75 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg3TQ75 .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg3TQ75 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg3TQ75 .modal-header .close svg {
  fill: #260641;
}
.cid-uBvEg3TQ75 .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg3TQ75 .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg3TQ75 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBvEg3TQ75 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg3TQ75 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg3TQ75 .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg3TQ75 .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-uBvEg3TQ75 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg3TQ75 .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg3TQ75 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg3TQ75 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg3TQ75 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg3TQ75 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg3TQ75 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg3TQ75 .modal-lg,
  .cid-uBvEg3TQ75 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg3TQ75 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg3TQ75 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg3TQ75 .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-uBvEg3TQ75 .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg3TQ75 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg3TQ75 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg3TQ75 .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-uBvEg3TQ75 .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg3TQ75 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEg4tFBU.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg4tFBU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg4tFBU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg4tFBU .modal-content,
.cid-uBvEg4tFBU .modal-dialog {
  height: auto;
}
.cid-uBvEg4tFBU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg4tFBU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg4tFBU .form-wrapper .mbr-form .form-group,
  .cid-uBvEg4tFBU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg4tFBU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg4tFBU .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-uBvEg4tFBU .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uBvEg4tFBU .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg4tFBU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg4tFBU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg4tFBU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg4tFBU .modal-open {
  overflow: hidden;
}
.cid-uBvEg4tFBU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg4tFBU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg4tFBU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg4tFBU .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-uBvEg4tFBU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg4tFBU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg4tFBU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg4tFBU .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg4tFBU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg4tFBU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg4tFBU .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg4tFBU .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg4tFBU .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-uBvEg4tFBU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg4tFBU .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg4tFBU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg4tFBU .modal-header .close svg {
  fill: #260641;
}
.cid-uBvEg4tFBU .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg4tFBU .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg4tFBU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBvEg4tFBU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg4tFBU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg4tFBU .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg4tFBU .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-uBvEg4tFBU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg4tFBU .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg4tFBU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg4tFBU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg4tFBU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg4tFBU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg4tFBU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg4tFBU .modal-lg,
  .cid-uBvEg4tFBU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg4tFBU .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg4tFBU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg4tFBU .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-uBvEg4tFBU .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg4tFBU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg4tFBU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg4tFBU .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-uBvEg4tFBU .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg4tFBU .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEg51hxB.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg51hxB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg51hxB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg51hxB .modal-content,
.cid-uBvEg51hxB .modal-dialog {
  height: auto;
}
.cid-uBvEg51hxB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg51hxB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg51hxB .form-wrapper .mbr-form .form-group,
  .cid-uBvEg51hxB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg51hxB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg51hxB .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-uBvEg51hxB .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uBvEg51hxB .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg51hxB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg51hxB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg51hxB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg51hxB .modal-open {
  overflow: hidden;
}
.cid-uBvEg51hxB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg51hxB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg51hxB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg51hxB .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-uBvEg51hxB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg51hxB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg51hxB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg51hxB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg51hxB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg51hxB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg51hxB .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg51hxB .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg51hxB .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-uBvEg51hxB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg51hxB .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg51hxB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg51hxB .modal-header .close svg {
  fill: #260641;
}
.cid-uBvEg51hxB .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg51hxB .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg51hxB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBvEg51hxB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg51hxB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg51hxB .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg51hxB .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-uBvEg51hxB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg51hxB .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg51hxB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg51hxB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg51hxB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg51hxB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg51hxB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg51hxB .modal-lg,
  .cid-uBvEg51hxB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg51hxB .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg51hxB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg51hxB .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-uBvEg51hxB .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg51hxB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg51hxB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg51hxB .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-uBvEg51hxB .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg51hxB .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEg5EzYT.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg5EzYT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg5EzYT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg5EzYT .modal-content,
.cid-uBvEg5EzYT .modal-dialog {
  height: auto;
}
.cid-uBvEg5EzYT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg5EzYT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg5EzYT .form-wrapper .mbr-form .form-group,
  .cid-uBvEg5EzYT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg5EzYT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg5EzYT .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-uBvEg5EzYT .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uBvEg5EzYT .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg5EzYT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg5EzYT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg5EzYT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg5EzYT .modal-open {
  overflow: hidden;
}
.cid-uBvEg5EzYT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg5EzYT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg5EzYT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg5EzYT .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-uBvEg5EzYT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg5EzYT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg5EzYT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg5EzYT .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg5EzYT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg5EzYT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg5EzYT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg5EzYT .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg5EzYT .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-uBvEg5EzYT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg5EzYT .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg5EzYT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg5EzYT .modal-header .close svg {
  fill: #5849aa;
}
.cid-uBvEg5EzYT .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg5EzYT .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg5EzYT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uBvEg5EzYT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg5EzYT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg5EzYT .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg5EzYT .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-uBvEg5EzYT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg5EzYT .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg5EzYT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg5EzYT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg5EzYT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg5EzYT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg5EzYT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg5EzYT .modal-lg,
  .cid-uBvEg5EzYT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg5EzYT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg5EzYT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg5EzYT .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-uBvEg5EzYT .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg5EzYT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg5EzYT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg5EzYT .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-uBvEg5EzYT .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg5EzYT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEg6eLuS.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg6eLuS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg6eLuS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg6eLuS .modal-content,
.cid-uBvEg6eLuS .modal-dialog {
  height: auto;
}
.cid-uBvEg6eLuS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg6eLuS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg6eLuS .form-wrapper .mbr-form .form-group,
  .cid-uBvEg6eLuS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg6eLuS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg6eLuS .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-uBvEg6eLuS .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uBvEg6eLuS .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg6eLuS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg6eLuS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg6eLuS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg6eLuS .modal-open {
  overflow: hidden;
}
.cid-uBvEg6eLuS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg6eLuS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg6eLuS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg6eLuS .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-uBvEg6eLuS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg6eLuS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg6eLuS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg6eLuS .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg6eLuS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg6eLuS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg6eLuS .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg6eLuS .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg6eLuS .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-uBvEg6eLuS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg6eLuS .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg6eLuS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg6eLuS .modal-header .close svg {
  fill: #611750;
}
.cid-uBvEg6eLuS .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg6eLuS .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg6eLuS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBvEg6eLuS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg6eLuS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg6eLuS .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg6eLuS .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-uBvEg6eLuS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg6eLuS .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg6eLuS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg6eLuS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg6eLuS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg6eLuS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg6eLuS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg6eLuS .modal-lg,
  .cid-uBvEg6eLuS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg6eLuS .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg6eLuS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg6eLuS .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-uBvEg6eLuS .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg6eLuS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg6eLuS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg6eLuS .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-uBvEg6eLuS .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg6eLuS .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEg6TVaP.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg6TVaP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg6TVaP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg6TVaP .modal-content,
.cid-uBvEg6TVaP .modal-dialog {
  height: auto;
}
.cid-uBvEg6TVaP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg6TVaP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg6TVaP .form-wrapper .mbr-form .form-group,
  .cid-uBvEg6TVaP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg6TVaP .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg6TVaP .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-uBvEg6TVaP .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uBvEg6TVaP .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg6TVaP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg6TVaP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg6TVaP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg6TVaP .modal-open {
  overflow: hidden;
}
.cid-uBvEg6TVaP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg6TVaP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg6TVaP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg6TVaP .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-uBvEg6TVaP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg6TVaP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg6TVaP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg6TVaP .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg6TVaP .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg6TVaP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg6TVaP .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg6TVaP .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg6TVaP .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-uBvEg6TVaP .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg6TVaP .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg6TVaP .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg6TVaP .modal-header .close svg {
  fill: #59307c;
}
.cid-uBvEg6TVaP .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg6TVaP .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg6TVaP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uBvEg6TVaP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg6TVaP .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg6TVaP .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg6TVaP .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-uBvEg6TVaP .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg6TVaP .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg6TVaP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg6TVaP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg6TVaP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg6TVaP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg6TVaP .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg6TVaP .modal-lg,
  .cid-uBvEg6TVaP .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg6TVaP .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg6TVaP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg6TVaP .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-uBvEg6TVaP .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg6TVaP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg6TVaP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg6TVaP .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-uBvEg6TVaP .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg6TVaP .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEg7A8mp.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg7A8mp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg7A8mp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg7A8mp .modal-content,
.cid-uBvEg7A8mp .modal-dialog {
  height: auto;
}
.cid-uBvEg7A8mp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg7A8mp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg7A8mp .form-wrapper .mbr-form .form-group,
  .cid-uBvEg7A8mp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg7A8mp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg7A8mp .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-uBvEg7A8mp .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uBvEg7A8mp .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg7A8mp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg7A8mp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg7A8mp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg7A8mp .modal-open {
  overflow: hidden;
}
.cid-uBvEg7A8mp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg7A8mp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg7A8mp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg7A8mp .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-uBvEg7A8mp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg7A8mp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg7A8mp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg7A8mp .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg7A8mp .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg7A8mp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg7A8mp .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg7A8mp .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg7A8mp .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-uBvEg7A8mp .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg7A8mp .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg7A8mp .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg7A8mp .modal-header .close svg {
  fill: #ffffff;
}
.cid-uBvEg7A8mp .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg7A8mp .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg7A8mp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uBvEg7A8mp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg7A8mp .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg7A8mp .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg7A8mp .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-uBvEg7A8mp .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg7A8mp .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg7A8mp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg7A8mp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg7A8mp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg7A8mp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg7A8mp .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg7A8mp .modal-lg,
  .cid-uBvEg7A8mp .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg7A8mp .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg7A8mp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg7A8mp .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-uBvEg7A8mp .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg7A8mp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg7A8mp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg7A8mp .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-uBvEg7A8mp .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg7A8mp .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBvEg8cN3W.popup-builder {
  background-color: #ffffff;
}
.cid-uBvEg8cN3W.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBvEg8cN3W.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBvEg8cN3W .modal-content,
.cid-uBvEg8cN3W .modal-dialog {
  height: auto;
}
.cid-uBvEg8cN3W .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBvEg8cN3W .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBvEg8cN3W .form-wrapper .mbr-form .form-group,
  .cid-uBvEg8cN3W .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBvEg8cN3W .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBvEg8cN3W .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-uBvEg8cN3W .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uBvEg8cN3W .pt-0 {
  padding-top: 0 !important;
}
.cid-uBvEg8cN3W .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBvEg8cN3W .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBvEg8cN3W .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBvEg8cN3W .modal-open {
  overflow: hidden;
}
.cid-uBvEg8cN3W .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBvEg8cN3W .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBvEg8cN3W .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBvEg8cN3W .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-uBvEg8cN3W .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBvEg8cN3W .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBvEg8cN3W .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBvEg8cN3W .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBvEg8cN3W .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBvEg8cN3W .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBvEg8cN3W .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBvEg8cN3W .modal-backdrop.show {
  opacity: .5;
}
.cid-uBvEg8cN3W .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-uBvEg8cN3W .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg8cN3W .modal-header {
    padding: 1rem;
  }
}
.cid-uBvEg8cN3W .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBvEg8cN3W .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uBvEg8cN3W .modal-header .close:hover {
  opacity: 1;
}
.cid-uBvEg8cN3W .modal-header .close:focus {
  outline: none;
}
.cid-uBvEg8cN3W .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uBvEg8cN3W .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBvEg8cN3W .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg8cN3W .modal-body {
    padding: 1rem;
  }
}
.cid-uBvEg8cN3W .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-uBvEg8cN3W .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBvEg8cN3W .modal-footer {
    padding: 1rem;
  }
}
.cid-uBvEg8cN3W .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBvEg8cN3W .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBvEg8cN3W .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBvEg8cN3W .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBvEg8cN3W .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBvEg8cN3W .modal-lg,
  .cid-uBvEg8cN3W .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBvEg8cN3W .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBvEg8cN3W .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBvEg8cN3W .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-uBvEg8cN3W .form-group {
  margin-bottom: 1rem;
}
.cid-uBvEg8cN3W .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBvEg8cN3W .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBvEg8cN3W .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-uBvEg8cN3W .mbr-section-btn {
  margin: 0;
}
.cid-uBvEg8cN3W .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMj9ZU.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMj9ZU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMj9ZU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMj9ZU .modal-content,
.cid-uO9WTMj9ZU .modal-dialog {
  height: auto;
}
.cid-uO9WTMj9ZU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMj9ZU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMj9ZU .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMj9ZU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMj9ZU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMj9ZU .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-uO9WTMj9ZU .mbr-text {
  text-align: center;
}
.cid-uO9WTMj9ZU .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMj9ZU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMj9ZU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMj9ZU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMj9ZU .modal-open {
  overflow: hidden;
}
.cid-uO9WTMj9ZU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMj9ZU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMj9ZU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMj9ZU .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-uO9WTMj9ZU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMj9ZU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMj9ZU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMj9ZU .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMj9ZU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMj9ZU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMj9ZU .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMj9ZU .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMj9ZU .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-uO9WTMj9ZU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMj9ZU .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMj9ZU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMj9ZU .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMj9ZU .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMj9ZU .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMj9ZU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMj9ZU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMj9ZU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMj9ZU .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMj9ZU .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-uO9WTMj9ZU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMj9ZU .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMj9ZU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMj9ZU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMj9ZU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMj9ZU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMj9ZU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMj9ZU .modal-lg,
  .cid-uO9WTMj9ZU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMj9ZU .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMj9ZU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMj9ZU .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-uO9WTMj9ZU .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMj9ZU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMj9ZU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMj9ZU .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-uO9WTMj9ZU .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMj9ZU .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBwEtxdxJk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uBwEtxdxJk .container-fluid {
  padding: 0 3rem;
}
.cid-uBwEtxdxJk .media-container-column {
  padding: 0 2rem;
}
.cid-uBwEtxdxJk .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uBwEtxdxJk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uBw3KMUHy8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uBw3KMUHy8 .container-fluid {
  padding: 0 3rem;
}
.cid-uBw3KMUHy8 .media-container-column {
  padding: 0 2rem;
}
.cid-uBw3KMUHy8 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uBw3KMUHy8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uBw3KNsoaN.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KNsoaN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KNsoaN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KNsoaN .modal-content,
.cid-uBw3KNsoaN .modal-dialog {
  height: auto;
}
.cid-uBw3KNsoaN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KNsoaN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KNsoaN .form-wrapper .mbr-form .form-group,
  .cid-uBw3KNsoaN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KNsoaN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KNsoaN .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-uBw3KNsoaN .mbr-text {
  text-align: center;
}
.cid-uBw3KNsoaN .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KNsoaN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KNsoaN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KNsoaN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KNsoaN .modal-open {
  overflow: hidden;
}
.cid-uBw3KNsoaN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KNsoaN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KNsoaN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KNsoaN .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-uBw3KNsoaN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KNsoaN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KNsoaN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KNsoaN .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KNsoaN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KNsoaN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KNsoaN .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KNsoaN .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KNsoaN .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-uBw3KNsoaN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KNsoaN .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KNsoaN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KNsoaN .modal-header .close svg {
  fill: #611750;
}
.cid-uBw3KNsoaN .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KNsoaN .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KNsoaN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uBw3KNsoaN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KNsoaN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KNsoaN .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KNsoaN .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-uBw3KNsoaN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KNsoaN .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KNsoaN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KNsoaN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KNsoaN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KNsoaN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KNsoaN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KNsoaN .modal-lg,
  .cid-uBw3KNsoaN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KNsoaN .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KNsoaN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KNsoaN .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-uBw3KNsoaN .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KNsoaN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KNsoaN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KNsoaN .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-uBw3KNsoaN .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KNsoaN .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KOh9oZ.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KOh9oZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KOh9oZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KOh9oZ .modal-content,
.cid-uBw3KOh9oZ .modal-dialog {
  height: auto;
}
.cid-uBw3KOh9oZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KOh9oZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KOh9oZ .form-wrapper .mbr-form .form-group,
  .cid-uBw3KOh9oZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KOh9oZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KOh9oZ .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-uBw3KOh9oZ .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uBw3KOh9oZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KOh9oZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KOh9oZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KOh9oZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KOh9oZ .modal-open {
  overflow: hidden;
}
.cid-uBw3KOh9oZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KOh9oZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KOh9oZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KOh9oZ .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-uBw3KOh9oZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KOh9oZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KOh9oZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KOh9oZ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KOh9oZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KOh9oZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KOh9oZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KOh9oZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KOh9oZ .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-uBw3KOh9oZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KOh9oZ .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KOh9oZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KOh9oZ .modal-header .close svg {
  fill: #260641;
}
.cid-uBw3KOh9oZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KOh9oZ .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KOh9oZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBw3KOh9oZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KOh9oZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KOh9oZ .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KOh9oZ .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-uBw3KOh9oZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KOh9oZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KOh9oZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KOh9oZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KOh9oZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KOh9oZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KOh9oZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KOh9oZ .modal-lg,
  .cid-uBw3KOh9oZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KOh9oZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KOh9oZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KOh9oZ .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-uBw3KOh9oZ .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KOh9oZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KOh9oZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KOh9oZ .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-uBw3KOh9oZ .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KOh9oZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KP8vgZ.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KP8vgZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KP8vgZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KP8vgZ .modal-content,
.cid-uBw3KP8vgZ .modal-dialog {
  height: auto;
}
.cid-uBw3KP8vgZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KP8vgZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KP8vgZ .form-wrapper .mbr-form .form-group,
  .cid-uBw3KP8vgZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KP8vgZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KP8vgZ .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-uBw3KP8vgZ .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uBw3KP8vgZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KP8vgZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KP8vgZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KP8vgZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KP8vgZ .modal-open {
  overflow: hidden;
}
.cid-uBw3KP8vgZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KP8vgZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KP8vgZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KP8vgZ .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-uBw3KP8vgZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KP8vgZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KP8vgZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KP8vgZ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KP8vgZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KP8vgZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KP8vgZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KP8vgZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KP8vgZ .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-uBw3KP8vgZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KP8vgZ .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KP8vgZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KP8vgZ .modal-header .close svg {
  fill: #260641;
}
.cid-uBw3KP8vgZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KP8vgZ .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KP8vgZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBw3KP8vgZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KP8vgZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KP8vgZ .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KP8vgZ .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-uBw3KP8vgZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KP8vgZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KP8vgZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KP8vgZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KP8vgZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KP8vgZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KP8vgZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KP8vgZ .modal-lg,
  .cid-uBw3KP8vgZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KP8vgZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KP8vgZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KP8vgZ .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-uBw3KP8vgZ .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KP8vgZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KP8vgZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KP8vgZ .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-uBw3KP8vgZ .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KP8vgZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KPTuIN.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KPTuIN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KPTuIN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KPTuIN .modal-content,
.cid-uBw3KPTuIN .modal-dialog {
  height: auto;
}
.cid-uBw3KPTuIN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KPTuIN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KPTuIN .form-wrapper .mbr-form .form-group,
  .cid-uBw3KPTuIN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KPTuIN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KPTuIN .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-uBw3KPTuIN .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uBw3KPTuIN .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KPTuIN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KPTuIN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KPTuIN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KPTuIN .modal-open {
  overflow: hidden;
}
.cid-uBw3KPTuIN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KPTuIN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KPTuIN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KPTuIN .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-uBw3KPTuIN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KPTuIN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KPTuIN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KPTuIN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KPTuIN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KPTuIN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KPTuIN .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KPTuIN .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KPTuIN .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-uBw3KPTuIN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KPTuIN .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KPTuIN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KPTuIN .modal-header .close svg {
  fill: #260641;
}
.cid-uBw3KPTuIN .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KPTuIN .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KPTuIN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBw3KPTuIN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KPTuIN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KPTuIN .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KPTuIN .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-uBw3KPTuIN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KPTuIN .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KPTuIN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KPTuIN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KPTuIN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KPTuIN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KPTuIN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KPTuIN .modal-lg,
  .cid-uBw3KPTuIN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KPTuIN .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KPTuIN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KPTuIN .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-uBw3KPTuIN .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KPTuIN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KPTuIN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KPTuIN .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-uBw3KPTuIN .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KPTuIN .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KQJnuo.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KQJnuo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KQJnuo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KQJnuo .modal-content,
.cid-uBw3KQJnuo .modal-dialog {
  height: auto;
}
.cid-uBw3KQJnuo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KQJnuo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KQJnuo .form-wrapper .mbr-form .form-group,
  .cid-uBw3KQJnuo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KQJnuo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KQJnuo .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-uBw3KQJnuo .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uBw3KQJnuo .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KQJnuo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KQJnuo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KQJnuo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KQJnuo .modal-open {
  overflow: hidden;
}
.cid-uBw3KQJnuo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KQJnuo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KQJnuo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KQJnuo .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-uBw3KQJnuo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KQJnuo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KQJnuo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KQJnuo .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KQJnuo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KQJnuo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KQJnuo .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KQJnuo .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KQJnuo .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-uBw3KQJnuo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KQJnuo .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KQJnuo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KQJnuo .modal-header .close svg {
  fill: #260641;
}
.cid-uBw3KQJnuo .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KQJnuo .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KQJnuo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBw3KQJnuo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KQJnuo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KQJnuo .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KQJnuo .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-uBw3KQJnuo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KQJnuo .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KQJnuo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KQJnuo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KQJnuo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KQJnuo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KQJnuo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KQJnuo .modal-lg,
  .cid-uBw3KQJnuo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KQJnuo .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KQJnuo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KQJnuo .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-uBw3KQJnuo .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KQJnuo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KQJnuo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KQJnuo .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-uBw3KQJnuo .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KQJnuo .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KRvtkV.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KRvtkV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KRvtkV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KRvtkV .modal-content,
.cid-uBw3KRvtkV .modal-dialog {
  height: auto;
}
.cid-uBw3KRvtkV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KRvtkV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KRvtkV .form-wrapper .mbr-form .form-group,
  .cid-uBw3KRvtkV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KRvtkV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KRvtkV .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-uBw3KRvtkV .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uBw3KRvtkV .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KRvtkV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KRvtkV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KRvtkV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KRvtkV .modal-open {
  overflow: hidden;
}
.cid-uBw3KRvtkV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KRvtkV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KRvtkV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KRvtkV .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-uBw3KRvtkV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KRvtkV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KRvtkV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KRvtkV .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KRvtkV .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KRvtkV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KRvtkV .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KRvtkV .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KRvtkV .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-uBw3KRvtkV .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KRvtkV .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KRvtkV .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KRvtkV .modal-header .close svg {
  fill: #5849aa;
}
.cid-uBw3KRvtkV .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KRvtkV .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KRvtkV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uBw3KRvtkV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KRvtkV .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KRvtkV .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KRvtkV .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-uBw3KRvtkV .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KRvtkV .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KRvtkV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KRvtkV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KRvtkV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KRvtkV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KRvtkV .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KRvtkV .modal-lg,
  .cid-uBw3KRvtkV .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KRvtkV .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KRvtkV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KRvtkV .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-uBw3KRvtkV .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KRvtkV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KRvtkV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KRvtkV .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-uBw3KRvtkV .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KRvtkV .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KSjVbr.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KSjVbr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KSjVbr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KSjVbr .modal-content,
.cid-uBw3KSjVbr .modal-dialog {
  height: auto;
}
.cid-uBw3KSjVbr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KSjVbr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KSjVbr .form-wrapper .mbr-form .form-group,
  .cid-uBw3KSjVbr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KSjVbr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KSjVbr .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-uBw3KSjVbr .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uBw3KSjVbr .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KSjVbr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KSjVbr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KSjVbr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KSjVbr .modal-open {
  overflow: hidden;
}
.cid-uBw3KSjVbr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KSjVbr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KSjVbr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KSjVbr .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-uBw3KSjVbr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KSjVbr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KSjVbr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KSjVbr .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KSjVbr .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KSjVbr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KSjVbr .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KSjVbr .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KSjVbr .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-uBw3KSjVbr .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KSjVbr .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KSjVbr .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KSjVbr .modal-header .close svg {
  fill: #611750;
}
.cid-uBw3KSjVbr .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KSjVbr .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KSjVbr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uBw3KSjVbr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KSjVbr .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KSjVbr .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KSjVbr .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-uBw3KSjVbr .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KSjVbr .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KSjVbr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KSjVbr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KSjVbr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KSjVbr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KSjVbr .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KSjVbr .modal-lg,
  .cid-uBw3KSjVbr .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KSjVbr .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KSjVbr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KSjVbr .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-uBw3KSjVbr .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KSjVbr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KSjVbr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KSjVbr .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-uBw3KSjVbr .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KSjVbr .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KTc28m.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KTc28m.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KTc28m.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KTc28m .modal-content,
.cid-uBw3KTc28m .modal-dialog {
  height: auto;
}
.cid-uBw3KTc28m .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KTc28m .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KTc28m .form-wrapper .mbr-form .form-group,
  .cid-uBw3KTc28m .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KTc28m .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KTc28m .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-uBw3KTc28m .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uBw3KTc28m .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KTc28m .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KTc28m .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KTc28m .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KTc28m .modal-open {
  overflow: hidden;
}
.cid-uBw3KTc28m .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KTc28m .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KTc28m .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KTc28m .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-uBw3KTc28m .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KTc28m .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KTc28m .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KTc28m .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KTc28m .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KTc28m .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KTc28m .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KTc28m .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KTc28m .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-uBw3KTc28m .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KTc28m .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KTc28m .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KTc28m .modal-header .close svg {
  fill: #59307c;
}
.cid-uBw3KTc28m .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KTc28m .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KTc28m .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uBw3KTc28m .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KTc28m .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KTc28m .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KTc28m .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-uBw3KTc28m .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KTc28m .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KTc28m .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KTc28m .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KTc28m .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KTc28m .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KTc28m .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KTc28m .modal-lg,
  .cid-uBw3KTc28m .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KTc28m .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KTc28m .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KTc28m .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-uBw3KTc28m .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KTc28m .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KTc28m .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KTc28m .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-uBw3KTc28m .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KTc28m .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KU3Noa.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KU3Noa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KU3Noa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KU3Noa .modal-content,
.cid-uBw3KU3Noa .modal-dialog {
  height: auto;
}
.cid-uBw3KU3Noa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KU3Noa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KU3Noa .form-wrapper .mbr-form .form-group,
  .cid-uBw3KU3Noa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KU3Noa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KU3Noa .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-uBw3KU3Noa .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uBw3KU3Noa .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KU3Noa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KU3Noa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KU3Noa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KU3Noa .modal-open {
  overflow: hidden;
}
.cid-uBw3KU3Noa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KU3Noa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KU3Noa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KU3Noa .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-uBw3KU3Noa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KU3Noa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KU3Noa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KU3Noa .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KU3Noa .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KU3Noa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KU3Noa .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KU3Noa .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KU3Noa .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-uBw3KU3Noa .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KU3Noa .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KU3Noa .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KU3Noa .modal-header .close svg {
  fill: #ffffff;
}
.cid-uBw3KU3Noa .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KU3Noa .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KU3Noa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uBw3KU3Noa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KU3Noa .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KU3Noa .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KU3Noa .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-uBw3KU3Noa .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KU3Noa .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KU3Noa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KU3Noa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KU3Noa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KU3Noa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KU3Noa .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KU3Noa .modal-lg,
  .cid-uBw3KU3Noa .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KU3Noa .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KU3Noa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KU3Noa .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-uBw3KU3Noa .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KU3Noa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KU3Noa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KU3Noa .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-uBw3KU3Noa .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KU3Noa .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KURYq4.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KURYq4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KURYq4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KURYq4 .modal-content,
.cid-uBw3KURYq4 .modal-dialog {
  height: auto;
}
.cid-uBw3KURYq4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KURYq4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KURYq4 .form-wrapper .mbr-form .form-group,
  .cid-uBw3KURYq4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KURYq4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KURYq4 .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-uBw3KURYq4 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uBw3KURYq4 .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KURYq4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KURYq4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KURYq4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KURYq4 .modal-open {
  overflow: hidden;
}
.cid-uBw3KURYq4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KURYq4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KURYq4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KURYq4 .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-uBw3KURYq4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KURYq4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KURYq4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KURYq4 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KURYq4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KURYq4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KURYq4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KURYq4 .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KURYq4 .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-uBw3KURYq4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KURYq4 .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KURYq4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KURYq4 .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uBw3KURYq4 .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KURYq4 .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KURYq4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uBw3KURYq4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KURYq4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KURYq4 .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KURYq4 .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-uBw3KURYq4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KURYq4 .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KURYq4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KURYq4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KURYq4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KURYq4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KURYq4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KURYq4 .modal-lg,
  .cid-uBw3KURYq4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KURYq4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KURYq4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KURYq4 .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-uBw3KURYq4 .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KURYq4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KURYq4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KURYq4 .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-uBw3KURYq4 .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KURYq4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uBw3KVNHW2.popup-builder {
  background-color: #ffffff;
}
.cid-uBw3KVNHW2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uBw3KVNHW2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uBw3KVNHW2 .modal-content,
.cid-uBw3KVNHW2 .modal-dialog {
  height: auto;
}
.cid-uBw3KVNHW2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uBw3KVNHW2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uBw3KVNHW2 .form-wrapper .mbr-form .form-group,
  .cid-uBw3KVNHW2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uBw3KVNHW2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uBw3KVNHW2 .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-uBw3KVNHW2 .mbr-text {
  text-align: center;
}
.cid-uBw3KVNHW2 .pt-0 {
  padding-top: 0 !important;
}
.cid-uBw3KVNHW2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uBw3KVNHW2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uBw3KVNHW2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uBw3KVNHW2 .modal-open {
  overflow: hidden;
}
.cid-uBw3KVNHW2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uBw3KVNHW2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uBw3KVNHW2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uBw3KVNHW2 .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-uBw3KVNHW2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uBw3KVNHW2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uBw3KVNHW2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uBw3KVNHW2 .modal-content {
  background: #ecedee;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uBw3KVNHW2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uBw3KVNHW2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uBw3KVNHW2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uBw3KVNHW2 .modal-backdrop.show {
  opacity: .5;
}
.cid-uBw3KVNHW2 .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-uBw3KVNHW2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KVNHW2 .modal-header {
    padding: 1rem;
  }
}
.cid-uBw3KVNHW2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uBw3KVNHW2 .modal-header .close svg {
  fill: #1f0931;
}
.cid-uBw3KVNHW2 .modal-header .close:hover {
  opacity: 1;
}
.cid-uBw3KVNHW2 .modal-header .close:focus {
  outline: none;
}
.cid-uBw3KVNHW2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #1f0931;
}
.cid-uBw3KVNHW2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uBw3KVNHW2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KVNHW2 .modal-body {
    padding: 1rem;
  }
}
.cid-uBw3KVNHW2 .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-uBw3KVNHW2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBw3KVNHW2 .modal-footer {
    padding: 1rem;
  }
}
.cid-uBw3KVNHW2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uBw3KVNHW2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uBw3KVNHW2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uBw3KVNHW2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uBw3KVNHW2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uBw3KVNHW2 .modal-lg,
  .cid-uBw3KVNHW2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uBw3KVNHW2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uBw3KVNHW2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uBw3KVNHW2 .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-uBw3KVNHW2 .form-group {
  margin-bottom: 1rem;
}
.cid-uBw3KVNHW2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uBw3KVNHW2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uBw3KVNHW2 .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-uBw3KVNHW2 .mbr-section-btn {
  margin: 0;
}
.cid-uBw3KVNHW2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFJOJpq9ZK .dropdown-menu {
  padding: 12px 0;
}
.cid-uFJOJpq9ZK .dropdown-item:hover,
.cid-uFJOJpq9ZK .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uFJOJpq9ZK .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uFJOJpq9ZK .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uFJOJpq9ZK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFJOJpq9ZK .nav-link {
  position: relative;
}
.cid-uFJOJpq9ZK .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uFJOJpq9ZK .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFJOJpq9ZK .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uFJOJpq9ZK .dropdown-menu,
.cid-uFJOJpq9ZK .navbar.opened {
  background: #1f0931 !important;
}
.cid-uFJOJpq9ZK .nav-item:focus,
.cid-uFJOJpq9ZK .nav-link:focus {
  outline: none;
}
.cid-uFJOJpq9ZK .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uFJOJpq9ZK .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uFJOJpq9ZK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uFJOJpq9ZK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFJOJpq9ZK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uFJOJpq9ZK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uFJOJpq9ZK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFJOJpq9ZK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFJOJpq9ZK .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uFJOJpq9ZK .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uFJOJpq9ZK .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uFJOJpq9ZK .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uFJOJpq9ZK .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uFJOJpq9ZK .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uFJOJpq9ZK .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uFJOJpq9ZK .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uFJOJpq9ZK .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uFJOJpq9ZK .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uFJOJpq9ZK .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uFJOJpq9ZK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFJOJpq9ZK .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uFJOJpq9ZK .navbar.collapsed.opened {
  position: fixed;
}
.cid-uFJOJpq9ZK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uFJOJpq9ZK .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uFJOJpq9ZK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uFJOJpq9ZK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFJOJpq9ZK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFJOJpq9ZK .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: 55%;
}
.cid-uFJOJpq9ZK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFJOJpq9ZK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFJOJpq9ZK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFJOJpq9ZK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFJOJpq9ZK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFJOJpq9ZK .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uFJOJpq9ZK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFJOJpq9ZK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFJOJpq9ZK .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: 41%;
  }
  .cid-uFJOJpq9ZK .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uFJOJpq9ZK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uFJOJpq9ZK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFJOJpq9ZK .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFJOJpq9ZK .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uFJOJpq9ZK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uFJOJpq9ZK .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uFJOJpq9ZK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uFJOJpq9ZK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uFJOJpq9ZK .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFJOJpq9ZK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFJOJpq9ZK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFJOJpq9ZK .dropdown-item.active,
.cid-uFJOJpq9ZK .dropdown-item:active {
  background-color: transparent;
}
.cid-uFJOJpq9ZK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFJOJpq9ZK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFJOJpq9ZK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFJOJpq9ZK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uFJOJpq9ZK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFJOJpq9ZK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFJOJpq9ZK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFJOJpq9ZK .navbar-buttons {
  text-align: center;
}
.cid-uFJOJpq9ZK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFJOJpq9ZK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uFJOJpq9ZK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFJOJpq9ZK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFJOJpq9ZK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFJOJpq9ZK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFJOJpq9ZK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFJOJpq9ZK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFJOJpq9ZK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFJOJpq9ZK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFJOJpq9ZK .navbar-dropdown {
  position: fixed;
}
.cid-uFJOJpq9ZK a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uFJOJpq9ZK .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uFJOJpq9ZK .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uFJOJpq9ZK .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFJOJpq9ZK .navbar {
    height: 77px;
  }
  .cid-uFJOJpq9ZK .navbar.opened {
    height: auto;
  }
  .cid-uFJOJpq9ZK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFJOJq1iVG {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uFJOJq1iVG .container-fluid {
  padding: 0 3rem;
}
.cid-uFJOJq1iVG .media-container-column {
  padding: 0 2rem;
}
.cid-uFJOJq1iVG .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uFJOJq1iVG .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uFJOJqnLxQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-uFJOJqnLxQ .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #3c71d3, #38346b);
}
.cid-uFJOJqnLxQ .mbr-text,
.cid-uFJOJqnLxQ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uFJOJqnLxQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFJOJqnLxQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFJOJqnLxQ .mbr-section-title,
.cid-uFJOJqnLxQ .title-wrapper {
  text-align: center;
  color: #d4a4e4;
}
.cid-uFJQTmgMCR {
  display: flex;
  padding-top: 0px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-12-1920x1280.jpg");
  overflow: hidden;
}
.cid-uFJQTmgMCR .mbr-overlay {
  background-color: #fdfcfa;
  opacity: 0.8;
}
.cid-uFJQTmgMCR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFJQTmgMCR img {
  width: 200px;
  height: 200px;
  filter: grayscale(1);
  object-fit: cover;
  border-radius: 4rem !important;
}
@media (max-width: 767px) {
  .cid-uFJQTmgMCR img {
    display: none;
  }
}
@media (min-width: 992px) {
  .cid-uFJQTmgMCR img {
    z-index: 10;
  }
}
.cid-uFJQTmgMCR .face1 {
  position: absolute;
  left: 7%;
  top: 10%;
  animation: circle1 6s linear infinite;
}
.cid-uFJQTmgMCR .face2 {
  position: absolute;
  right: 7%;
  top: 13%;
  animation: circle1 6s linear infinite;
}
.cid-uFJQTmgMCR .face3 {
  position: absolute;
  left: 12%;
  bottom: 30%;
  animation: circle2 6s linear infinite;
}
.cid-uFJQTmgMCR .face4 {
  position: absolute;
  right: 15%;
  bottom: 28%;
  animation: circle2 6s linear infinite;
}
@keyframes circle1 {
  0% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
}
@keyframes circle2 {
  0% {
    transform: rotate(360deg) translate(-8px) rotate(-360deg);
  }
  100% {
    transform: rotate(0deg) translate(-8px) rotate(0deg);
  }
}
.cid-uFJQTmgMCR .mbr-tag {
  border: 1px solid currentColor;
  border-radius: 20px;
  padding: 5px 30px;
  text-align: center;
  display: inline-block;
  margin-bottom: 6px;
}
.cid-uFJQTmgMCR .round {
  position: absolute;
  bottom: -1430px;
  left: -20%;
  width: 140%;
  height: 1700px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background: #1f0931;
}
@media (max-width: 992px) {
  .cid-uFJQTmgMCR .round {
    bottom: -1300px;
    height: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-uFJQTmgMCR .round {
    height: 600px;
    bottom: -500px;
  }
}
.cid-uFJQTmgMCR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFJQTmgMCR .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uFJQTmgMCR .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uFJQTmgMCR {
    align-items: flex-start;
  }
  .cid-uFJQTmgMCR .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uFJQTmgMCR .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uFJQTmgMCR {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uFJQTmgMCR .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uFJQTmgMCR .content-wrap {
    width: 100%;
  }
}
.cid-uFJQTmgMCR .mbr-section-title {
  text-align: center;
  color: #1f0931;
}
.cid-uFJQTmgMCR .mbr-text,
.cid-uFJQTmgMCR .mbr-section-btn {
  text-align: center;
  color: #38346b;
}
.cid-uFJQTmgMCR .mbr-tag,
.cid-uFJQTmgMCR .tags {
  text-align: center;
  color: #1f0931;
}
.cid-uFJQTmgMCR .mbr-section-subtitle {
  color: #5849aa;
  text-align: center;
}
.cid-uFJRLCrKOE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uFJRLCrKOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFJRLCrKOE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFJRLCrKOE .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFJRLCrKOE .content-wrapper .mbr-section-title span {
  color: #5ca7db;
}
.cid-uFJRLCrKOE .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uFJRLCrKOE .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uFJRLCrKOE .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #b97ecd, #292739);
}
@media (max-width: 992px) {
  .cid-uFJRLCrKOE .border-wrap {
    margin-top: 32px;
  }
}
.cid-uFJRLCrKOE .mbr-section-title {
  color: #ffffff;
}
.cid-uFJRLCrKOE .mbr-text,
.cid-uFJRLCrKOE .text-wrapper {
  color: #e6eaf1;
  text-align: center;
}
.cid-uFJRLCrKOE .mbr-section-title,
.cid-uFJRLCrKOE .mbr-section-btn {
  text-align: center;
  color: #e6eaf1;
}
.cid-uFJOJrEUUj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uFJOJrEUUj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFJOJrEUUj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uFJOJrEUUj .container {
    padding: 0 16px;
  }
}
.cid-uFJOJrEUUj .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFJOJrEUUj .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uFJOJrEUUj .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uFJOJrEUUj .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uFJOJrEUUj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uFJOJrEUUj .mbr-text {
  color: #ffffff;
}
.cid-uFJOJrEUUj .mbr-text,
.cid-uFJOJrEUUj .mbr-section-btn {
  text-align: center;
}
.cid-uFJOJrEUUj .mbr-section-title,
.cid-uFJOJrEUUj .title-wrap {
  color: #410078;
}
.cid-uFJOJs0wDC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uFJOJs0wDC .container-fluid {
  padding: 0 3rem;
}
.cid-uFJOJs0wDC .media-container-column {
  padding: 0 2rem;
}
.cid-uFJOJs0wDC .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uFJOJs0wDC .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uFJOJshDFq.popup-builder {
  background-color: #ffffff;
}
.cid-uFJOJshDFq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFJOJshDFq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFJOJshDFq .modal-content,
.cid-uFJOJshDFq .modal-dialog {
  height: auto;
}
.cid-uFJOJshDFq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFJOJshDFq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFJOJshDFq .form-wrapper .mbr-form .form-group,
  .cid-uFJOJshDFq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFJOJshDFq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFJOJshDFq .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-uFJOJshDFq .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uFJOJshDFq .pt-0 {
  padding-top: 0 !important;
}
.cid-uFJOJshDFq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFJOJshDFq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFJOJshDFq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFJOJshDFq .modal-open {
  overflow: hidden;
}
.cid-uFJOJshDFq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFJOJshDFq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFJOJshDFq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFJOJshDFq .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-uFJOJshDFq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFJOJshDFq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFJOJshDFq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFJOJshDFq .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uFJOJshDFq .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFJOJshDFq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFJOJshDFq .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFJOJshDFq .modal-backdrop.show {
  opacity: .5;
}
.cid-uFJOJshDFq .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-uFJOJshDFq .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFJOJshDFq .modal-header {
    padding: 1rem;
  }
}
.cid-uFJOJshDFq .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFJOJshDFq .modal-header .close svg {
  fill: #59307c;
}
.cid-uFJOJshDFq .modal-header .close:hover {
  opacity: 1;
}
.cid-uFJOJshDFq .modal-header .close:focus {
  outline: none;
}
.cid-uFJOJshDFq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uFJOJshDFq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFJOJshDFq .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFJOJshDFq .modal-body {
    padding: 1rem;
  }
}
.cid-uFJOJshDFq .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-uFJOJshDFq .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFJOJshDFq .modal-footer {
    padding: 1rem;
  }
}
.cid-uFJOJshDFq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFJOJshDFq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFJOJshDFq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFJOJshDFq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFJOJshDFq .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFJOJshDFq .modal-lg,
  .cid-uFJOJshDFq .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFJOJshDFq .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFJOJshDFq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFJOJshDFq .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-uFJOJshDFq .form-group {
  margin-bottom: 1rem;
}
.cid-uFJOJshDFq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFJOJshDFq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFJOJshDFq .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-uFJOJshDFq .mbr-section-btn {
  margin: 0;
}
.cid-uFJOJshDFq .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFJOJsIamZ.popup-builder {
  background-color: #ffffff;
}
.cid-uFJOJsIamZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFJOJsIamZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFJOJsIamZ .modal-content,
.cid-uFJOJsIamZ .modal-dialog {
  height: auto;
}
.cid-uFJOJsIamZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFJOJsIamZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFJOJsIamZ .form-wrapper .mbr-form .form-group,
  .cid-uFJOJsIamZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFJOJsIamZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFJOJsIamZ .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-uFJOJsIamZ .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uFJOJsIamZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uFJOJsIamZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFJOJsIamZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFJOJsIamZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFJOJsIamZ .modal-open {
  overflow: hidden;
}
.cid-uFJOJsIamZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFJOJsIamZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFJOJsIamZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFJOJsIamZ .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-uFJOJsIamZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFJOJsIamZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFJOJsIamZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFJOJsIamZ .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uFJOJsIamZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFJOJsIamZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFJOJsIamZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFJOJsIamZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uFJOJsIamZ .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-uFJOJsIamZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFJOJsIamZ .modal-header {
    padding: 1rem;
  }
}
.cid-uFJOJsIamZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFJOJsIamZ .modal-header .close svg {
  fill: #ffffff;
}
.cid-uFJOJsIamZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uFJOJsIamZ .modal-header .close:focus {
  outline: none;
}
.cid-uFJOJsIamZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uFJOJsIamZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFJOJsIamZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFJOJsIamZ .modal-body {
    padding: 1rem;
  }
}
.cid-uFJOJsIamZ .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-uFJOJsIamZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFJOJsIamZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uFJOJsIamZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFJOJsIamZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFJOJsIamZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFJOJsIamZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFJOJsIamZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFJOJsIamZ .modal-lg,
  .cid-uFJOJsIamZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFJOJsIamZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFJOJsIamZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFJOJsIamZ .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-uFJOJsIamZ .form-group {
  margin-bottom: 1rem;
}
.cid-uFJOJsIamZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFJOJsIamZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFJOJsIamZ .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-uFJOJsIamZ .mbr-section-btn {
  margin: 0;
}
.cid-uFJOJsIamZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFJOJtaq5d.popup-builder {
  background-color: #ffffff;
}
.cid-uFJOJtaq5d.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFJOJtaq5d.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFJOJtaq5d .modal-content,
.cid-uFJOJtaq5d .modal-dialog {
  height: auto;
}
.cid-uFJOJtaq5d .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFJOJtaq5d .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFJOJtaq5d .form-wrapper .mbr-form .form-group,
  .cid-uFJOJtaq5d .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFJOJtaq5d .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFJOJtaq5d .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-uFJOJtaq5d .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uFJOJtaq5d .pt-0 {
  padding-top: 0 !important;
}
.cid-uFJOJtaq5d .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFJOJtaq5d .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFJOJtaq5d .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFJOJtaq5d .modal-open {
  overflow: hidden;
}
.cid-uFJOJtaq5d .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFJOJtaq5d .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFJOJtaq5d .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFJOJtaq5d .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-uFJOJtaq5d .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFJOJtaq5d .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFJOJtaq5d .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFJOJtaq5d .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uFJOJtaq5d .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFJOJtaq5d .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFJOJtaq5d .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFJOJtaq5d .modal-backdrop.show {
  opacity: .5;
}
.cid-uFJOJtaq5d .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-uFJOJtaq5d .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFJOJtaq5d .modal-header {
    padding: 1rem;
  }
}
.cid-uFJOJtaq5d .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFJOJtaq5d .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uFJOJtaq5d .modal-header .close:hover {
  opacity: 1;
}
.cid-uFJOJtaq5d .modal-header .close:focus {
  outline: none;
}
.cid-uFJOJtaq5d .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uFJOJtaq5d .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFJOJtaq5d .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFJOJtaq5d .modal-body {
    padding: 1rem;
  }
}
.cid-uFJOJtaq5d .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-uFJOJtaq5d .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFJOJtaq5d .modal-footer {
    padding: 1rem;
  }
}
.cid-uFJOJtaq5d .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFJOJtaq5d .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFJOJtaq5d .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFJOJtaq5d .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFJOJtaq5d .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFJOJtaq5d .modal-lg,
  .cid-uFJOJtaq5d .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFJOJtaq5d .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFJOJtaq5d .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFJOJtaq5d .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-uFJOJtaq5d .form-group {
  margin-bottom: 1rem;
}
.cid-uFJOJtaq5d .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFJOJtaq5d .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFJOJtaq5d .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-uFJOJtaq5d .mbr-section-btn {
  margin: 0;
}
.cid-uFJOJtaq5d .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMjWa7.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMjWa7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMjWa7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMjWa7 .modal-content,
.cid-uO9WTMjWa7 .modal-dialog {
  height: auto;
}
.cid-uO9WTMjWa7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMjWa7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMjWa7 .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMjWa7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMjWa7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMjWa7 .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-uO9WTMjWa7 .mbr-text {
  text-align: center;
}
.cid-uO9WTMjWa7 .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMjWa7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMjWa7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMjWa7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMjWa7 .modal-open {
  overflow: hidden;
}
.cid-uO9WTMjWa7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMjWa7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMjWa7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMjWa7 .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-uO9WTMjWa7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMjWa7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMjWa7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMjWa7 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMjWa7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMjWa7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMjWa7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMjWa7 .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMjWa7 .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-uO9WTMjWa7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjWa7 .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMjWa7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMjWa7 .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMjWa7 .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMjWa7 .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMjWa7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMjWa7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMjWa7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjWa7 .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMjWa7 .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-uO9WTMjWa7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjWa7 .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMjWa7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMjWa7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMjWa7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMjWa7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMjWa7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMjWa7 .modal-lg,
  .cid-uO9WTMjWa7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMjWa7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMjWa7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMjWa7 .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-uO9WTMjWa7 .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMjWa7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMjWa7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMjWa7 .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-uO9WTMjWa7 .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMjWa7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvEKXbw .dropdown-menu {
  padding: 12px 0;
}
.cid-uIANvEKXbw .dropdown-item:hover,
.cid-uIANvEKXbw .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uIANvEKXbw .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uIANvEKXbw .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uIANvEKXbw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIANvEKXbw .nav-link {
  position: relative;
}
.cid-uIANvEKXbw .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uIANvEKXbw .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIANvEKXbw .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uIANvEKXbw .dropdown-menu,
.cid-uIANvEKXbw .navbar.opened {
  background: #1f0931 !important;
}
.cid-uIANvEKXbw .nav-item:focus,
.cid-uIANvEKXbw .nav-link:focus {
  outline: none;
}
.cid-uIANvEKXbw .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uIANvEKXbw .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uIANvEKXbw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uIANvEKXbw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIANvEKXbw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uIANvEKXbw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uIANvEKXbw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIANvEKXbw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIANvEKXbw .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uIANvEKXbw .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uIANvEKXbw .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uIANvEKXbw .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uIANvEKXbw .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uIANvEKXbw .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uIANvEKXbw .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uIANvEKXbw .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uIANvEKXbw .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uIANvEKXbw .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uIANvEKXbw .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uIANvEKXbw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIANvEKXbw .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uIANvEKXbw .navbar.collapsed.opened {
  position: fixed;
}
.cid-uIANvEKXbw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uIANvEKXbw .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uIANvEKXbw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uIANvEKXbw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIANvEKXbw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIANvEKXbw .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: 55%;
}
.cid-uIANvEKXbw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIANvEKXbw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIANvEKXbw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIANvEKXbw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIANvEKXbw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIANvEKXbw .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uIANvEKXbw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIANvEKXbw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIANvEKXbw .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: 41%;
  }
  .cid-uIANvEKXbw .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uIANvEKXbw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uIANvEKXbw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIANvEKXbw .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIANvEKXbw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uIANvEKXbw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIANvEKXbw .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uIANvEKXbw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uIANvEKXbw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uIANvEKXbw .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIANvEKXbw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIANvEKXbw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIANvEKXbw .dropdown-item.active,
.cid-uIANvEKXbw .dropdown-item:active {
  background-color: transparent;
}
.cid-uIANvEKXbw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIANvEKXbw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIANvEKXbw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIANvEKXbw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uIANvEKXbw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIANvEKXbw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIANvEKXbw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uIANvEKXbw .navbar-buttons {
  text-align: center;
}
.cid-uIANvEKXbw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIANvEKXbw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uIANvEKXbw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIANvEKXbw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIANvEKXbw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIANvEKXbw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIANvEKXbw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIANvEKXbw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIANvEKXbw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIANvEKXbw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIANvEKXbw .navbar-dropdown {
  position: fixed;
}
.cid-uIANvEKXbw a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uIANvEKXbw .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uIANvEKXbw .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uIANvEKXbw .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIANvEKXbw .navbar {
    height: 77px;
  }
  .cid-uIANvEKXbw .navbar.opened {
    height: auto;
  }
  .cid-uIANvEKXbw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIANvFteDi {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uIANvFteDi .container-fluid {
  padding: 0 3rem;
}
.cid-uIANvFteDi .media-container-column {
  padding: 0 2rem;
}
.cid-uIANvFteDi .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uIANvFteDi .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uIANvFKP2y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-10-1920x1280.jpg");
}
.cid-uIANvFKP2y .mbr-section-title {
  color: #404040;
}
.cid-uIANvFKP2y .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uIANvFKP2y .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uIANvFKP2y .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uIANvFKP2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIANvFKP2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIANvFKP2y .mbr-section-title,
.cid-uIANvFKP2y .icon-wrap,
.cid-uIANvFKP2y .mbr-section-btn {
  color: #ffffff;
}
.cid-uIANvGuafw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uIANvGuafw .container-fluid {
  padding: 0 3rem;
}
.cid-uIANvGuafw .media-container-column {
  padding: 0 2rem;
}
.cid-uIANvGuafw .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #fdfcfa;
}
@media (max-width: 767px) {
  .cid-uIANvGuafw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uIANvGJM3N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uIANvGJM3N [class^='socicon-']:before,
.cid-uIANvGJM3N [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-uIANvGJM3N .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #5849aa;
  transition: all 0.3s;
  border-color: #5849aa;
}
.cid-uIANvGJM3N .btn-social:hover {
  background: #5849aa;
}
.cid-uIANvGJM3N .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-uIANvGJM3N .btn-social:hover span {
  color: #ffffff !important;
}
.cid-uIANvGJM3N .mbr-section-title {
  color: #2e6b75;
}
.cid-uIANvGJM3N .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-uIANvGJM3N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIANvGJM3N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIANvH6UTT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIANvH6UTT .container-fluid {
  padding: 0 3rem;
}
.cid-uIANvH6UTT .media-container-column {
  padding: 0 2rem;
}
.cid-uIANvH6UTT .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #848abd;
}
@media (max-width: 767px) {
  .cid-uIANvH6UTT .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uIANvIhS6O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #080813;
}
.cid-uIANvIhS6O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIANvIhS6O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIANvIhS6O .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uIANvIhS6O .content-wrapper .mbr-section-title span {
  color: #5ca7db;
}
.cid-uIANvIhS6O .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uIANvIhS6O .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uIANvIhS6O .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #b97ecd, #292739);
}
@media (max-width: 992px) {
  .cid-uIANvIhS6O .border-wrap {
    margin-top: 32px;
  }
}
.cid-uIANvIhS6O .mbr-section-title {
  color: #ffffff;
}
.cid-uIANvIhS6O .mbr-text,
.cid-uIANvIhS6O .text-wrapper {
  color: #e6eaf1;
  text-align: center;
}
.cid-uIANvIhS6O .mbr-section-title,
.cid-uIANvIhS6O .mbr-section-btn {
  text-align: center;
  color: #e6eaf1;
}
.cid-uIANvHJgQw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #483769;
}
.cid-uIANvHJgQw .mbr-text,
.cid-uIANvHJgQw .ornament {
  color: #ffffff;
}
.cid-uIANvHXN0V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uIANvHXN0V .item:focus,
.cid-uIANvHXN0V span:focus {
  outline: none;
}
.cid-uIANvHXN0V .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uIANvHXN0V .item {
  font-weight: 700;
  color: #e6eaf1;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uIANvHXN0V .item {
    min-height: 45px;
  }
}
.cid-uIANvIAt27 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uIANvIAt27 .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uIANvIAt27 img {
    width: 90%;
  }
}
.cid-uIANvIAt27 .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uIANvIAt27 .items {
  margin-bottom: 0;
}
.cid-uIANvIAt27 .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uIANvIAt27 .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uIANvIAt27 .soc-item:hover span {
  color: #38346b !important;
}
.cid-uIANvIAt27 .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uIANvIAt27 .social-list {
    justify-content: center;
  }
}
.cid-uIANvIAt27 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uIANvIYKNj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uIANvIYKNj .container-fluid {
  padding: 0 3rem;
}
.cid-uIANvIYKNj .media-container-column {
  padding: 0 2rem;
}
.cid-uIANvIYKNj .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uIANvIYKNj .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uIANvJgFcF.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvJgFcF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvJgFcF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvJgFcF .modal-content,
.cid-uIANvJgFcF .modal-dialog {
  height: auto;
}
.cid-uIANvJgFcF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvJgFcF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvJgFcF .form-wrapper .mbr-form .form-group,
  .cid-uIANvJgFcF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvJgFcF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvJgFcF .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-uIANvJgFcF .mbr-text {
  text-align: center;
}
.cid-uIANvJgFcF .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvJgFcF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvJgFcF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvJgFcF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvJgFcF .modal-open {
  overflow: hidden;
}
.cid-uIANvJgFcF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvJgFcF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvJgFcF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvJgFcF .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-uIANvJgFcF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvJgFcF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvJgFcF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvJgFcF .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvJgFcF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvJgFcF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvJgFcF .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvJgFcF .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvJgFcF .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-uIANvJgFcF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvJgFcF .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvJgFcF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvJgFcF .modal-header .close svg {
  fill: #611750;
}
.cid-uIANvJgFcF .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvJgFcF .modal-header .close:focus {
  outline: none;
}
.cid-uIANvJgFcF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uIANvJgFcF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvJgFcF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvJgFcF .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvJgFcF .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-uIANvJgFcF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvJgFcF .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvJgFcF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvJgFcF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvJgFcF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvJgFcF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvJgFcF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvJgFcF .modal-lg,
  .cid-uIANvJgFcF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvJgFcF .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvJgFcF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvJgFcF .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-uIANvJgFcF .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvJgFcF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvJgFcF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvJgFcF .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-uIANvJgFcF .mbr-section-btn {
  margin: 0;
}
.cid-uIANvJgFcF .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvJHIPh.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvJHIPh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvJHIPh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvJHIPh .modal-content,
.cid-uIANvJHIPh .modal-dialog {
  height: auto;
}
.cid-uIANvJHIPh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvJHIPh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvJHIPh .form-wrapper .mbr-form .form-group,
  .cid-uIANvJHIPh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvJHIPh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvJHIPh .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-uIANvJHIPh .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uIANvJHIPh .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvJHIPh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvJHIPh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvJHIPh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvJHIPh .modal-open {
  overflow: hidden;
}
.cid-uIANvJHIPh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvJHIPh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvJHIPh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvJHIPh .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-uIANvJHIPh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvJHIPh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvJHIPh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvJHIPh .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvJHIPh .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvJHIPh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvJHIPh .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvJHIPh .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvJHIPh .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-uIANvJHIPh .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvJHIPh .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvJHIPh .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvJHIPh .modal-header .close svg {
  fill: #260641;
}
.cid-uIANvJHIPh .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvJHIPh .modal-header .close:focus {
  outline: none;
}
.cid-uIANvJHIPh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uIANvJHIPh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvJHIPh .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvJHIPh .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvJHIPh .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-uIANvJHIPh .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvJHIPh .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvJHIPh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvJHIPh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvJHIPh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvJHIPh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvJHIPh .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvJHIPh .modal-lg,
  .cid-uIANvJHIPh .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvJHIPh .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvJHIPh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvJHIPh .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-uIANvJHIPh .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvJHIPh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvJHIPh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvJHIPh .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-uIANvJHIPh .mbr-section-btn {
  margin: 0;
}
.cid-uIANvJHIPh .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvKahVU.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvKahVU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvKahVU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvKahVU .modal-content,
.cid-uIANvKahVU .modal-dialog {
  height: auto;
}
.cid-uIANvKahVU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvKahVU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvKahVU .form-wrapper .mbr-form .form-group,
  .cid-uIANvKahVU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvKahVU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvKahVU .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-uIANvKahVU .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uIANvKahVU .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvKahVU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvKahVU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvKahVU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvKahVU .modal-open {
  overflow: hidden;
}
.cid-uIANvKahVU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvKahVU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvKahVU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvKahVU .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-uIANvKahVU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvKahVU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvKahVU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvKahVU .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvKahVU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvKahVU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvKahVU .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvKahVU .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvKahVU .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-uIANvKahVU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvKahVU .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvKahVU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvKahVU .modal-header .close svg {
  fill: #260641;
}
.cid-uIANvKahVU .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvKahVU .modal-header .close:focus {
  outline: none;
}
.cid-uIANvKahVU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uIANvKahVU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvKahVU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvKahVU .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvKahVU .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-uIANvKahVU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvKahVU .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvKahVU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvKahVU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvKahVU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvKahVU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvKahVU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvKahVU .modal-lg,
  .cid-uIANvKahVU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvKahVU .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvKahVU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvKahVU .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-uIANvKahVU .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvKahVU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvKahVU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvKahVU .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-uIANvKahVU .mbr-section-btn {
  margin: 0;
}
.cid-uIANvKahVU .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvKAH7o.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvKAH7o.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvKAH7o.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvKAH7o .modal-content,
.cid-uIANvKAH7o .modal-dialog {
  height: auto;
}
.cid-uIANvKAH7o .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvKAH7o .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvKAH7o .form-wrapper .mbr-form .form-group,
  .cid-uIANvKAH7o .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvKAH7o .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvKAH7o .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-uIANvKAH7o .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uIANvKAH7o .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvKAH7o .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvKAH7o .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvKAH7o .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvKAH7o .modal-open {
  overflow: hidden;
}
.cid-uIANvKAH7o .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvKAH7o .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvKAH7o .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvKAH7o .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-uIANvKAH7o .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvKAH7o .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvKAH7o .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvKAH7o .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvKAH7o .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvKAH7o .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvKAH7o .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvKAH7o .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvKAH7o .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-uIANvKAH7o .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvKAH7o .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvKAH7o .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvKAH7o .modal-header .close svg {
  fill: #260641;
}
.cid-uIANvKAH7o .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvKAH7o .modal-header .close:focus {
  outline: none;
}
.cid-uIANvKAH7o .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uIANvKAH7o .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvKAH7o .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvKAH7o .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvKAH7o .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-uIANvKAH7o .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvKAH7o .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvKAH7o .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvKAH7o .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvKAH7o .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvKAH7o .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvKAH7o .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvKAH7o .modal-lg,
  .cid-uIANvKAH7o .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvKAH7o .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvKAH7o .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvKAH7o .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-uIANvKAH7o .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvKAH7o .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvKAH7o .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvKAH7o .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-uIANvKAH7o .mbr-section-btn {
  margin: 0;
}
.cid-uIANvKAH7o .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvL0bFe.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvL0bFe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvL0bFe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvL0bFe .modal-content,
.cid-uIANvL0bFe .modal-dialog {
  height: auto;
}
.cid-uIANvL0bFe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvL0bFe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvL0bFe .form-wrapper .mbr-form .form-group,
  .cid-uIANvL0bFe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvL0bFe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvL0bFe .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-uIANvL0bFe .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uIANvL0bFe .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvL0bFe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvL0bFe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvL0bFe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvL0bFe .modal-open {
  overflow: hidden;
}
.cid-uIANvL0bFe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvL0bFe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvL0bFe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvL0bFe .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-uIANvL0bFe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvL0bFe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvL0bFe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvL0bFe .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvL0bFe .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvL0bFe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvL0bFe .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvL0bFe .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvL0bFe .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-uIANvL0bFe .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvL0bFe .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvL0bFe .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvL0bFe .modal-header .close svg {
  fill: #260641;
}
.cid-uIANvL0bFe .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvL0bFe .modal-header .close:focus {
  outline: none;
}
.cid-uIANvL0bFe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uIANvL0bFe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvL0bFe .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvL0bFe .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvL0bFe .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-uIANvL0bFe .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvL0bFe .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvL0bFe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvL0bFe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvL0bFe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvL0bFe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvL0bFe .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvL0bFe .modal-lg,
  .cid-uIANvL0bFe .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvL0bFe .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvL0bFe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvL0bFe .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-uIANvL0bFe .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvL0bFe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvL0bFe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvL0bFe .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-uIANvL0bFe .mbr-section-btn {
  margin: 0;
}
.cid-uIANvL0bFe .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvLrJl2.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvLrJl2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvLrJl2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvLrJl2 .modal-content,
.cid-uIANvLrJl2 .modal-dialog {
  height: auto;
}
.cid-uIANvLrJl2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvLrJl2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvLrJl2 .form-wrapper .mbr-form .form-group,
  .cid-uIANvLrJl2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvLrJl2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvLrJl2 .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-uIANvLrJl2 .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uIANvLrJl2 .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvLrJl2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvLrJl2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvLrJl2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvLrJl2 .modal-open {
  overflow: hidden;
}
.cid-uIANvLrJl2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvLrJl2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvLrJl2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvLrJl2 .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-uIANvLrJl2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvLrJl2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvLrJl2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvLrJl2 .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvLrJl2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvLrJl2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvLrJl2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvLrJl2 .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvLrJl2 .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-uIANvLrJl2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvLrJl2 .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvLrJl2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvLrJl2 .modal-header .close svg {
  fill: #5849aa;
}
.cid-uIANvLrJl2 .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvLrJl2 .modal-header .close:focus {
  outline: none;
}
.cid-uIANvLrJl2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uIANvLrJl2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvLrJl2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvLrJl2 .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvLrJl2 .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-uIANvLrJl2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvLrJl2 .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvLrJl2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvLrJl2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvLrJl2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvLrJl2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvLrJl2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvLrJl2 .modal-lg,
  .cid-uIANvLrJl2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvLrJl2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvLrJl2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvLrJl2 .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-uIANvLrJl2 .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvLrJl2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvLrJl2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvLrJl2 .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-uIANvLrJl2 .mbr-section-btn {
  margin: 0;
}
.cid-uIANvLrJl2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvLWsFH.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvLWsFH.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvLWsFH.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvLWsFH .modal-content,
.cid-uIANvLWsFH .modal-dialog {
  height: auto;
}
.cid-uIANvLWsFH .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvLWsFH .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvLWsFH .form-wrapper .mbr-form .form-group,
  .cid-uIANvLWsFH .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvLWsFH .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvLWsFH .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-uIANvLWsFH .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uIANvLWsFH .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvLWsFH .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvLWsFH .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvLWsFH .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvLWsFH .modal-open {
  overflow: hidden;
}
.cid-uIANvLWsFH .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvLWsFH .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvLWsFH .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvLWsFH .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-uIANvLWsFH .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvLWsFH .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvLWsFH .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvLWsFH .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvLWsFH .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvLWsFH .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvLWsFH .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvLWsFH .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvLWsFH .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-uIANvLWsFH .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvLWsFH .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvLWsFH .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvLWsFH .modal-header .close svg {
  fill: #611750;
}
.cid-uIANvLWsFH .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvLWsFH .modal-header .close:focus {
  outline: none;
}
.cid-uIANvLWsFH .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uIANvLWsFH .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvLWsFH .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvLWsFH .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvLWsFH .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-uIANvLWsFH .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvLWsFH .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvLWsFH .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvLWsFH .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvLWsFH .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvLWsFH .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvLWsFH .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvLWsFH .modal-lg,
  .cid-uIANvLWsFH .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvLWsFH .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvLWsFH .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvLWsFH .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-uIANvLWsFH .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvLWsFH .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvLWsFH .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvLWsFH .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-uIANvLWsFH .mbr-section-btn {
  margin: 0;
}
.cid-uIANvLWsFH .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvMn5qx.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvMn5qx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvMn5qx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvMn5qx .modal-content,
.cid-uIANvMn5qx .modal-dialog {
  height: auto;
}
.cid-uIANvMn5qx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvMn5qx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvMn5qx .form-wrapper .mbr-form .form-group,
  .cid-uIANvMn5qx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvMn5qx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvMn5qx .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-uIANvMn5qx .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uIANvMn5qx .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvMn5qx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvMn5qx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvMn5qx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvMn5qx .modal-open {
  overflow: hidden;
}
.cid-uIANvMn5qx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvMn5qx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvMn5qx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvMn5qx .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-uIANvMn5qx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvMn5qx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvMn5qx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvMn5qx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvMn5qx .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvMn5qx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvMn5qx .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvMn5qx .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvMn5qx .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-uIANvMn5qx .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvMn5qx .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvMn5qx .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvMn5qx .modal-header .close svg {
  fill: #59307c;
}
.cid-uIANvMn5qx .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvMn5qx .modal-header .close:focus {
  outline: none;
}
.cid-uIANvMn5qx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uIANvMn5qx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvMn5qx .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvMn5qx .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvMn5qx .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-uIANvMn5qx .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvMn5qx .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvMn5qx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvMn5qx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvMn5qx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvMn5qx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvMn5qx .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvMn5qx .modal-lg,
  .cid-uIANvMn5qx .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvMn5qx .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvMn5qx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvMn5qx .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-uIANvMn5qx .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvMn5qx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvMn5qx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvMn5qx .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-uIANvMn5qx .mbr-section-btn {
  margin: 0;
}
.cid-uIANvMn5qx .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvMQVrP.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvMQVrP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvMQVrP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvMQVrP .modal-content,
.cid-uIANvMQVrP .modal-dialog {
  height: auto;
}
.cid-uIANvMQVrP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvMQVrP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvMQVrP .form-wrapper .mbr-form .form-group,
  .cid-uIANvMQVrP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvMQVrP .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvMQVrP .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-uIANvMQVrP .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uIANvMQVrP .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvMQVrP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvMQVrP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvMQVrP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvMQVrP .modal-open {
  overflow: hidden;
}
.cid-uIANvMQVrP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvMQVrP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvMQVrP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvMQVrP .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-uIANvMQVrP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvMQVrP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvMQVrP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvMQVrP .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvMQVrP .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvMQVrP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvMQVrP .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvMQVrP .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvMQVrP .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-uIANvMQVrP .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvMQVrP .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvMQVrP .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvMQVrP .modal-header .close svg {
  fill: #ffffff;
}
.cid-uIANvMQVrP .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvMQVrP .modal-header .close:focus {
  outline: none;
}
.cid-uIANvMQVrP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uIANvMQVrP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvMQVrP .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvMQVrP .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvMQVrP .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-uIANvMQVrP .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvMQVrP .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvMQVrP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvMQVrP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvMQVrP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvMQVrP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvMQVrP .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvMQVrP .modal-lg,
  .cid-uIANvMQVrP .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvMQVrP .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvMQVrP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvMQVrP .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-uIANvMQVrP .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvMQVrP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvMQVrP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvMQVrP .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-uIANvMQVrP .mbr-section-btn {
  margin: 0;
}
.cid-uIANvMQVrP .mbr-section-btn .btn {
  margin: 0;
}
.cid-uIANvNitCh.popup-builder {
  background-color: #ffffff;
}
.cid-uIANvNitCh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uIANvNitCh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uIANvNitCh .modal-content,
.cid-uIANvNitCh .modal-dialog {
  height: auto;
}
.cid-uIANvNitCh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uIANvNitCh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uIANvNitCh .form-wrapper .mbr-form .form-group,
  .cid-uIANvNitCh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uIANvNitCh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uIANvNitCh .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-uIANvNitCh .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uIANvNitCh .pt-0 {
  padding-top: 0 !important;
}
.cid-uIANvNitCh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uIANvNitCh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uIANvNitCh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uIANvNitCh .modal-open {
  overflow: hidden;
}
.cid-uIANvNitCh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uIANvNitCh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uIANvNitCh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uIANvNitCh .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-uIANvNitCh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uIANvNitCh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uIANvNitCh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uIANvNitCh .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uIANvNitCh .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uIANvNitCh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uIANvNitCh .modal-backdrop.fade {
  opacity: 0;
}
.cid-uIANvNitCh .modal-backdrop.show {
  opacity: .5;
}
.cid-uIANvNitCh .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-uIANvNitCh .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvNitCh .modal-header {
    padding: 1rem;
  }
}
.cid-uIANvNitCh .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uIANvNitCh .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uIANvNitCh .modal-header .close:hover {
  opacity: 1;
}
.cid-uIANvNitCh .modal-header .close:focus {
  outline: none;
}
.cid-uIANvNitCh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uIANvNitCh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uIANvNitCh .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvNitCh .modal-body {
    padding: 1rem;
  }
}
.cid-uIANvNitCh .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-uIANvNitCh .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIANvNitCh .modal-footer {
    padding: 1rem;
  }
}
.cid-uIANvNitCh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uIANvNitCh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uIANvNitCh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uIANvNitCh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uIANvNitCh .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uIANvNitCh .modal-lg,
  .cid-uIANvNitCh .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uIANvNitCh .modal-xl {
    max-width: 1140px;
  }
}
.cid-uIANvNitCh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uIANvNitCh .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-uIANvNitCh .form-group {
  margin-bottom: 1rem;
}
.cid-uIANvNitCh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uIANvNitCh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uIANvNitCh .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-uIANvNitCh .mbr-section-btn {
  margin: 0;
}
.cid-uIANvNitCh .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMjCeR.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMjCeR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMjCeR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMjCeR .modal-content,
.cid-uO9WTMjCeR .modal-dialog {
  height: auto;
}
.cid-uO9WTMjCeR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMjCeR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMjCeR .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMjCeR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMjCeR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMjCeR .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-uO9WTMjCeR .mbr-text {
  text-align: center;
}
.cid-uO9WTMjCeR .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMjCeR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMjCeR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMjCeR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMjCeR .modal-open {
  overflow: hidden;
}
.cid-uO9WTMjCeR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMjCeR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMjCeR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMjCeR .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-uO9WTMjCeR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMjCeR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMjCeR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMjCeR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMjCeR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMjCeR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMjCeR .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMjCeR .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMjCeR .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-uO9WTMjCeR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjCeR .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMjCeR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMjCeR .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMjCeR .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMjCeR .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMjCeR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMjCeR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMjCeR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjCeR .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMjCeR .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-uO9WTMjCeR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjCeR .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMjCeR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMjCeR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMjCeR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMjCeR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMjCeR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMjCeR .modal-lg,
  .cid-uO9WTMjCeR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMjCeR .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMjCeR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMjCeR .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-uO9WTMjCeR .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMjCeR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMjCeR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMjCeR .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-uO9WTMjCeR .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMjCeR .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwBH62ou3j .dropdown-menu {
  padding: 12px 0;
}
.cid-uwBH62ou3j .dropdown-item:hover,
.cid-uwBH62ou3j .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uwBH62ou3j .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uwBH62ou3j .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uwBH62ou3j .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwBH62ou3j .nav-link {
  position: relative;
}
.cid-uwBH62ou3j .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uwBH62ou3j .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwBH62ou3j .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uwBH62ou3j .dropdown-menu,
.cid-uwBH62ou3j .navbar.opened {
  background: #1f0931 !important;
}
.cid-uwBH62ou3j .nav-item:focus,
.cid-uwBH62ou3j .nav-link:focus {
  outline: none;
}
.cid-uwBH62ou3j .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uwBH62ou3j .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uwBH62ou3j .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uwBH62ou3j .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwBH62ou3j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uwBH62ou3j .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uwBH62ou3j .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwBH62ou3j .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwBH62ou3j .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uwBH62ou3j .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uwBH62ou3j .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uwBH62ou3j .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uwBH62ou3j .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uwBH62ou3j .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uwBH62ou3j .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uwBH62ou3j .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uwBH62ou3j .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uwBH62ou3j .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uwBH62ou3j .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uwBH62ou3j .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwBH62ou3j .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uwBH62ou3j .navbar.collapsed.opened {
  position: fixed;
}
.cid-uwBH62ou3j .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uwBH62ou3j .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uwBH62ou3j .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uwBH62ou3j .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwBH62ou3j .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwBH62ou3j .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: 55%;
}
.cid-uwBH62ou3j .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwBH62ou3j .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwBH62ou3j .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwBH62ou3j .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwBH62ou3j .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwBH62ou3j .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uwBH62ou3j .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwBH62ou3j .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwBH62ou3j .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: 41%;
  }
  .cid-uwBH62ou3j .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uwBH62ou3j .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uwBH62ou3j .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwBH62ou3j .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwBH62ou3j .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uwBH62ou3j .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uwBH62ou3j .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uwBH62ou3j .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uwBH62ou3j .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uwBH62ou3j .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uwBH62ou3j .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwBH62ou3j .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwBH62ou3j .dropdown-item.active,
.cid-uwBH62ou3j .dropdown-item:active {
  background-color: transparent;
}
.cid-uwBH62ou3j .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwBH62ou3j .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwBH62ou3j .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwBH62ou3j .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uwBH62ou3j .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwBH62ou3j .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwBH62ou3j ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uwBH62ou3j .navbar-buttons {
  text-align: center;
}
.cid-uwBH62ou3j button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uwBH62ou3j button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uwBH62ou3j button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwBH62ou3j button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwBH62ou3j button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwBH62ou3j button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwBH62ou3j nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwBH62ou3j nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwBH62ou3j nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwBH62ou3j nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwBH62ou3j .navbar-dropdown {
  position: fixed;
}
.cid-uwBH62ou3j a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uwBH62ou3j .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uwBH62ou3j .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uwBH62ou3j .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uwBH62ou3j .navbar {
    height: 77px;
  }
  .cid-uwBH62ou3j .navbar.opened {
    height: auto;
  }
  .cid-uwBH62ou3j .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAhxB29hX2 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uAhxB29hX2 .container-fluid {
  padding: 0 3rem;
}
.cid-uAhxB29hX2 .media-container-column {
  padding: 0 2rem;
}
.cid-uAhxB29hX2 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uAhxB29hX2 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uAndAPEWrg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6eaf1;
}
.cid-uAndAPEWrg .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uAndAPEWrg img {
    width: 90%;
  }
}
.cid-uAndAPEWrg .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uAndAPEWrg .items {
  margin-bottom: 0;
}
.cid-uAndAPEWrg .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uAndAPEWrg .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uAndAPEWrg .soc-item:hover span {
  color: #38346b !important;
}
.cid-uAndAPEWrg .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uAndAPEWrg .social-list {
    justify-content: center;
  }
}
.cid-uAndAPEWrg .card-title {
  text-align: center;
  color: #813fb8;
}
.cid-uwBH63lhCP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uwBH63lhCP .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uwBH63lhCP img {
    width: 90%;
  }
}
.cid-uwBH63lhCP .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uwBH63lhCP .items {
  margin-bottom: 0;
}
.cid-uwBH63lhCP .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uwBH63lhCP .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uwBH63lhCP .soc-item:hover span {
  color: #38346b !important;
}
.cid-uwBH63lhCP .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uwBH63lhCP .social-list {
    justify-content: center;
  }
}
.cid-uwBH63lhCP .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uAg8PcKtnM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/walk-4-684x360.jpg");
}
.cid-uAg8PcKtnM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAg8PcKtnM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAg8PcKtnM .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAg8PcKtnM .content-wrapper .mbr-section-title span {
  color: #5ca7db;
}
.cid-uAg8PcKtnM .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uAg8PcKtnM .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uAg8PcKtnM .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #b97ecd, #292739);
}
@media (max-width: 992px) {
  .cid-uAg8PcKtnM .border-wrap {
    margin-top: 32px;
  }
}
.cid-uAg8PcKtnM .mbr-section-title {
  color: #ffffff;
}
.cid-uAg8PcKtnM .mbr-text,
.cid-uAg8PcKtnM .text-wrapper {
  color: #e0e284;
  text-align: center;
}
.cid-uAg8PcKtnM .mbr-section-title,
.cid-uAg8PcKtnM .mbr-section-btn {
  text-align: center;
  color: #f3f6f9;
}
.cid-uMWniHvu5E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uMWniHvu5E .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uMWniHvu5E img {
    width: 90%;
  }
}
.cid-uMWniHvu5E .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uMWniHvu5E .items {
  margin-bottom: 0;
}
.cid-uMWniHvu5E .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uMWniHvu5E .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uMWniHvu5E .soc-item:hover span {
  color: #38346b !important;
}
.cid-uMWniHvu5E .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uMWniHvu5E .social-list {
    justify-content: center;
  }
}
.cid-uMWniHvu5E .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uMVrYApU8L {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMVrYApU8L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMVrYApU8L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMVrYApU8L .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uMVrYApU8L .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMVrYApU8L .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uMVrYApU8L .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uMVrYApU8L .tabs-wrapper {
  padding-bottom: 24px;
  border-bottom: 1px solid #1f0931;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uMVrYApU8L .tabs-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMVrYApU8L .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uMVrYApU8L .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 8px 8px;
}
.cid-uMVrYApU8L .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #ffffff;
  padding: 14px 32px;
  margin-bottom: 0;
  background-color: #848abd;
  border: none;
}
.cid-uMVrYApU8L .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  color: #ffffff;
  background-color: #1f0931;
}
.cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper {
    display: block;
  }
}
.cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper .image-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper .image-wrapper img {
  height: 440px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper .text-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper .text-wrapper .item-title {
  margin-bottom: 24px;
}
.cid-uMVrYApU8L .tab-content .tab-pane .content-wrapper .text-wrapper .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uMVrYApU8L .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMVrYApU8L .mbr-text {
  color: #813fb8;
  text-align: center;
}
.cid-uMVrYApU8L .item-title {
  color: #813fb8;
}
.cid-uMVrYApU8L .item-text {
  color: #000000;
}
.cid-uMVRFwX62D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uMVRFwX62D .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uMVRFwX62D img {
    width: 90%;
  }
}
.cid-uMVRFwX62D .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uMVRFwX62D .items {
  margin-bottom: 0;
}
.cid-uMVRFwX62D .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uMVRFwX62D .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uMVRFwX62D .soc-item:hover span {
  color: #38346b !important;
}
.cid-uMVRFwX62D .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uMVRFwX62D .social-list {
    justify-content: center;
  }
}
.cid-uMVRFwX62D .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uO7kDcHojS {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/hoppin-bruhz-1024x683.jpeg");
}
.cid-uO7kDcHojS .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-uO7kDcHojS .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uO7kDcHojS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO7kDcHojS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMVROYFPca {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uMVROYFPca .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uMVROYFPca img {
    width: 90%;
  }
}
.cid-uMVROYFPca .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uMVROYFPca .items {
  margin-bottom: 0;
}
.cid-uMVROYFPca .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uMVROYFPca .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uMVROYFPca .soc-item:hover span {
  color: #38346b !important;
}
.cid-uMVROYFPca .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uMVROYFPca .social-list {
    justify-content: center;
  }
}
.cid-uMVROYFPca .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uO7kE9TI8J {
  padding-top: 225px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/cycle-3-960x720.jpeg");
}
.cid-uO7kE9TI8J .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-uO7kE9TI8J .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uO7kE9TI8J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO7kE9TI8J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwNgensB77 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hop-2-259x194.jpeg");
}
.cid-uwNgensB77 .mbr-section-title {
  color: #404040;
}
.cid-uwNgensB77 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uwNgensB77 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-uwNgensB77 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uwNgensB77 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwNgensB77 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwNgensB77 .mbr-section-title,
.cid-uwNgensB77 .icon-wrap,
.cid-uwNgensB77 .mbr-section-btn {
  color: #b469fb;
}
.cid-uwBH66xeQY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uwBH66xeQY .container-fluid {
  padding: 0 3rem;
}
.cid-uwBH66xeQY .media-container-column {
  padding: 0 2rem;
}
.cid-uwBH66xeQY .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uwBH66xeQY .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uwBTR1Sfes.popup-builder {
  background-color: #ffffff;
}
.cid-uwBTR1Sfes.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwBTR1Sfes.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwBTR1Sfes .modal-content,
.cid-uwBTR1Sfes .modal-dialog {
  height: auto;
}
.cid-uwBTR1Sfes .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwBTR1Sfes .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwBTR1Sfes .form-wrapper .mbr-form .form-group,
  .cid-uwBTR1Sfes .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwBTR1Sfes .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwBTR1Sfes .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-uwBTR1Sfes .mbr-text {
  text-align: center;
}
.cid-uwBTR1Sfes .pt-0 {
  padding-top: 0 !important;
}
.cid-uwBTR1Sfes .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwBTR1Sfes .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwBTR1Sfes .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwBTR1Sfes .modal-open {
  overflow: hidden;
}
.cid-uwBTR1Sfes .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwBTR1Sfes .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwBTR1Sfes .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwBTR1Sfes .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-uwBTR1Sfes .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwBTR1Sfes .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwBTR1Sfes .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwBTR1Sfes .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwBTR1Sfes .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwBTR1Sfes .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwBTR1Sfes .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwBTR1Sfes .modal-backdrop.show {
  opacity: .5;
}
.cid-uwBTR1Sfes .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-uwBTR1Sfes .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBTR1Sfes .modal-header {
    padding: 1rem;
  }
}
.cid-uwBTR1Sfes .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwBTR1Sfes .modal-header .close svg {
  fill: #611750;
}
.cid-uwBTR1Sfes .modal-header .close:hover {
  opacity: 1;
}
.cid-uwBTR1Sfes .modal-header .close:focus {
  outline: none;
}
.cid-uwBTR1Sfes .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwBTR1Sfes .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwBTR1Sfes .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBTR1Sfes .modal-body {
    padding: 1rem;
  }
}
.cid-uwBTR1Sfes .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-uwBTR1Sfes .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBTR1Sfes .modal-footer {
    padding: 1rem;
  }
}
.cid-uwBTR1Sfes .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwBTR1Sfes .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwBTR1Sfes .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwBTR1Sfes .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwBTR1Sfes .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwBTR1Sfes .modal-lg,
  .cid-uwBTR1Sfes .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwBTR1Sfes .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwBTR1Sfes .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwBTR1Sfes .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-uwBTR1Sfes .form-group {
  margin-bottom: 1rem;
}
.cid-uwBTR1Sfes .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwBTR1Sfes .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwBTR1Sfes .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-uwBTR1Sfes .mbr-section-btn {
  margin: 0;
}
.cid-uwBTR1Sfes .mbr-section-btn .btn {
  margin: 0;
}
.cid-uMVxDSBAqd.popup-builder {
  background-color: #ffffff;
}
.cid-uMVxDSBAqd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uMVxDSBAqd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uMVxDSBAqd .modal-content,
.cid-uMVxDSBAqd .modal-dialog {
  height: auto;
}
.cid-uMVxDSBAqd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uMVxDSBAqd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uMVxDSBAqd .form-wrapper .mbr-form .form-group,
  .cid-uMVxDSBAqd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uMVxDSBAqd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uMVxDSBAqd .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-uMVxDSBAqd .mbr-text {
  text-align: center;
  color: #e6eaf1;
}
.cid-uMVxDSBAqd .pt-0 {
  padding-top: 0 !important;
}
.cid-uMVxDSBAqd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uMVxDSBAqd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uMVxDSBAqd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uMVxDSBAqd .modal-open {
  overflow: hidden;
}
.cid-uMVxDSBAqd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uMVxDSBAqd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uMVxDSBAqd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uMVxDSBAqd .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-uMVxDSBAqd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uMVxDSBAqd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uMVxDSBAqd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uMVxDSBAqd .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uMVxDSBAqd .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uMVxDSBAqd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uMVxDSBAqd .modal-backdrop.fade {
  opacity: 0;
}
.cid-uMVxDSBAqd .modal-backdrop.show {
  opacity: .5;
}
.cid-uMVxDSBAqd .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-uMVxDSBAqd .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uMVxDSBAqd .modal-header {
    padding: 1rem;
  }
}
.cid-uMVxDSBAqd .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uMVxDSBAqd .modal-header .close svg {
  fill: #353535;
}
.cid-uMVxDSBAqd .modal-header .close:hover {
  opacity: 1;
}
.cid-uMVxDSBAqd .modal-header .close:focus {
  outline: none;
}
.cid-uMVxDSBAqd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uMVxDSBAqd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uMVxDSBAqd .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMVxDSBAqd .modal-body {
    padding: 1rem;
  }
}
.cid-uMVxDSBAqd .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-uMVxDSBAqd .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMVxDSBAqd .modal-footer {
    padding: 1rem;
  }
}
.cid-uMVxDSBAqd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uMVxDSBAqd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uMVxDSBAqd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uMVxDSBAqd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uMVxDSBAqd .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uMVxDSBAqd .modal-lg,
  .cid-uMVxDSBAqd .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uMVxDSBAqd .modal-xl {
    max-width: 1140px;
  }
}
.cid-uMVxDSBAqd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uMVxDSBAqd .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-uMVxDSBAqd .form-group {
  margin-bottom: 1rem;
}
.cid-uMVxDSBAqd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uMVxDSBAqd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uMVxDSBAqd .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-uMVxDSBAqd .mbr-section-btn {
  margin: 0;
}
.cid-uMVxDSBAqd .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwBH66RBpL.popup-builder {
  background-color: #ffffff;
}
.cid-uwBH66RBpL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwBH66RBpL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwBH66RBpL .modal-content,
.cid-uwBH66RBpL .modal-dialog {
  height: auto;
}
.cid-uwBH66RBpL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwBH66RBpL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwBH66RBpL .form-wrapper .mbr-form .form-group,
  .cid-uwBH66RBpL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwBH66RBpL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwBH66RBpL .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-uwBH66RBpL .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uwBH66RBpL .pt-0 {
  padding-top: 0 !important;
}
.cid-uwBH66RBpL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwBH66RBpL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwBH66RBpL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwBH66RBpL .modal-open {
  overflow: hidden;
}
.cid-uwBH66RBpL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwBH66RBpL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwBH66RBpL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwBH66RBpL .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-uwBH66RBpL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwBH66RBpL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwBH66RBpL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwBH66RBpL .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwBH66RBpL .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwBH66RBpL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwBH66RBpL .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwBH66RBpL .modal-backdrop.show {
  opacity: .5;
}
.cid-uwBH66RBpL .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-uwBH66RBpL .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH66RBpL .modal-header {
    padding: 1rem;
  }
}
.cid-uwBH66RBpL .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwBH66RBpL .modal-header .close svg {
  fill: #260641;
}
.cid-uwBH66RBpL .modal-header .close:hover {
  opacity: 1;
}
.cid-uwBH66RBpL .modal-header .close:focus {
  outline: none;
}
.cid-uwBH66RBpL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uwBH66RBpL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwBH66RBpL .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH66RBpL .modal-body {
    padding: 1rem;
  }
}
.cid-uwBH66RBpL .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-uwBH66RBpL .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH66RBpL .modal-footer {
    padding: 1rem;
  }
}
.cid-uwBH66RBpL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwBH66RBpL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwBH66RBpL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwBH66RBpL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwBH66RBpL .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwBH66RBpL .modal-lg,
  .cid-uwBH66RBpL .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwBH66RBpL .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwBH66RBpL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwBH66RBpL .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-uwBH66RBpL .form-group {
  margin-bottom: 1rem;
}
.cid-uwBH66RBpL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwBH66RBpL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwBH66RBpL .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-uwBH66RBpL .mbr-section-btn {
  margin: 0;
}
.cid-uwBH66RBpL .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAbQGEGhyT.popup-builder {
  background-color: #ffffff;
}
.cid-uAbQGEGhyT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAbQGEGhyT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAbQGEGhyT .modal-content,
.cid-uAbQGEGhyT .modal-dialog {
  height: auto;
}
.cid-uAbQGEGhyT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAbQGEGhyT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAbQGEGhyT .form-wrapper .mbr-form .form-group,
  .cid-uAbQGEGhyT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAbQGEGhyT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAbQGEGhyT .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-uAbQGEGhyT .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAbQGEGhyT .pt-0 {
  padding-top: 0 !important;
}
.cid-uAbQGEGhyT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAbQGEGhyT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAbQGEGhyT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAbQGEGhyT .modal-open {
  overflow: hidden;
}
.cid-uAbQGEGhyT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAbQGEGhyT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAbQGEGhyT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAbQGEGhyT .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-uAbQGEGhyT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAbQGEGhyT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAbQGEGhyT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAbQGEGhyT .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAbQGEGhyT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAbQGEGhyT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAbQGEGhyT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAbQGEGhyT .modal-backdrop.show {
  opacity: .5;
}
.cid-uAbQGEGhyT .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-uAbQGEGhyT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAbQGEGhyT .modal-header {
    padding: 1rem;
  }
}
.cid-uAbQGEGhyT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAbQGEGhyT .modal-header .close svg {
  fill: #260641;
}
.cid-uAbQGEGhyT .modal-header .close:hover {
  opacity: 1;
}
.cid-uAbQGEGhyT .modal-header .close:focus {
  outline: none;
}
.cid-uAbQGEGhyT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAbQGEGhyT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAbQGEGhyT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAbQGEGhyT .modal-body {
    padding: 1rem;
  }
}
.cid-uAbQGEGhyT .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-uAbQGEGhyT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAbQGEGhyT .modal-footer {
    padding: 1rem;
  }
}
.cid-uAbQGEGhyT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAbQGEGhyT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAbQGEGhyT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAbQGEGhyT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAbQGEGhyT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAbQGEGhyT .modal-lg,
  .cid-uAbQGEGhyT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAbQGEGhyT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAbQGEGhyT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAbQGEGhyT .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-uAbQGEGhyT .form-group {
  margin-bottom: 1rem;
}
.cid-uAbQGEGhyT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAbQGEGhyT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAbQGEGhyT .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-uAbQGEGhyT .mbr-section-btn {
  margin: 0;
}
.cid-uAbQGEGhyT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAbTb3fWrD.popup-builder {
  background-color: #ffffff;
}
.cid-uAbTb3fWrD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAbTb3fWrD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAbTb3fWrD .modal-content,
.cid-uAbTb3fWrD .modal-dialog {
  height: auto;
}
.cid-uAbTb3fWrD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAbTb3fWrD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAbTb3fWrD .form-wrapper .mbr-form .form-group,
  .cid-uAbTb3fWrD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAbTb3fWrD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAbTb3fWrD .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-uAbTb3fWrD .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uAbTb3fWrD .pt-0 {
  padding-top: 0 !important;
}
.cid-uAbTb3fWrD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAbTb3fWrD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAbTb3fWrD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAbTb3fWrD .modal-open {
  overflow: hidden;
}
.cid-uAbTb3fWrD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAbTb3fWrD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAbTb3fWrD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAbTb3fWrD .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-uAbTb3fWrD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAbTb3fWrD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAbTb3fWrD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAbTb3fWrD .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uAbTb3fWrD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAbTb3fWrD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAbTb3fWrD .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAbTb3fWrD .modal-backdrop.show {
  opacity: .5;
}
.cid-uAbTb3fWrD .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-uAbTb3fWrD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAbTb3fWrD .modal-header {
    padding: 1rem;
  }
}
.cid-uAbTb3fWrD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAbTb3fWrD .modal-header .close svg {
  fill: #260641;
}
.cid-uAbTb3fWrD .modal-header .close:hover {
  opacity: 1;
}
.cid-uAbTb3fWrD .modal-header .close:focus {
  outline: none;
}
.cid-uAbTb3fWrD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uAbTb3fWrD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAbTb3fWrD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAbTb3fWrD .modal-body {
    padding: 1rem;
  }
}
.cid-uAbTb3fWrD .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-uAbTb3fWrD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAbTb3fWrD .modal-footer {
    padding: 1rem;
  }
}
.cid-uAbTb3fWrD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAbTb3fWrD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAbTb3fWrD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAbTb3fWrD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAbTb3fWrD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAbTb3fWrD .modal-lg,
  .cid-uAbTb3fWrD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAbTb3fWrD .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAbTb3fWrD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAbTb3fWrD .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-uAbTb3fWrD .form-group {
  margin-bottom: 1rem;
}
.cid-uAbTb3fWrD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAbTb3fWrD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAbTb3fWrD .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-uAbTb3fWrD .mbr-section-btn {
  margin: 0;
}
.cid-uAbTb3fWrD .mbr-section-btn .btn {
  margin: 0;
}
.cid-uA6g1m5e16.popup-builder {
  background-color: #ffffff;
}
.cid-uA6g1m5e16.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uA6g1m5e16.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uA6g1m5e16 .modal-content,
.cid-uA6g1m5e16 .modal-dialog {
  height: auto;
}
.cid-uA6g1m5e16 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uA6g1m5e16 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uA6g1m5e16 .form-wrapper .mbr-form .form-group,
  .cid-uA6g1m5e16 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uA6g1m5e16 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uA6g1m5e16 .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-uA6g1m5e16 .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uA6g1m5e16 .pt-0 {
  padding-top: 0 !important;
}
.cid-uA6g1m5e16 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uA6g1m5e16 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uA6g1m5e16 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uA6g1m5e16 .modal-open {
  overflow: hidden;
}
.cid-uA6g1m5e16 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uA6g1m5e16 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uA6g1m5e16 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uA6g1m5e16 .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-uA6g1m5e16 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uA6g1m5e16 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uA6g1m5e16 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uA6g1m5e16 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uA6g1m5e16 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uA6g1m5e16 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uA6g1m5e16 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uA6g1m5e16 .modal-backdrop.show {
  opacity: .5;
}
.cid-uA6g1m5e16 .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-uA6g1m5e16 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uA6g1m5e16 .modal-header {
    padding: 1rem;
  }
}
.cid-uA6g1m5e16 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uA6g1m5e16 .modal-header .close svg {
  fill: #260641;
}
.cid-uA6g1m5e16 .modal-header .close:hover {
  opacity: 1;
}
.cid-uA6g1m5e16 .modal-header .close:focus {
  outline: none;
}
.cid-uA6g1m5e16 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uA6g1m5e16 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uA6g1m5e16 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uA6g1m5e16 .modal-body {
    padding: 1rem;
  }
}
.cid-uA6g1m5e16 .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-uA6g1m5e16 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uA6g1m5e16 .modal-footer {
    padding: 1rem;
  }
}
.cid-uA6g1m5e16 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uA6g1m5e16 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uA6g1m5e16 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uA6g1m5e16 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uA6g1m5e16 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uA6g1m5e16 .modal-lg,
  .cid-uA6g1m5e16 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uA6g1m5e16 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uA6g1m5e16 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uA6g1m5e16 .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-uA6g1m5e16 .form-group {
  margin-bottom: 1rem;
}
.cid-uA6g1m5e16 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uA6g1m5e16 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uA6g1m5e16 .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-uA6g1m5e16 .mbr-section-btn {
  margin: 0;
}
.cid-uA6g1m5e16 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwBH67oADa.popup-builder {
  background-color: #ffffff;
}
.cid-uwBH67oADa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwBH67oADa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwBH67oADa .modal-content,
.cid-uwBH67oADa .modal-dialog {
  height: auto;
}
.cid-uwBH67oADa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwBH67oADa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwBH67oADa .form-wrapper .mbr-form .form-group,
  .cid-uwBH67oADa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwBH67oADa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwBH67oADa .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-uwBH67oADa .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uwBH67oADa .pt-0 {
  padding-top: 0 !important;
}
.cid-uwBH67oADa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwBH67oADa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwBH67oADa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwBH67oADa .modal-open {
  overflow: hidden;
}
.cid-uwBH67oADa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwBH67oADa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwBH67oADa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwBH67oADa .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-uwBH67oADa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwBH67oADa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwBH67oADa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwBH67oADa .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwBH67oADa .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwBH67oADa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwBH67oADa .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwBH67oADa .modal-backdrop.show {
  opacity: .5;
}
.cid-uwBH67oADa .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-uwBH67oADa .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH67oADa .modal-header {
    padding: 1rem;
  }
}
.cid-uwBH67oADa .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwBH67oADa .modal-header .close svg {
  fill: #5849aa;
}
.cid-uwBH67oADa .modal-header .close:hover {
  opacity: 1;
}
.cid-uwBH67oADa .modal-header .close:focus {
  outline: none;
}
.cid-uwBH67oADa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uwBH67oADa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwBH67oADa .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH67oADa .modal-body {
    padding: 1rem;
  }
}
.cid-uwBH67oADa .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-uwBH67oADa .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH67oADa .modal-footer {
    padding: 1rem;
  }
}
.cid-uwBH67oADa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwBH67oADa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwBH67oADa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwBH67oADa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwBH67oADa .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwBH67oADa .modal-lg,
  .cid-uwBH67oADa .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwBH67oADa .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwBH67oADa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwBH67oADa .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-uwBH67oADa .form-group {
  margin-bottom: 1rem;
}
.cid-uwBH67oADa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwBH67oADa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwBH67oADa .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-uwBH67oADa .mbr-section-btn {
  margin: 0;
}
.cid-uwBH67oADa .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwBH67QyhO.popup-builder {
  background-color: #ffffff;
}
.cid-uwBH67QyhO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwBH67QyhO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwBH67QyhO .modal-content,
.cid-uwBH67QyhO .modal-dialog {
  height: auto;
}
.cid-uwBH67QyhO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwBH67QyhO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwBH67QyhO .form-wrapper .mbr-form .form-group,
  .cid-uwBH67QyhO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwBH67QyhO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwBH67QyhO .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-uwBH67QyhO .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uwBH67QyhO .pt-0 {
  padding-top: 0 !important;
}
.cid-uwBH67QyhO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwBH67QyhO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwBH67QyhO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwBH67QyhO .modal-open {
  overflow: hidden;
}
.cid-uwBH67QyhO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwBH67QyhO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwBH67QyhO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwBH67QyhO .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-uwBH67QyhO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwBH67QyhO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwBH67QyhO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwBH67QyhO .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwBH67QyhO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwBH67QyhO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwBH67QyhO .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwBH67QyhO .modal-backdrop.show {
  opacity: .5;
}
.cid-uwBH67QyhO .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-uwBH67QyhO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH67QyhO .modal-header {
    padding: 1rem;
  }
}
.cid-uwBH67QyhO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwBH67QyhO .modal-header .close svg {
  fill: #611750;
}
.cid-uwBH67QyhO .modal-header .close:hover {
  opacity: 1;
}
.cid-uwBH67QyhO .modal-header .close:focus {
  outline: none;
}
.cid-uwBH67QyhO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uwBH67QyhO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwBH67QyhO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH67QyhO .modal-body {
    padding: 1rem;
  }
}
.cid-uwBH67QyhO .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-uwBH67QyhO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH67QyhO .modal-footer {
    padding: 1rem;
  }
}
.cid-uwBH67QyhO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwBH67QyhO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwBH67QyhO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwBH67QyhO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwBH67QyhO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwBH67QyhO .modal-lg,
  .cid-uwBH67QyhO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwBH67QyhO .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwBH67QyhO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwBH67QyhO .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-uwBH67QyhO .form-group {
  margin-bottom: 1rem;
}
.cid-uwBH67QyhO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwBH67QyhO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwBH67QyhO .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-uwBH67QyhO .mbr-section-btn {
  margin: 0;
}
.cid-uwBH67QyhO .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwBH68nS4q.popup-builder {
  background-color: #ffffff;
}
.cid-uwBH68nS4q.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwBH68nS4q.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwBH68nS4q .modal-content,
.cid-uwBH68nS4q .modal-dialog {
  height: auto;
}
.cid-uwBH68nS4q .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwBH68nS4q .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwBH68nS4q .form-wrapper .mbr-form .form-group,
  .cid-uwBH68nS4q .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwBH68nS4q .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwBH68nS4q .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-uwBH68nS4q .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uwBH68nS4q .pt-0 {
  padding-top: 0 !important;
}
.cid-uwBH68nS4q .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwBH68nS4q .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwBH68nS4q .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwBH68nS4q .modal-open {
  overflow: hidden;
}
.cid-uwBH68nS4q .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwBH68nS4q .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwBH68nS4q .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwBH68nS4q .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-uwBH68nS4q .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwBH68nS4q .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwBH68nS4q .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwBH68nS4q .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwBH68nS4q .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwBH68nS4q .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwBH68nS4q .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwBH68nS4q .modal-backdrop.show {
  opacity: .5;
}
.cid-uwBH68nS4q .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-uwBH68nS4q .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH68nS4q .modal-header {
    padding: 1rem;
  }
}
.cid-uwBH68nS4q .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwBH68nS4q .modal-header .close svg {
  fill: #59307c;
}
.cid-uwBH68nS4q .modal-header .close:hover {
  opacity: 1;
}
.cid-uwBH68nS4q .modal-header .close:focus {
  outline: none;
}
.cid-uwBH68nS4q .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uwBH68nS4q .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwBH68nS4q .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH68nS4q .modal-body {
    padding: 1rem;
  }
}
.cid-uwBH68nS4q .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-uwBH68nS4q .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH68nS4q .modal-footer {
    padding: 1rem;
  }
}
.cid-uwBH68nS4q .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwBH68nS4q .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwBH68nS4q .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwBH68nS4q .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwBH68nS4q .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwBH68nS4q .modal-lg,
  .cid-uwBH68nS4q .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwBH68nS4q .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwBH68nS4q .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwBH68nS4q .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-uwBH68nS4q .form-group {
  margin-bottom: 1rem;
}
.cid-uwBH68nS4q .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwBH68nS4q .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwBH68nS4q .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-uwBH68nS4q .mbr-section-btn {
  margin: 0;
}
.cid-uwBH68nS4q .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwBH68RUbR.popup-builder {
  background-color: #ffffff;
}
.cid-uwBH68RUbR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwBH68RUbR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwBH68RUbR .modal-content,
.cid-uwBH68RUbR .modal-dialog {
  height: auto;
}
.cid-uwBH68RUbR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwBH68RUbR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwBH68RUbR .form-wrapper .mbr-form .form-group,
  .cid-uwBH68RUbR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwBH68RUbR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwBH68RUbR .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-uwBH68RUbR .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uwBH68RUbR .pt-0 {
  padding-top: 0 !important;
}
.cid-uwBH68RUbR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwBH68RUbR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwBH68RUbR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwBH68RUbR .modal-open {
  overflow: hidden;
}
.cid-uwBH68RUbR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwBH68RUbR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwBH68RUbR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwBH68RUbR .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-uwBH68RUbR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwBH68RUbR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwBH68RUbR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwBH68RUbR .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwBH68RUbR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwBH68RUbR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwBH68RUbR .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwBH68RUbR .modal-backdrop.show {
  opacity: .5;
}
.cid-uwBH68RUbR .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-uwBH68RUbR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH68RUbR .modal-header {
    padding: 1rem;
  }
}
.cid-uwBH68RUbR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwBH68RUbR .modal-header .close svg {
  fill: #ffffff;
}
.cid-uwBH68RUbR .modal-header .close:hover {
  opacity: 1;
}
.cid-uwBH68RUbR .modal-header .close:focus {
  outline: none;
}
.cid-uwBH68RUbR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uwBH68RUbR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwBH68RUbR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH68RUbR .modal-body {
    padding: 1rem;
  }
}
.cid-uwBH68RUbR .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-uwBH68RUbR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwBH68RUbR .modal-footer {
    padding: 1rem;
  }
}
.cid-uwBH68RUbR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwBH68RUbR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwBH68RUbR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwBH68RUbR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwBH68RUbR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwBH68RUbR .modal-lg,
  .cid-uwBH68RUbR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwBH68RUbR .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwBH68RUbR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwBH68RUbR .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-uwBH68RUbR .form-group {
  margin-bottom: 1rem;
}
.cid-uwBH68RUbR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwBH68RUbR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwBH68RUbR .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-uwBH68RUbR .mbr-section-btn {
  margin: 0;
}
.cid-uwBH68RUbR .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwNdAocBtT.popup-builder {
  background-color: #ffffff;
}
.cid-uwNdAocBtT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwNdAocBtT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwNdAocBtT .modal-content,
.cid-uwNdAocBtT .modal-dialog {
  height: auto;
}
.cid-uwNdAocBtT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwNdAocBtT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwNdAocBtT .form-wrapper .mbr-form .form-group,
  .cid-uwNdAocBtT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwNdAocBtT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwNdAocBtT .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-uwNdAocBtT .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uwNdAocBtT .pt-0 {
  padding-top: 0 !important;
}
.cid-uwNdAocBtT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwNdAocBtT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwNdAocBtT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwNdAocBtT .modal-open {
  overflow: hidden;
}
.cid-uwNdAocBtT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwNdAocBtT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwNdAocBtT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwNdAocBtT .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-uwNdAocBtT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwNdAocBtT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwNdAocBtT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwNdAocBtT .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uwNdAocBtT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwNdAocBtT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwNdAocBtT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwNdAocBtT .modal-backdrop.show {
  opacity: .5;
}
.cid-uwNdAocBtT .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-uwNdAocBtT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAocBtT .modal-header {
    padding: 1rem;
  }
}
.cid-uwNdAocBtT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwNdAocBtT .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uwNdAocBtT .modal-header .close:hover {
  opacity: 1;
}
.cid-uwNdAocBtT .modal-header .close:focus {
  outline: none;
}
.cid-uwNdAocBtT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uwNdAocBtT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwNdAocBtT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAocBtT .modal-body {
    padding: 1rem;
  }
}
.cid-uwNdAocBtT .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-uwNdAocBtT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwNdAocBtT .modal-footer {
    padding: 1rem;
  }
}
.cid-uwNdAocBtT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwNdAocBtT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwNdAocBtT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwNdAocBtT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwNdAocBtT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwNdAocBtT .modal-lg,
  .cid-uwNdAocBtT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwNdAocBtT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwNdAocBtT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwNdAocBtT .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-uwNdAocBtT .form-group {
  margin-bottom: 1rem;
}
.cid-uwNdAocBtT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwNdAocBtT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwNdAocBtT .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-uwNdAocBtT .mbr-section-btn {
  margin: 0;
}
.cid-uwNdAocBtT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMjTfs.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMjTfs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMjTfs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMjTfs .modal-content,
.cid-uO9WTMjTfs .modal-dialog {
  height: auto;
}
.cid-uO9WTMjTfs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMjTfs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMjTfs .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMjTfs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMjTfs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMjTfs .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-uO9WTMjTfs .mbr-text {
  text-align: center;
}
.cid-uO9WTMjTfs .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMjTfs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMjTfs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMjTfs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMjTfs .modal-open {
  overflow: hidden;
}
.cid-uO9WTMjTfs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMjTfs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMjTfs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMjTfs .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-uO9WTMjTfs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMjTfs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMjTfs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMjTfs .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMjTfs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMjTfs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMjTfs .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMjTfs .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMjTfs .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-uO9WTMjTfs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjTfs .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMjTfs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMjTfs .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMjTfs .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMjTfs .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMjTfs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMjTfs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMjTfs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjTfs .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMjTfs .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-uO9WTMjTfs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjTfs .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMjTfs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMjTfs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMjTfs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMjTfs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMjTfs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMjTfs .modal-lg,
  .cid-uO9WTMjTfs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMjTfs .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMjTfs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMjTfs .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-uO9WTMjTfs .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMjTfs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMjTfs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMjTfs .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-uO9WTMjTfs .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMjTfs .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNYgEN51wM .dropdown-menu {
  padding: 12px 0;
}
.cid-uNYgEN51wM .dropdown-item:hover,
.cid-uNYgEN51wM .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uNYgEN51wM .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uNYgEN51wM .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uNYgEN51wM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uNYgEN51wM .nav-link {
  position: relative;
}
.cid-uNYgEN51wM .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uNYgEN51wM .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNYgEN51wM .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uNYgEN51wM .dropdown-menu,
.cid-uNYgEN51wM .navbar.opened {
  background: #1f0931 !important;
}
.cid-uNYgEN51wM .nav-item:focus,
.cid-uNYgEN51wM .nav-link:focus {
  outline: none;
}
.cid-uNYgEN51wM .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uNYgEN51wM .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uNYgEN51wM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uNYgEN51wM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNYgEN51wM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uNYgEN51wM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uNYgEN51wM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNYgEN51wM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNYgEN51wM .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uNYgEN51wM .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uNYgEN51wM .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uNYgEN51wM .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uNYgEN51wM .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uNYgEN51wM .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uNYgEN51wM .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uNYgEN51wM .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uNYgEN51wM .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uNYgEN51wM .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uNYgEN51wM .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uNYgEN51wM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNYgEN51wM .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uNYgEN51wM .navbar.collapsed.opened {
  position: fixed;
}
.cid-uNYgEN51wM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uNYgEN51wM .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uNYgEN51wM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uNYgEN51wM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNYgEN51wM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNYgEN51wM .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: 55%;
}
.cid-uNYgEN51wM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNYgEN51wM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNYgEN51wM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uNYgEN51wM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNYgEN51wM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNYgEN51wM .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uNYgEN51wM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNYgEN51wM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNYgEN51wM .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: 41%;
  }
  .cid-uNYgEN51wM .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uNYgEN51wM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uNYgEN51wM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uNYgEN51wM .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uNYgEN51wM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uNYgEN51wM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uNYgEN51wM .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uNYgEN51wM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uNYgEN51wM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uNYgEN51wM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uNYgEN51wM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNYgEN51wM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNYgEN51wM .dropdown-item.active,
.cid-uNYgEN51wM .dropdown-item:active {
  background-color: transparent;
}
.cid-uNYgEN51wM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNYgEN51wM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNYgEN51wM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNYgEN51wM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uNYgEN51wM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uNYgEN51wM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uNYgEN51wM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uNYgEN51wM .navbar-buttons {
  text-align: center;
}
.cid-uNYgEN51wM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uNYgEN51wM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uNYgEN51wM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNYgEN51wM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNYgEN51wM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNYgEN51wM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNYgEN51wM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNYgEN51wM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNYgEN51wM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNYgEN51wM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNYgEN51wM .navbar-dropdown {
  position: fixed;
}
.cid-uNYgEN51wM a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uNYgEN51wM .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uNYgEN51wM .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uNYgEN51wM .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNYgEN51wM .navbar {
    height: 77px;
  }
  .cid-uNYgEN51wM .navbar.opened {
    height: auto;
  }
  .cid-uNYgEN51wM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNYgENGUwL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uNYgENGUwL .container-fluid {
  padding: 0 3rem;
}
.cid-uNYgENGUwL .media-container-column {
  padding: 0 2rem;
}
.cid-uNYgENGUwL .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uNYgENGUwL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNYgENXC1B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uNYgENXC1B .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uNYgENXC1B img {
    width: 90%;
  }
}
.cid-uNYgENXC1B .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uNYgENXC1B .items {
  margin-bottom: 0;
}
.cid-uNYgENXC1B .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uNYgENXC1B .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uNYgENXC1B .soc-item:hover span {
  color: #38346b !important;
}
.cid-uNYgENXC1B .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uNYgENXC1B .social-list {
    justify-content: center;
  }
}
.cid-uNYgENXC1B .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uNYgEOT45H {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-uNYgEOT45H .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uNYgEOT45H .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uNYgEOT45H .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uNYgEOT45H .main-title.display-2 {
  line-height: 1.375;
}
.cid-uNYgEOT45H .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uNYgEOT45H .mbr-text {
  color: #606060;
}
.cid-uNYgEOT45H .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uNYgEOT45H .mbr-section-btn {
  margin-top: 24px;
}
.cid-uNYgEOT45H .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uNYgEOT45H .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uNYgEOT45H .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uNYgEOT45H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNYgEOT45H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNYgEOT45H .mbr-text,
.cid-uNYgEOT45H .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uNYgEOT45H .main-title,
.cid-uNYgEOT45H .mbr-section-btn {
  text-align: center;
}
.cid-uNYgEOT45H .mbr-section-subtitle,
.cid-uNYgEOT45H .mbr-section-btn {
  color: #624977;
  text-align: center;
}
.cid-uQfJHkAwSh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/youtube-banner-2000x1125.jpg");
}
.cid-uQfJHkAwSh .container-fluid {
  padding: 0 3rem;
}
.cid-uQfJHkAwSh .media-container-column {
  padding: 0 2rem;
}
.cid-uQfJHkAwSh .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #102f62;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uQfJHkAwSh .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQfJHkAwSh .mbr-section-subtitle {
  color: #f3f3f3;
  text-align: left;
}
.cid-uNYgEPc0cf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uNYgEPc0cf .container-fluid {
  padding: 0 3rem;
}
.cid-uNYgEPc0cf .media-container-column {
  padding: 0 2rem;
}
.cid-uNYgEPc0cf .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uNYgEPc0cf .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uO3g7jXX9l {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #1f0931;
}
.cid-uO3g7jXX9l .nav-tabs .nav-item.open .nav-link:focus,
.cid-uO3g7jXX9l .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uO3g7jXX9l .nav-tabs {
  border: none;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uO3g7jXX9l .nav-item {
    margin: 0;
  }
}
.cid-uO3g7jXX9l .nav-tabs .nav-link {
  transition: all 0.5s;
  border-radius: 6px !important;
  width: max-content;
  border: none;
}
.cid-uO3g7jXX9l .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
.cid-uO3g7jXX9l .nav-link,
.cid-uO3g7jXX9l .nav-link.active {
  padding: 0.8rem 2rem;
  background-color: transparent;
  font-weight: bold;
  text-align: center;
}
.cid-uO3g7jXX9l .nav-tabs .nav-link.active {
  background: #8b8c4d;
  color: #ffffff;
}
.cid-uO3g7jXX9l H4 {
  text-align: center;
}
.cid-uO3g7jXX9l H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uO3g7jXX9l P {
  color: #ffffff;
}
.cid-uO3g7jXX9l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO3g7jXX9l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNYgEQI5rX {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uNYgEQI5rX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNYgEQI5rX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNYgEQI5rX .container {
    padding: 0 16px;
  }
}
.cid-uNYgEQI5rX .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uNYgEQI5rX .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNYgEQI5rX .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uNYgEQI5rX .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uNYgEQI5rX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNYgEQI5rX .mbr-text {
  color: #ffffff;
}
.cid-uNYgEQI5rX .mbr-text,
.cid-uNYgEQI5rX .mbr-section-btn {
  text-align: center;
  color: #813fb8;
}
.cid-uNYgEQI5rX .mbr-section-title,
.cid-uNYgEQI5rX .title-wrap {
  color: #813fb8;
}
.cid-uNYgEQZjxw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uNYgEQZjxw .container-fluid {
  padding: 0 3rem;
}
.cid-uNYgEQZjxw .media-container-column {
  padding: 0 2rem;
}
.cid-uNYgEQZjxw .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uNYgEQZjxw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uNYgERk60G.popup-builder {
  background-color: #ffffff;
}
.cid-uNYgERk60G.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNYgERk60G.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNYgERk60G .modal-content,
.cid-uNYgERk60G .modal-dialog {
  height: auto;
}
.cid-uNYgERk60G .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNYgERk60G .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNYgERk60G .form-wrapper .mbr-form .form-group,
  .cid-uNYgERk60G .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNYgERk60G .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNYgERk60G .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-uNYgERk60G .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uNYgERk60G .pt-0 {
  padding-top: 0 !important;
}
.cid-uNYgERk60G .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNYgERk60G .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNYgERk60G .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNYgERk60G .modal-open {
  overflow: hidden;
}
.cid-uNYgERk60G .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNYgERk60G .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNYgERk60G .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNYgERk60G .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-uNYgERk60G .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNYgERk60G .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNYgERk60G .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNYgERk60G .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uNYgERk60G .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNYgERk60G .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNYgERk60G .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNYgERk60G .modal-backdrop.show {
  opacity: .5;
}
.cid-uNYgERk60G .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-uNYgERk60G .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgERk60G .modal-header {
    padding: 1rem;
  }
}
.cid-uNYgERk60G .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNYgERk60G .modal-header .close svg {
  fill: #260641;
}
.cid-uNYgERk60G .modal-header .close:hover {
  opacity: 1;
}
.cid-uNYgERk60G .modal-header .close:focus {
  outline: none;
}
.cid-uNYgERk60G .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uNYgERk60G .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNYgERk60G .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgERk60G .modal-body {
    padding: 1rem;
  }
}
.cid-uNYgERk60G .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-uNYgERk60G .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgERk60G .modal-footer {
    padding: 1rem;
  }
}
.cid-uNYgERk60G .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNYgERk60G .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNYgERk60G .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNYgERk60G .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNYgERk60G .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNYgERk60G .modal-lg,
  .cid-uNYgERk60G .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNYgERk60G .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNYgERk60G .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNYgERk60G .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-uNYgERk60G .form-group {
  margin-bottom: 1rem;
}
.cid-uNYgERk60G .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNYgERk60G .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNYgERk60G .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-uNYgERk60G .mbr-section-btn {
  margin: 0;
}
.cid-uNYgERk60G .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNYgERNr1A.popup-builder {
  background-color: #ffffff;
}
.cid-uNYgERNr1A.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNYgERNr1A.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNYgERNr1A .modal-content,
.cid-uNYgERNr1A .modal-dialog {
  height: auto;
}
.cid-uNYgERNr1A .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNYgERNr1A .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNYgERNr1A .form-wrapper .mbr-form .form-group,
  .cid-uNYgERNr1A .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNYgERNr1A .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNYgERNr1A .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-uNYgERNr1A .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uNYgERNr1A .pt-0 {
  padding-top: 0 !important;
}
.cid-uNYgERNr1A .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNYgERNr1A .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNYgERNr1A .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNYgERNr1A .modal-open {
  overflow: hidden;
}
.cid-uNYgERNr1A .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNYgERNr1A .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNYgERNr1A .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNYgERNr1A .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-uNYgERNr1A .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNYgERNr1A .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNYgERNr1A .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNYgERNr1A .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uNYgERNr1A .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNYgERNr1A .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNYgERNr1A .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNYgERNr1A .modal-backdrop.show {
  opacity: .5;
}
.cid-uNYgERNr1A .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-uNYgERNr1A .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgERNr1A .modal-header {
    padding: 1rem;
  }
}
.cid-uNYgERNr1A .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNYgERNr1A .modal-header .close svg {
  fill: #5849aa;
}
.cid-uNYgERNr1A .modal-header .close:hover {
  opacity: 1;
}
.cid-uNYgERNr1A .modal-header .close:focus {
  outline: none;
}
.cid-uNYgERNr1A .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uNYgERNr1A .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNYgERNr1A .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgERNr1A .modal-body {
    padding: 1rem;
  }
}
.cid-uNYgERNr1A .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-uNYgERNr1A .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgERNr1A .modal-footer {
    padding: 1rem;
  }
}
.cid-uNYgERNr1A .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNYgERNr1A .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNYgERNr1A .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNYgERNr1A .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNYgERNr1A .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNYgERNr1A .modal-lg,
  .cid-uNYgERNr1A .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNYgERNr1A .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNYgERNr1A .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNYgERNr1A .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-uNYgERNr1A .form-group {
  margin-bottom: 1rem;
}
.cid-uNYgERNr1A .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNYgERNr1A .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNYgERNr1A .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-uNYgERNr1A .mbr-section-btn {
  margin: 0;
}
.cid-uNYgERNr1A .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNYgESfO6R.popup-builder {
  background-color: #ffffff;
}
.cid-uNYgESfO6R.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNYgESfO6R.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNYgESfO6R .modal-content,
.cid-uNYgESfO6R .modal-dialog {
  height: auto;
}
.cid-uNYgESfO6R .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNYgESfO6R .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNYgESfO6R .form-wrapper .mbr-form .form-group,
  .cid-uNYgESfO6R .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNYgESfO6R .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNYgESfO6R .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-uNYgESfO6R .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uNYgESfO6R .pt-0 {
  padding-top: 0 !important;
}
.cid-uNYgESfO6R .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNYgESfO6R .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNYgESfO6R .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNYgESfO6R .modal-open {
  overflow: hidden;
}
.cid-uNYgESfO6R .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNYgESfO6R .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNYgESfO6R .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNYgESfO6R .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-uNYgESfO6R .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNYgESfO6R .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNYgESfO6R .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNYgESfO6R .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uNYgESfO6R .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNYgESfO6R .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNYgESfO6R .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNYgESfO6R .modal-backdrop.show {
  opacity: .5;
}
.cid-uNYgESfO6R .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-uNYgESfO6R .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgESfO6R .modal-header {
    padding: 1rem;
  }
}
.cid-uNYgESfO6R .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNYgESfO6R .modal-header .close svg {
  fill: #611750;
}
.cid-uNYgESfO6R .modal-header .close:hover {
  opacity: 1;
}
.cid-uNYgESfO6R .modal-header .close:focus {
  outline: none;
}
.cid-uNYgESfO6R .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uNYgESfO6R .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNYgESfO6R .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgESfO6R .modal-body {
    padding: 1rem;
  }
}
.cid-uNYgESfO6R .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-uNYgESfO6R .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgESfO6R .modal-footer {
    padding: 1rem;
  }
}
.cid-uNYgESfO6R .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNYgESfO6R .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNYgESfO6R .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNYgESfO6R .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNYgESfO6R .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNYgESfO6R .modal-lg,
  .cid-uNYgESfO6R .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNYgESfO6R .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNYgESfO6R .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNYgESfO6R .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-uNYgESfO6R .form-group {
  margin-bottom: 1rem;
}
.cid-uNYgESfO6R .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNYgESfO6R .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNYgESfO6R .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-uNYgESfO6R .mbr-section-btn {
  margin: 0;
}
.cid-uNYgESfO6R .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNYgESJKl6.popup-builder {
  background-color: #ffffff;
}
.cid-uNYgESJKl6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNYgESJKl6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNYgESJKl6 .modal-content,
.cid-uNYgESJKl6 .modal-dialog {
  height: auto;
}
.cid-uNYgESJKl6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNYgESJKl6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNYgESJKl6 .form-wrapper .mbr-form .form-group,
  .cid-uNYgESJKl6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNYgESJKl6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNYgESJKl6 .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-uNYgESJKl6 .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uNYgESJKl6 .pt-0 {
  padding-top: 0 !important;
}
.cid-uNYgESJKl6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNYgESJKl6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNYgESJKl6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNYgESJKl6 .modal-open {
  overflow: hidden;
}
.cid-uNYgESJKl6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNYgESJKl6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNYgESJKl6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNYgESJKl6 .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-uNYgESJKl6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNYgESJKl6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNYgESJKl6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNYgESJKl6 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uNYgESJKl6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNYgESJKl6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNYgESJKl6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNYgESJKl6 .modal-backdrop.show {
  opacity: .5;
}
.cid-uNYgESJKl6 .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-uNYgESJKl6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgESJKl6 .modal-header {
    padding: 1rem;
  }
}
.cid-uNYgESJKl6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNYgESJKl6 .modal-header .close svg {
  fill: #59307c;
}
.cid-uNYgESJKl6 .modal-header .close:hover {
  opacity: 1;
}
.cid-uNYgESJKl6 .modal-header .close:focus {
  outline: none;
}
.cid-uNYgESJKl6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uNYgESJKl6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNYgESJKl6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgESJKl6 .modal-body {
    padding: 1rem;
  }
}
.cid-uNYgESJKl6 .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-uNYgESJKl6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgESJKl6 .modal-footer {
    padding: 1rem;
  }
}
.cid-uNYgESJKl6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNYgESJKl6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNYgESJKl6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNYgESJKl6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNYgESJKl6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNYgESJKl6 .modal-lg,
  .cid-uNYgESJKl6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNYgESJKl6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNYgESJKl6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNYgESJKl6 .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-uNYgESJKl6 .form-group {
  margin-bottom: 1rem;
}
.cid-uNYgESJKl6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNYgESJKl6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNYgESJKl6 .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-uNYgESJKl6 .mbr-section-btn {
  margin: 0;
}
.cid-uNYgESJKl6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNYgETkmg3.popup-builder {
  background-color: #ffffff;
}
.cid-uNYgETkmg3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNYgETkmg3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNYgETkmg3 .modal-content,
.cid-uNYgETkmg3 .modal-dialog {
  height: auto;
}
.cid-uNYgETkmg3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNYgETkmg3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNYgETkmg3 .form-wrapper .mbr-form .form-group,
  .cid-uNYgETkmg3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNYgETkmg3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNYgETkmg3 .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-uNYgETkmg3 .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uNYgETkmg3 .pt-0 {
  padding-top: 0 !important;
}
.cid-uNYgETkmg3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNYgETkmg3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNYgETkmg3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNYgETkmg3 .modal-open {
  overflow: hidden;
}
.cid-uNYgETkmg3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNYgETkmg3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNYgETkmg3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNYgETkmg3 .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-uNYgETkmg3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNYgETkmg3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNYgETkmg3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNYgETkmg3 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uNYgETkmg3 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNYgETkmg3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNYgETkmg3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNYgETkmg3 .modal-backdrop.show {
  opacity: .5;
}
.cid-uNYgETkmg3 .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-uNYgETkmg3 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgETkmg3 .modal-header {
    padding: 1rem;
  }
}
.cid-uNYgETkmg3 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNYgETkmg3 .modal-header .close svg {
  fill: #ffffff;
}
.cid-uNYgETkmg3 .modal-header .close:hover {
  opacity: 1;
}
.cid-uNYgETkmg3 .modal-header .close:focus {
  outline: none;
}
.cid-uNYgETkmg3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uNYgETkmg3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNYgETkmg3 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgETkmg3 .modal-body {
    padding: 1rem;
  }
}
.cid-uNYgETkmg3 .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-uNYgETkmg3 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgETkmg3 .modal-footer {
    padding: 1rem;
  }
}
.cid-uNYgETkmg3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNYgETkmg3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNYgETkmg3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNYgETkmg3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNYgETkmg3 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNYgETkmg3 .modal-lg,
  .cid-uNYgETkmg3 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNYgETkmg3 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNYgETkmg3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNYgETkmg3 .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-uNYgETkmg3 .form-group {
  margin-bottom: 1rem;
}
.cid-uNYgETkmg3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNYgETkmg3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNYgETkmg3 .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-uNYgETkmg3 .mbr-section-btn {
  margin: 0;
}
.cid-uNYgETkmg3 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uNYgETSBie.popup-builder {
  background-color: #ffffff;
}
.cid-uNYgETSBie.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uNYgETSBie.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uNYgETSBie .modal-content,
.cid-uNYgETSBie .modal-dialog {
  height: auto;
}
.cid-uNYgETSBie .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uNYgETSBie .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uNYgETSBie .form-wrapper .mbr-form .form-group,
  .cid-uNYgETSBie .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uNYgETSBie .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uNYgETSBie .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-uNYgETSBie .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uNYgETSBie .pt-0 {
  padding-top: 0 !important;
}
.cid-uNYgETSBie .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uNYgETSBie .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uNYgETSBie .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uNYgETSBie .modal-open {
  overflow: hidden;
}
.cid-uNYgETSBie .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uNYgETSBie .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uNYgETSBie .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uNYgETSBie .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-uNYgETSBie .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uNYgETSBie .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uNYgETSBie .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uNYgETSBie .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uNYgETSBie .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uNYgETSBie .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uNYgETSBie .modal-backdrop.fade {
  opacity: 0;
}
.cid-uNYgETSBie .modal-backdrop.show {
  opacity: .5;
}
.cid-uNYgETSBie .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-uNYgETSBie .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgETSBie .modal-header {
    padding: 1rem;
  }
}
.cid-uNYgETSBie .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uNYgETSBie .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uNYgETSBie .modal-header .close:hover {
  opacity: 1;
}
.cid-uNYgETSBie .modal-header .close:focus {
  outline: none;
}
.cid-uNYgETSBie .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uNYgETSBie .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uNYgETSBie .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgETSBie .modal-body {
    padding: 1rem;
  }
}
.cid-uNYgETSBie .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-uNYgETSBie .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNYgETSBie .modal-footer {
    padding: 1rem;
  }
}
.cid-uNYgETSBie .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uNYgETSBie .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uNYgETSBie .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uNYgETSBie .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uNYgETSBie .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uNYgETSBie .modal-lg,
  .cid-uNYgETSBie .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uNYgETSBie .modal-xl {
    max-width: 1140px;
  }
}
.cid-uNYgETSBie .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uNYgETSBie .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-uNYgETSBie .form-group {
  margin-bottom: 1rem;
}
.cid-uNYgETSBie .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uNYgETSBie .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uNYgETSBie .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-uNYgETSBie .mbr-section-btn {
  margin: 0;
}
.cid-uNYgETSBie .mbr-section-btn .btn {
  margin: 0;
}
.cid-uO9WTMjjyF.popup-builder {
  background-color: #ffffff;
}
.cid-uO9WTMjjyF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uO9WTMjjyF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uO9WTMjjyF .modal-content,
.cid-uO9WTMjjyF .modal-dialog {
  height: auto;
}
.cid-uO9WTMjjyF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uO9WTMjjyF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uO9WTMjjyF .form-wrapper .mbr-form .form-group,
  .cid-uO9WTMjjyF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uO9WTMjjyF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uO9WTMjjyF .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-uO9WTMjjyF .mbr-text {
  text-align: center;
}
.cid-uO9WTMjjyF .pt-0 {
  padding-top: 0 !important;
}
.cid-uO9WTMjjyF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uO9WTMjjyF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uO9WTMjjyF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uO9WTMjjyF .modal-open {
  overflow: hidden;
}
.cid-uO9WTMjjyF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uO9WTMjjyF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uO9WTMjjyF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uO9WTMjjyF .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-uO9WTMjjyF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uO9WTMjjyF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uO9WTMjjyF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uO9WTMjjyF .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uO9WTMjjyF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uO9WTMjjyF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uO9WTMjjyF .modal-backdrop.fade {
  opacity: 0;
}
.cid-uO9WTMjjyF .modal-backdrop.show {
  opacity: .5;
}
.cid-uO9WTMjjyF .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-uO9WTMjjyF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjjyF .modal-header {
    padding: 1rem;
  }
}
.cid-uO9WTMjjyF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uO9WTMjjyF .modal-header .close svg {
  fill: #353535;
}
.cid-uO9WTMjjyF .modal-header .close:hover {
  opacity: 1;
}
.cid-uO9WTMjjyF .modal-header .close:focus {
  outline: none;
}
.cid-uO9WTMjjyF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uO9WTMjjyF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uO9WTMjjyF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjjyF .modal-body {
    padding: 1rem;
  }
}
.cid-uO9WTMjjyF .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-uO9WTMjjyF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO9WTMjjyF .modal-footer {
    padding: 1rem;
  }
}
.cid-uO9WTMjjyF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uO9WTMjjyF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uO9WTMjjyF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uO9WTMjjyF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uO9WTMjjyF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uO9WTMjjyF .modal-lg,
  .cid-uO9WTMjjyF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uO9WTMjjyF .modal-xl {
    max-width: 1140px;
  }
}
.cid-uO9WTMjjyF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uO9WTMjjyF .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-uO9WTMjjyF .form-group {
  margin-bottom: 1rem;
}
.cid-uO9WTMjjyF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uO9WTMjjyF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uO9WTMjjyF .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-uO9WTMjjyF .mbr-section-btn {
  margin: 0;
}
.cid-uO9WTMjjyF .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOrex7YM0I .dropdown-menu {
  padding: 12px 0;
}
.cid-uOrex7YM0I .dropdown-item:hover,
.cid-uOrex7YM0I .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uOrex7YM0I .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uOrex7YM0I .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uOrex7YM0I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOrex7YM0I .nav-link {
  position: relative;
}
.cid-uOrex7YM0I .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uOrex7YM0I .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOrex7YM0I .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uOrex7YM0I .dropdown-menu,
.cid-uOrex7YM0I .navbar.opened {
  background: #1f0931 !important;
}
.cid-uOrex7YM0I .nav-item:focus,
.cid-uOrex7YM0I .nav-link:focus {
  outline: none;
}
.cid-uOrex7YM0I .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uOrex7YM0I .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uOrex7YM0I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOrex7YM0I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOrex7YM0I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOrex7YM0I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOrex7YM0I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOrex7YM0I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOrex7YM0I .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uOrex7YM0I .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uOrex7YM0I .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uOrex7YM0I .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uOrex7YM0I .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uOrex7YM0I .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uOrex7YM0I .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uOrex7YM0I .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uOrex7YM0I .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uOrex7YM0I .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uOrex7YM0I .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uOrex7YM0I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOrex7YM0I .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uOrex7YM0I .navbar.collapsed.opened {
  position: fixed;
}
.cid-uOrex7YM0I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uOrex7YM0I .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uOrex7YM0I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uOrex7YM0I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOrex7YM0I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOrex7YM0I .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: 55%;
}
.cid-uOrex7YM0I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOrex7YM0I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOrex7YM0I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOrex7YM0I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOrex7YM0I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOrex7YM0I .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uOrex7YM0I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOrex7YM0I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOrex7YM0I .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: 41%;
  }
  .cid-uOrex7YM0I .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uOrex7YM0I .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOrex7YM0I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOrex7YM0I .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOrex7YM0I .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uOrex7YM0I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOrex7YM0I .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uOrex7YM0I .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOrex7YM0I .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOrex7YM0I .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOrex7YM0I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOrex7YM0I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOrex7YM0I .dropdown-item.active,
.cid-uOrex7YM0I .dropdown-item:active {
  background-color: transparent;
}
.cid-uOrex7YM0I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOrex7YM0I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOrex7YM0I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOrex7YM0I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uOrex7YM0I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOrex7YM0I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOrex7YM0I ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uOrex7YM0I .navbar-buttons {
  text-align: center;
}
.cid-uOrex7YM0I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uOrex7YM0I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uOrex7YM0I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOrex7YM0I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOrex7YM0I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOrex7YM0I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOrex7YM0I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOrex7YM0I nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOrex7YM0I nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOrex7YM0I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOrex7YM0I .navbar-dropdown {
  position: fixed;
}
.cid-uOrex7YM0I a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uOrex7YM0I .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uOrex7YM0I .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uOrex7YM0I .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOrex7YM0I .navbar {
    height: 77px;
  }
  .cid-uOrex7YM0I .navbar.opened {
    height: auto;
  }
  .cid-uOrex7YM0I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOrexaVF2u {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uOrexaVF2u .container-fluid {
  padding: 0 3rem;
}
.cid-uOrexaVF2u .media-container-column {
  padding: 0 2rem;
}
.cid-uOrexaVF2u .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uOrexaVF2u .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uOrexbRmnq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bg-medical-540x360.jpeg");
}
.cid-uOrexbRmnq .line {
  width: 55px;
  margin-bottom: 0.5rem;
  height: 5px;
  display: inline-block;
  background: linear-gradient(to left, #3c71d3, #38346b);
}
.cid-uOrexbRmnq .mbr-text,
.cid-uOrexbRmnq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uOrexbRmnq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOrexbRmnq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOrexbRmnq .mbr-section-title,
.cid-uOrexbRmnq .title-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uOrjogy82w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uOrjogy82w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOrjogy82w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOrjogy82w .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uOrjogy82w .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOrjogy82w .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uOrjogy82w .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uOrjogy82w .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uOrjogy82w .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uOrjogy82w .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOrjogy82w .image-wrapper img {
    height: 350px;
  }
}
.cid-uOrjogy82w .mbr-section-title {
  color: #ffffff;
}
.cid-uOrjogy82w .mbr-text,
.cid-uOrjogy82w .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uOrjogy82w .mbr-section-title,
.cid-uOrjogy82w .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uOrBX9YhDV {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOrBX9YhDV .items-wrapper {
  justify-content: center;
}
.cid-uOrBX9YhDV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uOrBX9YhDV .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uOrBX9YhDV .embla__slide .slide-content {
  width: 100%;
}
.cid-uOrBX9YhDV .embla__slide .slide-content .item-wrapper .item-content {
  padding: 24px;
}
@media (max-width: 992px) {
  .cid-uOrBX9YhDV .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uOrBX9YhDV .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 20px;
}
.cid-uOrBX9YhDV .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uOrBX9YhDV .embla__button--next,
.cid-uOrBX9YhDV .embla__button--prev {
  display: flex;
}
.cid-uOrBX9YhDV .embla__button {
  bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 18px;
  background: linear-gradient(140deg, #ffffff, #ffffff) !important;
  color: #813fb8 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uOrBX9YhDV .embla__button:hover {
  opacity: .9 !important;
}
.cid-uOrBX9YhDV .embla__button.embla__button--prev {
  left: 24px;
}
@media (max-width: 992px) {
  .cid-uOrBX9YhDV .embla__button.embla__button--prev {
    left: 16px;
  }
}
.cid-uOrBX9YhDV .embla__button.embla__button--next {
  right: 24px;
}
@media (max-width: 992px) {
  .cid-uOrBX9YhDV .embla__button.embla__button--next {
    right: 16px;
  }
}
.cid-uOrBX9YhDV .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uOrBX9YhDV .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uOrBX9YhDV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uOrBX9YhDV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uOrBX9YhDV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uOrBX9YhDV .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uOrBX9YhDV .item-text {
  color: #000000;
  text-align: left;
}
.cid-uOrBX9YhDV .item-name {
  color: #000000;
  text-align: left;
}
.cid-uOrosBo2wb {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uOrosBo2wb .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uOrosBo2wb .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uOrosBo2wb .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uOrosBo2wb .main-title.display-2 {
  line-height: 1.375;
}
.cid-uOrosBo2wb .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uOrosBo2wb .mbr-text {
  color: #606060;
}
.cid-uOrosBo2wb .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uOrosBo2wb .mbr-section-btn {
  margin-top: 24px;
}
.cid-uOrosBo2wb .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uOrosBo2wb .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uOrosBo2wb .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uOrosBo2wb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOrosBo2wb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOrosBo2wb .mbr-section-subtitle,
.cid-uOrosBo2wb .mbr-section-btn {
  color: #6f3f7c;
}
.cid-uOrosBo2wb .mbr-text,
.cid-uOrosBo2wb .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uOrexf1Es7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uOrexf1Es7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOrexf1Es7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOrexf1Es7 .container {
    padding: 0 16px;
  }
}
.cid-uOrexf1Es7 .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uOrexf1Es7 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uOrexf1Es7 .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uOrexf1Es7 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uOrexf1Es7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOrexf1Es7 .mbr-text {
  color: #ffffff;
}
.cid-uOrexf1Es7 .mbr-text,
.cid-uOrexf1Es7 .mbr-section-btn {
  text-align: center;
}
.cid-uOrexf1Es7 .mbr-section-title,
.cid-uOrexf1Es7 .title-wrap {
  color: #410078;
}
.cid-uOrexg0qYh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uOrexg0qYh .container-fluid {
  padding: 0 3rem;
}
.cid-uOrexg0qYh .media-container-column {
  padding: 0 2rem;
}
.cid-uOrexg0qYh .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uOrexg0qYh .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uOrexgLf7B.popup-builder {
  background-color: #ffffff;
}
.cid-uOrexgLf7B.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOrexgLf7B.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOrexgLf7B .modal-content,
.cid-uOrexgLf7B .modal-dialog {
  height: auto;
}
.cid-uOrexgLf7B .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOrexgLf7B .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOrexgLf7B .form-wrapper .mbr-form .form-group,
  .cid-uOrexgLf7B .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOrexgLf7B .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOrexgLf7B .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-uOrexgLf7B .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uOrexgLf7B .pt-0 {
  padding-top: 0 !important;
}
.cid-uOrexgLf7B .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOrexgLf7B .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOrexgLf7B .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOrexgLf7B .modal-open {
  overflow: hidden;
}
.cid-uOrexgLf7B .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOrexgLf7B .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOrexgLf7B .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOrexgLf7B .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-uOrexgLf7B .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOrexgLf7B .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOrexgLf7B .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOrexgLf7B .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOrexgLf7B .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOrexgLf7B .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOrexgLf7B .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOrexgLf7B .modal-backdrop.show {
  opacity: .5;
}
.cid-uOrexgLf7B .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-uOrexgLf7B .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexgLf7B .modal-header {
    padding: 1rem;
  }
}
.cid-uOrexgLf7B .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOrexgLf7B .modal-header .close svg {
  fill: #59307c;
}
.cid-uOrexgLf7B .modal-header .close:hover {
  opacity: 1;
}
.cid-uOrexgLf7B .modal-header .close:focus {
  outline: none;
}
.cid-uOrexgLf7B .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uOrexgLf7B .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOrexgLf7B .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexgLf7B .modal-body {
    padding: 1rem;
  }
}
.cid-uOrexgLf7B .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-uOrexgLf7B .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexgLf7B .modal-footer {
    padding: 1rem;
  }
}
.cid-uOrexgLf7B .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOrexgLf7B .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOrexgLf7B .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOrexgLf7B .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOrexgLf7B .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOrexgLf7B .modal-lg,
  .cid-uOrexgLf7B .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOrexgLf7B .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOrexgLf7B .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOrexgLf7B .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-uOrexgLf7B .form-group {
  margin-bottom: 1rem;
}
.cid-uOrexgLf7B .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOrexgLf7B .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOrexgLf7B .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-uOrexgLf7B .mbr-section-btn {
  margin: 0;
}
.cid-uOrexgLf7B .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOrexi9SIY.popup-builder {
  background-color: #ffffff;
}
.cid-uOrexi9SIY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOrexi9SIY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOrexi9SIY .modal-content,
.cid-uOrexi9SIY .modal-dialog {
  height: auto;
}
.cid-uOrexi9SIY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOrexi9SIY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOrexi9SIY .form-wrapper .mbr-form .form-group,
  .cid-uOrexi9SIY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOrexi9SIY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOrexi9SIY .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-uOrexi9SIY .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uOrexi9SIY .pt-0 {
  padding-top: 0 !important;
}
.cid-uOrexi9SIY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOrexi9SIY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOrexi9SIY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOrexi9SIY .modal-open {
  overflow: hidden;
}
.cid-uOrexi9SIY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOrexi9SIY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOrexi9SIY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOrexi9SIY .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-uOrexi9SIY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOrexi9SIY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOrexi9SIY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOrexi9SIY .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOrexi9SIY .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOrexi9SIY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOrexi9SIY .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOrexi9SIY .modal-backdrop.show {
  opacity: .5;
}
.cid-uOrexi9SIY .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-uOrexi9SIY .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexi9SIY .modal-header {
    padding: 1rem;
  }
}
.cid-uOrexi9SIY .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOrexi9SIY .modal-header .close svg {
  fill: #ffffff;
}
.cid-uOrexi9SIY .modal-header .close:hover {
  opacity: 1;
}
.cid-uOrexi9SIY .modal-header .close:focus {
  outline: none;
}
.cid-uOrexi9SIY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uOrexi9SIY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOrexi9SIY .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexi9SIY .modal-body {
    padding: 1rem;
  }
}
.cid-uOrexi9SIY .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-uOrexi9SIY .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexi9SIY .modal-footer {
    padding: 1rem;
  }
}
.cid-uOrexi9SIY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOrexi9SIY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOrexi9SIY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOrexi9SIY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOrexi9SIY .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOrexi9SIY .modal-lg,
  .cid-uOrexi9SIY .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOrexi9SIY .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOrexi9SIY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOrexi9SIY .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-uOrexi9SIY .form-group {
  margin-bottom: 1rem;
}
.cid-uOrexi9SIY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOrexi9SIY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOrexi9SIY .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-uOrexi9SIY .mbr-section-btn {
  margin: 0;
}
.cid-uOrexi9SIY .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOrexjGg6m.popup-builder {
  background-color: #ffffff;
}
.cid-uOrexjGg6m.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOrexjGg6m.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOrexjGg6m .modal-content,
.cid-uOrexjGg6m .modal-dialog {
  height: auto;
}
.cid-uOrexjGg6m .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOrexjGg6m .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOrexjGg6m .form-wrapper .mbr-form .form-group,
  .cid-uOrexjGg6m .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOrexjGg6m .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOrexjGg6m .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-uOrexjGg6m .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uOrexjGg6m .pt-0 {
  padding-top: 0 !important;
}
.cid-uOrexjGg6m .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOrexjGg6m .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOrexjGg6m .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOrexjGg6m .modal-open {
  overflow: hidden;
}
.cid-uOrexjGg6m .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOrexjGg6m .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOrexjGg6m .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOrexjGg6m .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-uOrexjGg6m .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOrexjGg6m .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOrexjGg6m .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOrexjGg6m .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOrexjGg6m .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOrexjGg6m .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOrexjGg6m .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOrexjGg6m .modal-backdrop.show {
  opacity: .5;
}
.cid-uOrexjGg6m .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-uOrexjGg6m .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexjGg6m .modal-header {
    padding: 1rem;
  }
}
.cid-uOrexjGg6m .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOrexjGg6m .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uOrexjGg6m .modal-header .close:hover {
  opacity: 1;
}
.cid-uOrexjGg6m .modal-header .close:focus {
  outline: none;
}
.cid-uOrexjGg6m .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uOrexjGg6m .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOrexjGg6m .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexjGg6m .modal-body {
    padding: 1rem;
  }
}
.cid-uOrexjGg6m .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-uOrexjGg6m .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexjGg6m .modal-footer {
    padding: 1rem;
  }
}
.cid-uOrexjGg6m .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOrexjGg6m .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOrexjGg6m .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOrexjGg6m .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOrexjGg6m .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOrexjGg6m .modal-lg,
  .cid-uOrexjGg6m .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOrexjGg6m .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOrexjGg6m .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOrexjGg6m .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-uOrexjGg6m .form-group {
  margin-bottom: 1rem;
}
.cid-uOrexjGg6m .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOrexjGg6m .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOrexjGg6m .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-uOrexjGg6m .mbr-section-btn {
  margin: 0;
}
.cid-uOrexjGg6m .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOrexl09sG.popup-builder {
  background-color: #ffffff;
}
.cid-uOrexl09sG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOrexl09sG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOrexl09sG .modal-content,
.cid-uOrexl09sG .modal-dialog {
  height: auto;
}
.cid-uOrexl09sG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOrexl09sG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOrexl09sG .form-wrapper .mbr-form .form-group,
  .cid-uOrexl09sG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOrexl09sG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOrexl09sG .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-uOrexl09sG .mbr-text {
  text-align: center;
}
.cid-uOrexl09sG .pt-0 {
  padding-top: 0 !important;
}
.cid-uOrexl09sG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOrexl09sG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOrexl09sG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOrexl09sG .modal-open {
  overflow: hidden;
}
.cid-uOrexl09sG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOrexl09sG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOrexl09sG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOrexl09sG .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-uOrexl09sG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOrexl09sG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOrexl09sG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOrexl09sG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOrexl09sG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOrexl09sG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOrexl09sG .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOrexl09sG .modal-backdrop.show {
  opacity: .5;
}
.cid-uOrexl09sG .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-uOrexl09sG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexl09sG .modal-header {
    padding: 1rem;
  }
}
.cid-uOrexl09sG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOrexl09sG .modal-header .close svg {
  fill: #353535;
}
.cid-uOrexl09sG .modal-header .close:hover {
  opacity: 1;
}
.cid-uOrexl09sG .modal-header .close:focus {
  outline: none;
}
.cid-uOrexl09sG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uOrexl09sG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOrexl09sG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexl09sG .modal-body {
    padding: 1rem;
  }
}
.cid-uOrexl09sG .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-uOrexl09sG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOrexl09sG .modal-footer {
    padding: 1rem;
  }
}
.cid-uOrexl09sG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOrexl09sG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOrexl09sG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOrexl09sG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOrexl09sG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOrexl09sG .modal-lg,
  .cid-uOrexl09sG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOrexl09sG .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOrexl09sG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOrexl09sG .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-uOrexl09sG .form-group {
  margin-bottom: 1rem;
}
.cid-uOrexl09sG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOrexl09sG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOrexl09sG .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-uOrexl09sG .mbr-section-btn {
  margin: 0;
}
.cid-uOrexl09sG .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQf5Is9vpT .dropdown-menu {
  padding: 12px 0;
}
.cid-uQf5Is9vpT .dropdown-item:hover,
.cid-uQf5Is9vpT .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uQf5Is9vpT .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uQf5Is9vpT .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uQf5Is9vpT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQf5Is9vpT .nav-link {
  position: relative;
}
.cid-uQf5Is9vpT .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uQf5Is9vpT .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQf5Is9vpT .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uQf5Is9vpT .dropdown-menu,
.cid-uQf5Is9vpT .navbar.opened {
  background: #1f0931 !important;
}
.cid-uQf5Is9vpT .nav-item:focus,
.cid-uQf5Is9vpT .nav-link:focus {
  outline: none;
}
.cid-uQf5Is9vpT .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uQf5Is9vpT .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uQf5Is9vpT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQf5Is9vpT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQf5Is9vpT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQf5Is9vpT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQf5Is9vpT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQf5Is9vpT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQf5Is9vpT .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uQf5Is9vpT .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uQf5Is9vpT .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uQf5Is9vpT .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uQf5Is9vpT .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uQf5Is9vpT .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uQf5Is9vpT .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uQf5Is9vpT .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uQf5Is9vpT .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uQf5Is9vpT .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uQf5Is9vpT .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uQf5Is9vpT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQf5Is9vpT .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uQf5Is9vpT .navbar.collapsed.opened {
  position: fixed;
}
.cid-uQf5Is9vpT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uQf5Is9vpT .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQf5Is9vpT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uQf5Is9vpT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQf5Is9vpT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQf5Is9vpT .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: 55%;
}
.cid-uQf5Is9vpT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQf5Is9vpT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQf5Is9vpT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQf5Is9vpT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQf5Is9vpT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQf5Is9vpT .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uQf5Is9vpT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQf5Is9vpT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQf5Is9vpT .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: 41%;
  }
  .cid-uQf5Is9vpT .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uQf5Is9vpT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQf5Is9vpT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQf5Is9vpT .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQf5Is9vpT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uQf5Is9vpT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uQf5Is9vpT .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uQf5Is9vpT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQf5Is9vpT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQf5Is9vpT .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQf5Is9vpT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQf5Is9vpT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQf5Is9vpT .dropdown-item.active,
.cid-uQf5Is9vpT .dropdown-item:active {
  background-color: transparent;
}
.cid-uQf5Is9vpT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQf5Is9vpT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQf5Is9vpT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQf5Is9vpT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uQf5Is9vpT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQf5Is9vpT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQf5Is9vpT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQf5Is9vpT .navbar-buttons {
  text-align: center;
}
.cid-uQf5Is9vpT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQf5Is9vpT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uQf5Is9vpT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQf5Is9vpT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQf5Is9vpT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQf5Is9vpT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQf5Is9vpT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQf5Is9vpT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQf5Is9vpT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQf5Is9vpT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQf5Is9vpT .navbar-dropdown {
  position: fixed;
}
.cid-uQf5Is9vpT a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQf5Is9vpT .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uQf5Is9vpT .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uQf5Is9vpT .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQf5Is9vpT .navbar {
    height: 77px;
  }
  .cid-uQf5Is9vpT .navbar.opened {
    height: auto;
  }
  .cid-uQf5Is9vpT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQf5ItBBRS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uQf5ItBBRS .container-fluid {
  padding: 0 3rem;
}
.cid-uQf5ItBBRS .media-container-column {
  padding: 0 2rem;
}
.cid-uQf5ItBBRS .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQf5ItBBRS .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQf5ItVHgk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQf5ItVHgk .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uQf5ItVHgk img {
    width: 90%;
  }
}
.cid-uQf5ItVHgk .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uQf5ItVHgk .items {
  margin-bottom: 0;
}
.cid-uQf5ItVHgk .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uQf5ItVHgk .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uQf5ItVHgk .soc-item:hover span {
  color: #38346b !important;
}
.cid-uQf5ItVHgk .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uQf5ItVHgk .social-list {
    justify-content: center;
  }
}
.cid-uQf5ItVHgk .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uQf5Iumz6i {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-uQf5Iumz6i .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uQf5Iumz6i .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uQf5Iumz6i .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uQf5Iumz6i .main-title.display-2 {
  line-height: 1.375;
}
.cid-uQf5Iumz6i .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uQf5Iumz6i .mbr-text {
  color: #606060;
}
.cid-uQf5Iumz6i .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uQf5Iumz6i .mbr-section-btn {
  margin-top: 24px;
}
.cid-uQf5Iumz6i .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uQf5Iumz6i .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uQf5Iumz6i .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uQf5Iumz6i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQf5Iumz6i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQf5Iumz6i .mbr-text,
.cid-uQf5Iumz6i .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uQf5Iumz6i .main-title,
.cid-uQf5Iumz6i .mbr-section-btn {
  text-align: center;
}
.cid-uQf5Iumz6i .mbr-section-subtitle,
.cid-uQf5Iumz6i .mbr-section-btn {
  color: #624977;
  text-align: center;
}
.cid-uQf5IuGglJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQf5IuGglJ .container-fluid {
  padding: 0 3rem;
}
.cid-uQf5IuGglJ .media-container-column {
  padding: 0 2rem;
}
.cid-uQf5IuGglJ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uQf5IuGglJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQfIwxIM0t {
  padding-top: 0px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/youtube-banner-2000x1125.jpg");
}
.cid-uQfIwxIM0t .container-fluid {
  padding: 0 3rem;
}
.cid-uQfIwxIM0t .media-container-column {
  padding: 0 2rem;
}
.cid-uQfIwxIM0t .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #102f62;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uQfIwxIM0t .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQfIwxIM0t .mbr-section-subtitle {
  color: #f3f3f3;
  text-align: left;
}
.cid-uQf5Iv13Wg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQf5Iv13Wg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQf5Iv13Wg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQf5Iv13Wg .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQf5Iv13Wg .container {
    padding: 0 16px;
  }
}
.cid-uQf5Iv13Wg .row {
  justify-content: center;
}
.cid-uQf5Iv13Wg .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQf5Iv13Wg .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQf5Iv13Wg .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQf5Iv13Wg .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQf5Iv13Wg .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQf5Iv13Wg .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQf5Iv13Wg .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQf5Iv13Wg .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQf5Iv13Wg .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQf5Iv13Wg .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQf5Iv13Wg .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQf5Iv13Wg .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQf5Iv13Wg .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQf5Iv13Wg .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQf5Iv13Wg .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQf5Iv13Wg .panel-title {
  color: #000000;
}
.cid-uQf5Iv13Wg .panel-text {
  color: #000000;
}
.cid-uQf5Iv13Wg .panel-title-edit {
  color: #59307c;
}
.cid-uQfvSWItBk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQfvSWItBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQfvSWItBk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQfvSWItBk .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQfvSWItBk .container {
    padding: 0 16px;
  }
}
.cid-uQfvSWItBk .row {
  justify-content: center;
}
.cid-uQfvSWItBk .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQfvSWItBk .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQfvSWItBk .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQfvSWItBk .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQfvSWItBk .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQfvSWItBk .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQfvSWItBk .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQfvSWItBk .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQfvSWItBk .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQfvSWItBk .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQfvSWItBk .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQfvSWItBk .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQfvSWItBk .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQfvSWItBk .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQfvSWItBk .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQfvSWItBk .panel-title {
  color: #000000;
}
.cid-uQfvSWItBk .panel-text {
  color: #000000;
}
.cid-uQfvSWItBk .panel-title-edit {
  color: #59307c;
}
.cid-uQf5Ivvbzj {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uQf5Ivvbzj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQf5Ivvbzj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQf5Ivvbzj .container {
    padding: 0 16px;
  }
}
.cid-uQf5Ivvbzj .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQf5Ivvbzj .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQf5Ivvbzj .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uQf5Ivvbzj .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uQf5Ivvbzj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uQf5Ivvbzj .mbr-text {
  color: #ffffff;
}
.cid-uQf5Ivvbzj .mbr-text,
.cid-uQf5Ivvbzj .mbr-section-btn {
  text-align: center;
  color: #813fb8;
}
.cid-uQf5Ivvbzj .mbr-section-title,
.cid-uQf5Ivvbzj .title-wrap {
  color: #813fb8;
}
.cid-uQf5IvQdTL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uQf5IvQdTL .container-fluid {
  padding: 0 3rem;
}
.cid-uQf5IvQdTL .media-container-column {
  padding: 0 2rem;
}
.cid-uQf5IvQdTL .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQf5IvQdTL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQf5Iw81nC.popup-builder {
  background-color: #ffffff;
}
.cid-uQf5Iw81nC.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQf5Iw81nC.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQf5Iw81nC .modal-content,
.cid-uQf5Iw81nC .modal-dialog {
  height: auto;
}
.cid-uQf5Iw81nC .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQf5Iw81nC .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQf5Iw81nC .form-wrapper .mbr-form .form-group,
  .cid-uQf5Iw81nC .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQf5Iw81nC .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQf5Iw81nC .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-uQf5Iw81nC .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uQf5Iw81nC .pt-0 {
  padding-top: 0 !important;
}
.cid-uQf5Iw81nC .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQf5Iw81nC .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQf5Iw81nC .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQf5Iw81nC .modal-open {
  overflow: hidden;
}
.cid-uQf5Iw81nC .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQf5Iw81nC .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQf5Iw81nC .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQf5Iw81nC .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-uQf5Iw81nC .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQf5Iw81nC .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQf5Iw81nC .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQf5Iw81nC .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQf5Iw81nC .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQf5Iw81nC .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQf5Iw81nC .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQf5Iw81nC .modal-backdrop.show {
  opacity: .5;
}
.cid-uQf5Iw81nC .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-uQf5Iw81nC .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Iw81nC .modal-header {
    padding: 1rem;
  }
}
.cid-uQf5Iw81nC .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQf5Iw81nC .modal-header .close svg {
  fill: #260641;
}
.cid-uQf5Iw81nC .modal-header .close:hover {
  opacity: 1;
}
.cid-uQf5Iw81nC .modal-header .close:focus {
  outline: none;
}
.cid-uQf5Iw81nC .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQf5Iw81nC .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQf5Iw81nC .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Iw81nC .modal-body {
    padding: 1rem;
  }
}
.cid-uQf5Iw81nC .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-uQf5Iw81nC .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Iw81nC .modal-footer {
    padding: 1rem;
  }
}
.cid-uQf5Iw81nC .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQf5Iw81nC .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQf5Iw81nC .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQf5Iw81nC .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQf5Iw81nC .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQf5Iw81nC .modal-lg,
  .cid-uQf5Iw81nC .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQf5Iw81nC .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQf5Iw81nC .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQf5Iw81nC .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-uQf5Iw81nC .form-group {
  margin-bottom: 1rem;
}
.cid-uQf5Iw81nC .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQf5Iw81nC .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQf5Iw81nC .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-uQf5Iw81nC .mbr-section-btn {
  margin: 0;
}
.cid-uQf5Iw81nC .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQf5IwAze8.popup-builder {
  background-color: #ffffff;
}
.cid-uQf5IwAze8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQf5IwAze8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQf5IwAze8 .modal-content,
.cid-uQf5IwAze8 .modal-dialog {
  height: auto;
}
.cid-uQf5IwAze8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQf5IwAze8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQf5IwAze8 .form-wrapper .mbr-form .form-group,
  .cid-uQf5IwAze8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQf5IwAze8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQf5IwAze8 .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-uQf5IwAze8 .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uQf5IwAze8 .pt-0 {
  padding-top: 0 !important;
}
.cid-uQf5IwAze8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQf5IwAze8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQf5IwAze8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQf5IwAze8 .modal-open {
  overflow: hidden;
}
.cid-uQf5IwAze8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQf5IwAze8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQf5IwAze8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQf5IwAze8 .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-uQf5IwAze8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQf5IwAze8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQf5IwAze8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQf5IwAze8 .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQf5IwAze8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQf5IwAze8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQf5IwAze8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQf5IwAze8 .modal-backdrop.show {
  opacity: .5;
}
.cid-uQf5IwAze8 .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-uQf5IwAze8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5IwAze8 .modal-header {
    padding: 1rem;
  }
}
.cid-uQf5IwAze8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQf5IwAze8 .modal-header .close svg {
  fill: #5849aa;
}
.cid-uQf5IwAze8 .modal-header .close:hover {
  opacity: 1;
}
.cid-uQf5IwAze8 .modal-header .close:focus {
  outline: none;
}
.cid-uQf5IwAze8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uQf5IwAze8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQf5IwAze8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5IwAze8 .modal-body {
    padding: 1rem;
  }
}
.cid-uQf5IwAze8 .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-uQf5IwAze8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5IwAze8 .modal-footer {
    padding: 1rem;
  }
}
.cid-uQf5IwAze8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQf5IwAze8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQf5IwAze8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQf5IwAze8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQf5IwAze8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQf5IwAze8 .modal-lg,
  .cid-uQf5IwAze8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQf5IwAze8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQf5IwAze8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQf5IwAze8 .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-uQf5IwAze8 .form-group {
  margin-bottom: 1rem;
}
.cid-uQf5IwAze8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQf5IwAze8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQf5IwAze8 .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-uQf5IwAze8 .mbr-section-btn {
  margin: 0;
}
.cid-uQf5IwAze8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQf5Ix65YM.popup-builder {
  background-color: #ffffff;
}
.cid-uQf5Ix65YM.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQf5Ix65YM.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQf5Ix65YM .modal-content,
.cid-uQf5Ix65YM .modal-dialog {
  height: auto;
}
.cid-uQf5Ix65YM .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQf5Ix65YM .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQf5Ix65YM .form-wrapper .mbr-form .form-group,
  .cid-uQf5Ix65YM .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQf5Ix65YM .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQf5Ix65YM .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-uQf5Ix65YM .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uQf5Ix65YM .pt-0 {
  padding-top: 0 !important;
}
.cid-uQf5Ix65YM .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQf5Ix65YM .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQf5Ix65YM .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQf5Ix65YM .modal-open {
  overflow: hidden;
}
.cid-uQf5Ix65YM .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQf5Ix65YM .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQf5Ix65YM .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQf5Ix65YM .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-uQf5Ix65YM .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQf5Ix65YM .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQf5Ix65YM .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQf5Ix65YM .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQf5Ix65YM .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQf5Ix65YM .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQf5Ix65YM .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQf5Ix65YM .modal-backdrop.show {
  opacity: .5;
}
.cid-uQf5Ix65YM .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-uQf5Ix65YM .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Ix65YM .modal-header {
    padding: 1rem;
  }
}
.cid-uQf5Ix65YM .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQf5Ix65YM .modal-header .close svg {
  fill: #611750;
}
.cid-uQf5Ix65YM .modal-header .close:hover {
  opacity: 1;
}
.cid-uQf5Ix65YM .modal-header .close:focus {
  outline: none;
}
.cid-uQf5Ix65YM .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQf5Ix65YM .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQf5Ix65YM .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Ix65YM .modal-body {
    padding: 1rem;
  }
}
.cid-uQf5Ix65YM .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-uQf5Ix65YM .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Ix65YM .modal-footer {
    padding: 1rem;
  }
}
.cid-uQf5Ix65YM .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQf5Ix65YM .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQf5Ix65YM .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQf5Ix65YM .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQf5Ix65YM .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQf5Ix65YM .modal-lg,
  .cid-uQf5Ix65YM .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQf5Ix65YM .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQf5Ix65YM .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQf5Ix65YM .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-uQf5Ix65YM .form-group {
  margin-bottom: 1rem;
}
.cid-uQf5Ix65YM .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQf5Ix65YM .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQf5Ix65YM .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-uQf5Ix65YM .mbr-section-btn {
  margin: 0;
}
.cid-uQf5Ix65YM .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQf5IxAhTb.popup-builder {
  background-color: #ffffff;
}
.cid-uQf5IxAhTb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQf5IxAhTb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQf5IxAhTb .modal-content,
.cid-uQf5IxAhTb .modal-dialog {
  height: auto;
}
.cid-uQf5IxAhTb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQf5IxAhTb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQf5IxAhTb .form-wrapper .mbr-form .form-group,
  .cid-uQf5IxAhTb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQf5IxAhTb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQf5IxAhTb .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-uQf5IxAhTb .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uQf5IxAhTb .pt-0 {
  padding-top: 0 !important;
}
.cid-uQf5IxAhTb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQf5IxAhTb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQf5IxAhTb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQf5IxAhTb .modal-open {
  overflow: hidden;
}
.cid-uQf5IxAhTb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQf5IxAhTb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQf5IxAhTb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQf5IxAhTb .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-uQf5IxAhTb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQf5IxAhTb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQf5IxAhTb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQf5IxAhTb .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQf5IxAhTb .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQf5IxAhTb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQf5IxAhTb .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQf5IxAhTb .modal-backdrop.show {
  opacity: .5;
}
.cid-uQf5IxAhTb .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-uQf5IxAhTb .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5IxAhTb .modal-header {
    padding: 1rem;
  }
}
.cid-uQf5IxAhTb .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQf5IxAhTb .modal-header .close svg {
  fill: #59307c;
}
.cid-uQf5IxAhTb .modal-header .close:hover {
  opacity: 1;
}
.cid-uQf5IxAhTb .modal-header .close:focus {
  outline: none;
}
.cid-uQf5IxAhTb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uQf5IxAhTb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQf5IxAhTb .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5IxAhTb .modal-body {
    padding: 1rem;
  }
}
.cid-uQf5IxAhTb .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-uQf5IxAhTb .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5IxAhTb .modal-footer {
    padding: 1rem;
  }
}
.cid-uQf5IxAhTb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQf5IxAhTb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQf5IxAhTb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQf5IxAhTb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQf5IxAhTb .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQf5IxAhTb .modal-lg,
  .cid-uQf5IxAhTb .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQf5IxAhTb .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQf5IxAhTb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQf5IxAhTb .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-uQf5IxAhTb .form-group {
  margin-bottom: 1rem;
}
.cid-uQf5IxAhTb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQf5IxAhTb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQf5IxAhTb .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-uQf5IxAhTb .mbr-section-btn {
  margin: 0;
}
.cid-uQf5IxAhTb .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQf5Iy5jkn.popup-builder {
  background-color: #ffffff;
}
.cid-uQf5Iy5jkn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQf5Iy5jkn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQf5Iy5jkn .modal-content,
.cid-uQf5Iy5jkn .modal-dialog {
  height: auto;
}
.cid-uQf5Iy5jkn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQf5Iy5jkn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQf5Iy5jkn .form-wrapper .mbr-form .form-group,
  .cid-uQf5Iy5jkn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQf5Iy5jkn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQf5Iy5jkn .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-uQf5Iy5jkn .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uQf5Iy5jkn .pt-0 {
  padding-top: 0 !important;
}
.cid-uQf5Iy5jkn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQf5Iy5jkn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQf5Iy5jkn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQf5Iy5jkn .modal-open {
  overflow: hidden;
}
.cid-uQf5Iy5jkn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQf5Iy5jkn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQf5Iy5jkn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQf5Iy5jkn .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-uQf5Iy5jkn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQf5Iy5jkn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQf5Iy5jkn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQf5Iy5jkn .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQf5Iy5jkn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQf5Iy5jkn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQf5Iy5jkn .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQf5Iy5jkn .modal-backdrop.show {
  opacity: .5;
}
.cid-uQf5Iy5jkn .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-uQf5Iy5jkn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Iy5jkn .modal-header {
    padding: 1rem;
  }
}
.cid-uQf5Iy5jkn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQf5Iy5jkn .modal-header .close svg {
  fill: #ffffff;
}
.cid-uQf5Iy5jkn .modal-header .close:hover {
  opacity: 1;
}
.cid-uQf5Iy5jkn .modal-header .close:focus {
  outline: none;
}
.cid-uQf5Iy5jkn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uQf5Iy5jkn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQf5Iy5jkn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Iy5jkn .modal-body {
    padding: 1rem;
  }
}
.cid-uQf5Iy5jkn .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-uQf5Iy5jkn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Iy5jkn .modal-footer {
    padding: 1rem;
  }
}
.cid-uQf5Iy5jkn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQf5Iy5jkn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQf5Iy5jkn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQf5Iy5jkn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQf5Iy5jkn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQf5Iy5jkn .modal-lg,
  .cid-uQf5Iy5jkn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQf5Iy5jkn .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQf5Iy5jkn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQf5Iy5jkn .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-uQf5Iy5jkn .form-group {
  margin-bottom: 1rem;
}
.cid-uQf5Iy5jkn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQf5Iy5jkn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQf5Iy5jkn .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-uQf5Iy5jkn .mbr-section-btn {
  margin: 0;
}
.cid-uQf5Iy5jkn .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQf5IyzlLr.popup-builder {
  background-color: #ffffff;
}
.cid-uQf5IyzlLr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQf5IyzlLr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQf5IyzlLr .modal-content,
.cid-uQf5IyzlLr .modal-dialog {
  height: auto;
}
.cid-uQf5IyzlLr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQf5IyzlLr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQf5IyzlLr .form-wrapper .mbr-form .form-group,
  .cid-uQf5IyzlLr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQf5IyzlLr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQf5IyzlLr .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-uQf5IyzlLr .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uQf5IyzlLr .pt-0 {
  padding-top: 0 !important;
}
.cid-uQf5IyzlLr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQf5IyzlLr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQf5IyzlLr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQf5IyzlLr .modal-open {
  overflow: hidden;
}
.cid-uQf5IyzlLr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQf5IyzlLr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQf5IyzlLr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQf5IyzlLr .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-uQf5IyzlLr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQf5IyzlLr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQf5IyzlLr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQf5IyzlLr .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQf5IyzlLr .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQf5IyzlLr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQf5IyzlLr .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQf5IyzlLr .modal-backdrop.show {
  opacity: .5;
}
.cid-uQf5IyzlLr .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-uQf5IyzlLr .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5IyzlLr .modal-header {
    padding: 1rem;
  }
}
.cid-uQf5IyzlLr .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQf5IyzlLr .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uQf5IyzlLr .modal-header .close:hover {
  opacity: 1;
}
.cid-uQf5IyzlLr .modal-header .close:focus {
  outline: none;
}
.cid-uQf5IyzlLr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uQf5IyzlLr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQf5IyzlLr .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5IyzlLr .modal-body {
    padding: 1rem;
  }
}
.cid-uQf5IyzlLr .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-uQf5IyzlLr .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5IyzlLr .modal-footer {
    padding: 1rem;
  }
}
.cid-uQf5IyzlLr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQf5IyzlLr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQf5IyzlLr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQf5IyzlLr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQf5IyzlLr .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQf5IyzlLr .modal-lg,
  .cid-uQf5IyzlLr .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQf5IyzlLr .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQf5IyzlLr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQf5IyzlLr .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-uQf5IyzlLr .form-group {
  margin-bottom: 1rem;
}
.cid-uQf5IyzlLr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQf5IyzlLr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQf5IyzlLr .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-uQf5IyzlLr .mbr-section-btn {
  margin: 0;
}
.cid-uQf5IyzlLr .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQf5Iz6sEn.popup-builder {
  background-color: #ffffff;
}
.cid-uQf5Iz6sEn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQf5Iz6sEn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQf5Iz6sEn .modal-content,
.cid-uQf5Iz6sEn .modal-dialog {
  height: auto;
}
.cid-uQf5Iz6sEn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQf5Iz6sEn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQf5Iz6sEn .form-wrapper .mbr-form .form-group,
  .cid-uQf5Iz6sEn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQf5Iz6sEn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQf5Iz6sEn .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-uQf5Iz6sEn .mbr-text {
  text-align: center;
}
.cid-uQf5Iz6sEn .pt-0 {
  padding-top: 0 !important;
}
.cid-uQf5Iz6sEn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQf5Iz6sEn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQf5Iz6sEn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQf5Iz6sEn .modal-open {
  overflow: hidden;
}
.cid-uQf5Iz6sEn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQf5Iz6sEn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQf5Iz6sEn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQf5Iz6sEn .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-uQf5Iz6sEn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQf5Iz6sEn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQf5Iz6sEn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQf5Iz6sEn .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQf5Iz6sEn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQf5Iz6sEn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQf5Iz6sEn .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQf5Iz6sEn .modal-backdrop.show {
  opacity: .5;
}
.cid-uQf5Iz6sEn .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-uQf5Iz6sEn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Iz6sEn .modal-header {
    padding: 1rem;
  }
}
.cid-uQf5Iz6sEn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQf5Iz6sEn .modal-header .close svg {
  fill: #353535;
}
.cid-uQf5Iz6sEn .modal-header .close:hover {
  opacity: 1;
}
.cid-uQf5Iz6sEn .modal-header .close:focus {
  outline: none;
}
.cid-uQf5Iz6sEn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQf5Iz6sEn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQf5Iz6sEn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Iz6sEn .modal-body {
    padding: 1rem;
  }
}
.cid-uQf5Iz6sEn .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-uQf5Iz6sEn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQf5Iz6sEn .modal-footer {
    padding: 1rem;
  }
}
.cid-uQf5Iz6sEn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQf5Iz6sEn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQf5Iz6sEn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQf5Iz6sEn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQf5Iz6sEn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQf5Iz6sEn .modal-lg,
  .cid-uQf5Iz6sEn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQf5Iz6sEn .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQf5Iz6sEn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQf5Iz6sEn .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-uQf5Iz6sEn .form-group {
  margin-bottom: 1rem;
}
.cid-uQf5Iz6sEn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQf5Iz6sEn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQf5Iz6sEn .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-uQf5Iz6sEn .mbr-section-btn {
  margin: 0;
}
.cid-uQf5Iz6sEn .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQeTeluS8V .dropdown-menu {
  padding: 12px 0;
}
.cid-uQeTeluS8V .dropdown-item:hover,
.cid-uQeTeluS8V .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uQeTeluS8V .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uQeTeluS8V .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uQeTeluS8V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQeTeluS8V .nav-link {
  position: relative;
}
.cid-uQeTeluS8V .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uQeTeluS8V .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQeTeluS8V .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uQeTeluS8V .dropdown-menu,
.cid-uQeTeluS8V .navbar.opened {
  background: #1f0931 !important;
}
.cid-uQeTeluS8V .nav-item:focus,
.cid-uQeTeluS8V .nav-link:focus {
  outline: none;
}
.cid-uQeTeluS8V .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uQeTeluS8V .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uQeTeluS8V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQeTeluS8V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQeTeluS8V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQeTeluS8V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQeTeluS8V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQeTeluS8V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQeTeluS8V .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uQeTeluS8V .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uQeTeluS8V .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uQeTeluS8V .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uQeTeluS8V .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uQeTeluS8V .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uQeTeluS8V .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uQeTeluS8V .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uQeTeluS8V .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uQeTeluS8V .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uQeTeluS8V .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uQeTeluS8V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQeTeluS8V .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uQeTeluS8V .navbar.collapsed.opened {
  position: fixed;
}
.cid-uQeTeluS8V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uQeTeluS8V .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQeTeluS8V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uQeTeluS8V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQeTeluS8V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQeTeluS8V .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: 55%;
}
.cid-uQeTeluS8V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQeTeluS8V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQeTeluS8V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQeTeluS8V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQeTeluS8V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQeTeluS8V .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uQeTeluS8V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQeTeluS8V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQeTeluS8V .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: 41%;
  }
  .cid-uQeTeluS8V .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uQeTeluS8V .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQeTeluS8V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQeTeluS8V .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQeTeluS8V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uQeTeluS8V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uQeTeluS8V .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uQeTeluS8V .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQeTeluS8V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQeTeluS8V .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQeTeluS8V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQeTeluS8V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQeTeluS8V .dropdown-item.active,
.cid-uQeTeluS8V .dropdown-item:active {
  background-color: transparent;
}
.cid-uQeTeluS8V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQeTeluS8V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQeTeluS8V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQeTeluS8V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uQeTeluS8V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQeTeluS8V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQeTeluS8V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQeTeluS8V .navbar-buttons {
  text-align: center;
}
.cid-uQeTeluS8V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQeTeluS8V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uQeTeluS8V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQeTeluS8V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQeTeluS8V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQeTeluS8V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQeTeluS8V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQeTeluS8V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQeTeluS8V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQeTeluS8V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQeTeluS8V .navbar-dropdown {
  position: fixed;
}
.cid-uQeTeluS8V a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQeTeluS8V .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uQeTeluS8V .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uQeTeluS8V .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQeTeluS8V .navbar {
    height: 77px;
  }
  .cid-uQeTeluS8V .navbar.opened {
    height: auto;
  }
  .cid-uQeTeluS8V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQeTem7zot {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uQeTem7zot .container-fluid {
  padding: 0 3rem;
}
.cid-uQeTem7zot .media-container-column {
  padding: 0 2rem;
}
.cid-uQeTem7zot .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQeTem7zot .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQeTemniPx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQeTemniPx .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uQeTemniPx img {
    width: 90%;
  }
}
.cid-uQeTemniPx .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uQeTemniPx .items {
  margin-bottom: 0;
}
.cid-uQeTemniPx .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uQeTemniPx .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uQeTemniPx .soc-item:hover span {
  color: #38346b !important;
}
.cid-uQeTemniPx .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uQeTemniPx .social-list {
    justify-content: center;
  }
}
.cid-uQeTemniPx .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uQeTemKvCA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-uQeTemKvCA .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uQeTemKvCA .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uQeTemKvCA .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uQeTemKvCA .main-title.display-2 {
  line-height: 1.375;
}
.cid-uQeTemKvCA .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uQeTemKvCA .mbr-text {
  color: #606060;
}
.cid-uQeTemKvCA .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uQeTemKvCA .mbr-section-btn {
  margin-top: 24px;
}
.cid-uQeTemKvCA .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uQeTemKvCA .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uQeTemKvCA .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uQeTemKvCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQeTemKvCA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQeTemKvCA .mbr-text,
.cid-uQeTemKvCA .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uQeTemKvCA .main-title,
.cid-uQeTemKvCA .mbr-section-btn {
  text-align: center;
}
.cid-uQeTemKvCA .mbr-section-subtitle,
.cid-uQeTemKvCA .mbr-section-btn {
  color: #624977;
  text-align: center;
}
.cid-uQeTen3GKa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQeTen3GKa .container-fluid {
  padding: 0 3rem;
}
.cid-uQeTen3GKa .media-container-column {
  padding: 0 2rem;
}
.cid-uQeTen3GKa .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uQeTen3GKa .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQfGYTAJFE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/youtube-banner-2000x1125.jpg");
}
.cid-uQfGYTAJFE .container-fluid {
  padding: 0 3rem;
}
.cid-uQfGYTAJFE .media-container-column {
  padding: 0 2rem;
}
.cid-uQfGYTAJFE .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #102f62;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uQfGYTAJFE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQfGYTAJFE .mbr-section-subtitle {
  color: #f3f3f3;
  text-align: left;
}
.cid-uQeUAZhi0V {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQeUAZhi0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQeUAZhi0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQeUAZhi0V .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQeUAZhi0V .container {
    padding: 0 16px;
  }
}
.cid-uQeUAZhi0V .row {
  justify-content: center;
}
.cid-uQeUAZhi0V .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQeUAZhi0V .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQeUAZhi0V .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQeUAZhi0V .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQeUAZhi0V .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQeUAZhi0V .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQeUAZhi0V .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQeUAZhi0V .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQeUAZhi0V .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQeUAZhi0V .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQeUAZhi0V .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQeUAZhi0V .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQeUAZhi0V .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQeUAZhi0V .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQeUAZhi0V .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQeUAZhi0V .panel-title {
  color: #000000;
}
.cid-uQeUAZhi0V .panel-text {
  color: #000000;
}
.cid-uQeUAZhi0V .panel-title-edit {
  color: #59307c;
}
.cid-uQeTenUdeZ {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uQeTenUdeZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQeTenUdeZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQeTenUdeZ .container {
    padding: 0 16px;
  }
}
.cid-uQeTenUdeZ .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQeTenUdeZ .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQeTenUdeZ .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uQeTenUdeZ .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uQeTenUdeZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uQeTenUdeZ .mbr-text {
  color: #ffffff;
}
.cid-uQeTenUdeZ .mbr-text,
.cid-uQeTenUdeZ .mbr-section-btn {
  text-align: center;
  color: #813fb8;
}
.cid-uQeTenUdeZ .mbr-section-title,
.cid-uQeTenUdeZ .title-wrap {
  color: #813fb8;
}
.cid-uQeTeoePVs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uQeTeoePVs .container-fluid {
  padding: 0 3rem;
}
.cid-uQeTeoePVs .media-container-column {
  padding: 0 2rem;
}
.cid-uQeTeoePVs .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQeTeoePVs .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQeTeowZNA.popup-builder {
  background-color: #ffffff;
}
.cid-uQeTeowZNA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQeTeowZNA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQeTeowZNA .modal-content,
.cid-uQeTeowZNA .modal-dialog {
  height: auto;
}
.cid-uQeTeowZNA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQeTeowZNA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQeTeowZNA .form-wrapper .mbr-form .form-group,
  .cid-uQeTeowZNA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQeTeowZNA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQeTeowZNA .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-uQeTeowZNA .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uQeTeowZNA .pt-0 {
  padding-top: 0 !important;
}
.cid-uQeTeowZNA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQeTeowZNA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQeTeowZNA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQeTeowZNA .modal-open {
  overflow: hidden;
}
.cid-uQeTeowZNA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQeTeowZNA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQeTeowZNA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQeTeowZNA .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-uQeTeowZNA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQeTeowZNA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQeTeowZNA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQeTeowZNA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQeTeowZNA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQeTeowZNA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQeTeowZNA .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQeTeowZNA .modal-backdrop.show {
  opacity: .5;
}
.cid-uQeTeowZNA .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-uQeTeowZNA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTeowZNA .modal-header {
    padding: 1rem;
  }
}
.cid-uQeTeowZNA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQeTeowZNA .modal-header .close svg {
  fill: #260641;
}
.cid-uQeTeowZNA .modal-header .close:hover {
  opacity: 1;
}
.cid-uQeTeowZNA .modal-header .close:focus {
  outline: none;
}
.cid-uQeTeowZNA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQeTeowZNA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQeTeowZNA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTeowZNA .modal-body {
    padding: 1rem;
  }
}
.cid-uQeTeowZNA .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-uQeTeowZNA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTeowZNA .modal-footer {
    padding: 1rem;
  }
}
.cid-uQeTeowZNA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQeTeowZNA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQeTeowZNA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQeTeowZNA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQeTeowZNA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQeTeowZNA .modal-lg,
  .cid-uQeTeowZNA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQeTeowZNA .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQeTeowZNA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQeTeowZNA .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-uQeTeowZNA .form-group {
  margin-bottom: 1rem;
}
.cid-uQeTeowZNA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQeTeowZNA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQeTeowZNA .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-uQeTeowZNA .mbr-section-btn {
  margin: 0;
}
.cid-uQeTeowZNA .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQeTep0lqm.popup-builder {
  background-color: #ffffff;
}
.cid-uQeTep0lqm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQeTep0lqm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQeTep0lqm .modal-content,
.cid-uQeTep0lqm .modal-dialog {
  height: auto;
}
.cid-uQeTep0lqm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQeTep0lqm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQeTep0lqm .form-wrapper .mbr-form .form-group,
  .cid-uQeTep0lqm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQeTep0lqm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQeTep0lqm .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-uQeTep0lqm .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uQeTep0lqm .pt-0 {
  padding-top: 0 !important;
}
.cid-uQeTep0lqm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQeTep0lqm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQeTep0lqm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQeTep0lqm .modal-open {
  overflow: hidden;
}
.cid-uQeTep0lqm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQeTep0lqm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQeTep0lqm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQeTep0lqm .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-uQeTep0lqm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQeTep0lqm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQeTep0lqm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQeTep0lqm .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQeTep0lqm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQeTep0lqm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQeTep0lqm .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQeTep0lqm .modal-backdrop.show {
  opacity: .5;
}
.cid-uQeTep0lqm .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-uQeTep0lqm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTep0lqm .modal-header {
    padding: 1rem;
  }
}
.cid-uQeTep0lqm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQeTep0lqm .modal-header .close svg {
  fill: #5849aa;
}
.cid-uQeTep0lqm .modal-header .close:hover {
  opacity: 1;
}
.cid-uQeTep0lqm .modal-header .close:focus {
  outline: none;
}
.cid-uQeTep0lqm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uQeTep0lqm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQeTep0lqm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTep0lqm .modal-body {
    padding: 1rem;
  }
}
.cid-uQeTep0lqm .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-uQeTep0lqm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTep0lqm .modal-footer {
    padding: 1rem;
  }
}
.cid-uQeTep0lqm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQeTep0lqm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQeTep0lqm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQeTep0lqm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQeTep0lqm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQeTep0lqm .modal-lg,
  .cid-uQeTep0lqm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQeTep0lqm .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQeTep0lqm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQeTep0lqm .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-uQeTep0lqm .form-group {
  margin-bottom: 1rem;
}
.cid-uQeTep0lqm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQeTep0lqm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQeTep0lqm .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-uQeTep0lqm .mbr-section-btn {
  margin: 0;
}
.cid-uQeTep0lqm .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQeTepqKEl.popup-builder {
  background-color: #ffffff;
}
.cid-uQeTepqKEl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQeTepqKEl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQeTepqKEl .modal-content,
.cid-uQeTepqKEl .modal-dialog {
  height: auto;
}
.cid-uQeTepqKEl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQeTepqKEl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQeTepqKEl .form-wrapper .mbr-form .form-group,
  .cid-uQeTepqKEl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQeTepqKEl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQeTepqKEl .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-uQeTepqKEl .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uQeTepqKEl .pt-0 {
  padding-top: 0 !important;
}
.cid-uQeTepqKEl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQeTepqKEl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQeTepqKEl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQeTepqKEl .modal-open {
  overflow: hidden;
}
.cid-uQeTepqKEl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQeTepqKEl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQeTepqKEl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQeTepqKEl .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-uQeTepqKEl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQeTepqKEl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQeTepqKEl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQeTepqKEl .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQeTepqKEl .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQeTepqKEl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQeTepqKEl .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQeTepqKEl .modal-backdrop.show {
  opacity: .5;
}
.cid-uQeTepqKEl .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-uQeTepqKEl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTepqKEl .modal-header {
    padding: 1rem;
  }
}
.cid-uQeTepqKEl .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQeTepqKEl .modal-header .close svg {
  fill: #611750;
}
.cid-uQeTepqKEl .modal-header .close:hover {
  opacity: 1;
}
.cid-uQeTepqKEl .modal-header .close:focus {
  outline: none;
}
.cid-uQeTepqKEl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQeTepqKEl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQeTepqKEl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTepqKEl .modal-body {
    padding: 1rem;
  }
}
.cid-uQeTepqKEl .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-uQeTepqKEl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTepqKEl .modal-footer {
    padding: 1rem;
  }
}
.cid-uQeTepqKEl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQeTepqKEl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQeTepqKEl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQeTepqKEl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQeTepqKEl .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQeTepqKEl .modal-lg,
  .cid-uQeTepqKEl .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQeTepqKEl .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQeTepqKEl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQeTepqKEl .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-uQeTepqKEl .form-group {
  margin-bottom: 1rem;
}
.cid-uQeTepqKEl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQeTepqKEl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQeTepqKEl .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-uQeTepqKEl .mbr-section-btn {
  margin: 0;
}
.cid-uQeTepqKEl .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQeTepRNeA.popup-builder {
  background-color: #ffffff;
}
.cid-uQeTepRNeA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQeTepRNeA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQeTepRNeA .modal-content,
.cid-uQeTepRNeA .modal-dialog {
  height: auto;
}
.cid-uQeTepRNeA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQeTepRNeA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQeTepRNeA .form-wrapper .mbr-form .form-group,
  .cid-uQeTepRNeA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQeTepRNeA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQeTepRNeA .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-uQeTepRNeA .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uQeTepRNeA .pt-0 {
  padding-top: 0 !important;
}
.cid-uQeTepRNeA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQeTepRNeA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQeTepRNeA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQeTepRNeA .modal-open {
  overflow: hidden;
}
.cid-uQeTepRNeA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQeTepRNeA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQeTepRNeA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQeTepRNeA .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-uQeTepRNeA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQeTepRNeA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQeTepRNeA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQeTepRNeA .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQeTepRNeA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQeTepRNeA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQeTepRNeA .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQeTepRNeA .modal-backdrop.show {
  opacity: .5;
}
.cid-uQeTepRNeA .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-uQeTepRNeA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTepRNeA .modal-header {
    padding: 1rem;
  }
}
.cid-uQeTepRNeA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQeTepRNeA .modal-header .close svg {
  fill: #59307c;
}
.cid-uQeTepRNeA .modal-header .close:hover {
  opacity: 1;
}
.cid-uQeTepRNeA .modal-header .close:focus {
  outline: none;
}
.cid-uQeTepRNeA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uQeTepRNeA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQeTepRNeA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTepRNeA .modal-body {
    padding: 1rem;
  }
}
.cid-uQeTepRNeA .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-uQeTepRNeA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTepRNeA .modal-footer {
    padding: 1rem;
  }
}
.cid-uQeTepRNeA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQeTepRNeA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQeTepRNeA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQeTepRNeA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQeTepRNeA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQeTepRNeA .modal-lg,
  .cid-uQeTepRNeA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQeTepRNeA .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQeTepRNeA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQeTepRNeA .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-uQeTepRNeA .form-group {
  margin-bottom: 1rem;
}
.cid-uQeTepRNeA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQeTepRNeA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQeTepRNeA .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-uQeTepRNeA .mbr-section-btn {
  margin: 0;
}
.cid-uQeTepRNeA .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQeTeqjFD4.popup-builder {
  background-color: #ffffff;
}
.cid-uQeTeqjFD4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQeTeqjFD4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQeTeqjFD4 .modal-content,
.cid-uQeTeqjFD4 .modal-dialog {
  height: auto;
}
.cid-uQeTeqjFD4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQeTeqjFD4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQeTeqjFD4 .form-wrapper .mbr-form .form-group,
  .cid-uQeTeqjFD4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQeTeqjFD4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQeTeqjFD4 .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-uQeTeqjFD4 .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uQeTeqjFD4 .pt-0 {
  padding-top: 0 !important;
}
.cid-uQeTeqjFD4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQeTeqjFD4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQeTeqjFD4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQeTeqjFD4 .modal-open {
  overflow: hidden;
}
.cid-uQeTeqjFD4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQeTeqjFD4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQeTeqjFD4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQeTeqjFD4 .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-uQeTeqjFD4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQeTeqjFD4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQeTeqjFD4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQeTeqjFD4 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQeTeqjFD4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQeTeqjFD4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQeTeqjFD4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQeTeqjFD4 .modal-backdrop.show {
  opacity: .5;
}
.cid-uQeTeqjFD4 .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-uQeTeqjFD4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTeqjFD4 .modal-header {
    padding: 1rem;
  }
}
.cid-uQeTeqjFD4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQeTeqjFD4 .modal-header .close svg {
  fill: #ffffff;
}
.cid-uQeTeqjFD4 .modal-header .close:hover {
  opacity: 1;
}
.cid-uQeTeqjFD4 .modal-header .close:focus {
  outline: none;
}
.cid-uQeTeqjFD4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uQeTeqjFD4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQeTeqjFD4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTeqjFD4 .modal-body {
    padding: 1rem;
  }
}
.cid-uQeTeqjFD4 .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-uQeTeqjFD4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTeqjFD4 .modal-footer {
    padding: 1rem;
  }
}
.cid-uQeTeqjFD4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQeTeqjFD4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQeTeqjFD4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQeTeqjFD4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQeTeqjFD4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQeTeqjFD4 .modal-lg,
  .cid-uQeTeqjFD4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQeTeqjFD4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQeTeqjFD4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQeTeqjFD4 .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-uQeTeqjFD4 .form-group {
  margin-bottom: 1rem;
}
.cid-uQeTeqjFD4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQeTeqjFD4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQeTeqjFD4 .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-uQeTeqjFD4 .mbr-section-btn {
  margin: 0;
}
.cid-uQeTeqjFD4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQeTeqO55u.popup-builder {
  background-color: #ffffff;
}
.cid-uQeTeqO55u.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQeTeqO55u.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQeTeqO55u .modal-content,
.cid-uQeTeqO55u .modal-dialog {
  height: auto;
}
.cid-uQeTeqO55u .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQeTeqO55u .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQeTeqO55u .form-wrapper .mbr-form .form-group,
  .cid-uQeTeqO55u .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQeTeqO55u .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQeTeqO55u .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-uQeTeqO55u .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uQeTeqO55u .pt-0 {
  padding-top: 0 !important;
}
.cid-uQeTeqO55u .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQeTeqO55u .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQeTeqO55u .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQeTeqO55u .modal-open {
  overflow: hidden;
}
.cid-uQeTeqO55u .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQeTeqO55u .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQeTeqO55u .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQeTeqO55u .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-uQeTeqO55u .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQeTeqO55u .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQeTeqO55u .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQeTeqO55u .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQeTeqO55u .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQeTeqO55u .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQeTeqO55u .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQeTeqO55u .modal-backdrop.show {
  opacity: .5;
}
.cid-uQeTeqO55u .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-uQeTeqO55u .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTeqO55u .modal-header {
    padding: 1rem;
  }
}
.cid-uQeTeqO55u .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQeTeqO55u .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uQeTeqO55u .modal-header .close:hover {
  opacity: 1;
}
.cid-uQeTeqO55u .modal-header .close:focus {
  outline: none;
}
.cid-uQeTeqO55u .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uQeTeqO55u .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQeTeqO55u .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTeqO55u .modal-body {
    padding: 1rem;
  }
}
.cid-uQeTeqO55u .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-uQeTeqO55u .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTeqO55u .modal-footer {
    padding: 1rem;
  }
}
.cid-uQeTeqO55u .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQeTeqO55u .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQeTeqO55u .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQeTeqO55u .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQeTeqO55u .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQeTeqO55u .modal-lg,
  .cid-uQeTeqO55u .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQeTeqO55u .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQeTeqO55u .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQeTeqO55u .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-uQeTeqO55u .form-group {
  margin-bottom: 1rem;
}
.cid-uQeTeqO55u .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQeTeqO55u .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQeTeqO55u .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-uQeTeqO55u .mbr-section-btn {
  margin: 0;
}
.cid-uQeTeqO55u .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQeTergWVc.popup-builder {
  background-color: #ffffff;
}
.cid-uQeTergWVc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQeTergWVc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQeTergWVc .modal-content,
.cid-uQeTergWVc .modal-dialog {
  height: auto;
}
.cid-uQeTergWVc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQeTergWVc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQeTergWVc .form-wrapper .mbr-form .form-group,
  .cid-uQeTergWVc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQeTergWVc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQeTergWVc .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-uQeTergWVc .mbr-text {
  text-align: center;
}
.cid-uQeTergWVc .pt-0 {
  padding-top: 0 !important;
}
.cid-uQeTergWVc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQeTergWVc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQeTergWVc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQeTergWVc .modal-open {
  overflow: hidden;
}
.cid-uQeTergWVc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQeTergWVc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQeTergWVc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQeTergWVc .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-uQeTergWVc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQeTergWVc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQeTergWVc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQeTergWVc .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQeTergWVc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQeTergWVc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQeTergWVc .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQeTergWVc .modal-backdrop.show {
  opacity: .5;
}
.cid-uQeTergWVc .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-uQeTergWVc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTergWVc .modal-header {
    padding: 1rem;
  }
}
.cid-uQeTergWVc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQeTergWVc .modal-header .close svg {
  fill: #353535;
}
.cid-uQeTergWVc .modal-header .close:hover {
  opacity: 1;
}
.cid-uQeTergWVc .modal-header .close:focus {
  outline: none;
}
.cid-uQeTergWVc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQeTergWVc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQeTergWVc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTergWVc .modal-body {
    padding: 1rem;
  }
}
.cid-uQeTergWVc .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-uQeTergWVc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQeTergWVc .modal-footer {
    padding: 1rem;
  }
}
.cid-uQeTergWVc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQeTergWVc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQeTergWVc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQeTergWVc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQeTergWVc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQeTergWVc .modal-lg,
  .cid-uQeTergWVc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQeTergWVc .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQeTergWVc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQeTergWVc .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-uQeTergWVc .form-group {
  margin-bottom: 1rem;
}
.cid-uQeTergWVc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQeTergWVc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQeTergWVc .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-uQeTergWVc .mbr-section-btn {
  margin: 0;
}
.cid-uQeTergWVc .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOpIWtEawq .dropdown-menu {
  padding: 12px 0;
}
.cid-uOpIWtEawq .dropdown-item:hover,
.cid-uOpIWtEawq .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uOpIWtEawq .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uOpIWtEawq .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uOpIWtEawq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOpIWtEawq .nav-link {
  position: relative;
}
.cid-uOpIWtEawq .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uOpIWtEawq .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOpIWtEawq .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uOpIWtEawq .dropdown-menu,
.cid-uOpIWtEawq .navbar.opened {
  background: #1f0931 !important;
}
.cid-uOpIWtEawq .nav-item:focus,
.cid-uOpIWtEawq .nav-link:focus {
  outline: none;
}
.cid-uOpIWtEawq .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uOpIWtEawq .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uOpIWtEawq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOpIWtEawq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOpIWtEawq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOpIWtEawq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOpIWtEawq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOpIWtEawq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOpIWtEawq .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uOpIWtEawq .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uOpIWtEawq .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uOpIWtEawq .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uOpIWtEawq .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uOpIWtEawq .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uOpIWtEawq .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uOpIWtEawq .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uOpIWtEawq .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uOpIWtEawq .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uOpIWtEawq .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uOpIWtEawq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOpIWtEawq .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uOpIWtEawq .navbar.collapsed.opened {
  position: fixed;
}
.cid-uOpIWtEawq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uOpIWtEawq .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uOpIWtEawq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uOpIWtEawq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOpIWtEawq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOpIWtEawq .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: 55%;
}
.cid-uOpIWtEawq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOpIWtEawq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOpIWtEawq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOpIWtEawq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOpIWtEawq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOpIWtEawq .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uOpIWtEawq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOpIWtEawq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOpIWtEawq .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: 41%;
  }
  .cid-uOpIWtEawq .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uOpIWtEawq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOpIWtEawq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOpIWtEawq .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOpIWtEawq .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uOpIWtEawq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOpIWtEawq .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uOpIWtEawq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOpIWtEawq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOpIWtEawq .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOpIWtEawq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOpIWtEawq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOpIWtEawq .dropdown-item.active,
.cid-uOpIWtEawq .dropdown-item:active {
  background-color: transparent;
}
.cid-uOpIWtEawq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOpIWtEawq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOpIWtEawq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOpIWtEawq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uOpIWtEawq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOpIWtEawq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOpIWtEawq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uOpIWtEawq .navbar-buttons {
  text-align: center;
}
.cid-uOpIWtEawq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uOpIWtEawq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uOpIWtEawq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOpIWtEawq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpIWtEawq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOpIWtEawq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOpIWtEawq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpIWtEawq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOpIWtEawq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOpIWtEawq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOpIWtEawq .navbar-dropdown {
  position: fixed;
}
.cid-uOpIWtEawq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uOpIWtEawq .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uOpIWtEawq .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uOpIWtEawq .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOpIWtEawq .navbar {
    height: 77px;
  }
  .cid-uOpIWtEawq .navbar.opened {
    height: auto;
  }
  .cid-uOpIWtEawq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOpIWuerRS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uOpIWuerRS .container-fluid {
  padding: 0 3rem;
}
.cid-uOpIWuerRS .media-container-column {
  padding: 0 2rem;
}
.cid-uOpIWuerRS .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uOpIWuerRS .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uOpIWuyTOg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uOpIWuyTOg .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uOpIWuyTOg img {
    width: 90%;
  }
}
.cid-uOpIWuyTOg .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uOpIWuyTOg .items {
  margin-bottom: 0;
}
.cid-uOpIWuyTOg .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uOpIWuyTOg .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uOpIWuyTOg .soc-item:hover span {
  color: #38346b !important;
}
.cid-uOpIWuyTOg .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uOpIWuyTOg .social-list {
    justify-content: center;
  }
}
.cid-uOpIWuyTOg .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uOpJg86Hb7 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uOpJg86Hb7 .mbr-section-title {
  text-align: center;
}
.cid-uOpJg86Hb7 .mbr-section-text {
  text-align: center;
}
.cid-uOpJg86Hb7 button[type="submit"] {
  border-radius: 100px;
}
.cid-uOpJg86Hb7 a[type="submit"],
.cid-uOpJg86Hb7 button[type="submit"] {
  margin-top: 0;
}
.cid-uOpJg86Hb7 .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-uOpJg86Hb7 mark {
  padding: 0;
  color: inherit;
  background-color: inherit;
  font-weight: bold;
}
.cid-uOpJg86Hb7 .row .spinner-border,
.cid-uOpJg86Hb7 .row .spinner-grow {
  width: 32px;
  color: #813fb8;
}
.cid-uOpJg86Hb7 .gdpr-block {
  display: none;
}
.cid-uOpIWw4Uou {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uOpIWw4Uou .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOpIWw4Uou .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOpIWw4Uou .container {
    padding: 0 16px;
  }
}
.cid-uOpIWw4Uou .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uOpIWw4Uou .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uOpIWw4Uou .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uOpIWw4Uou .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uOpIWw4Uou .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uOpIWw4Uou .mbr-text {
  color: #ffffff;
}
.cid-uOpIWw4Uou .mbr-text,
.cid-uOpIWw4Uou .mbr-section-btn {
  text-align: center;
  color: #813fb8;
}
.cid-uOpIWw4Uou .mbr-section-title,
.cid-uOpIWw4Uou .title-wrap {
  color: #813fb8;
}
.cid-uOpIWwplSw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uOpIWwplSw .container-fluid {
  padding: 0 3rem;
}
.cid-uOpIWwplSw .media-container-column {
  padding: 0 2rem;
}
.cid-uOpIWwplSw .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uOpIWwplSw .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uOpIWwOhbl.popup-builder {
  background-color: #ffffff;
}
.cid-uOpIWwOhbl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOpIWwOhbl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOpIWwOhbl .modal-content,
.cid-uOpIWwOhbl .modal-dialog {
  height: auto;
}
.cid-uOpIWwOhbl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOpIWwOhbl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOpIWwOhbl .form-wrapper .mbr-form .form-group,
  .cid-uOpIWwOhbl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOpIWwOhbl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOpIWwOhbl .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-uOpIWwOhbl .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uOpIWwOhbl .pt-0 {
  padding-top: 0 !important;
}
.cid-uOpIWwOhbl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOpIWwOhbl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOpIWwOhbl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOpIWwOhbl .modal-open {
  overflow: hidden;
}
.cid-uOpIWwOhbl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOpIWwOhbl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOpIWwOhbl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOpIWwOhbl .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-uOpIWwOhbl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOpIWwOhbl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOpIWwOhbl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOpIWwOhbl .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOpIWwOhbl .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOpIWwOhbl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOpIWwOhbl .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOpIWwOhbl .modal-backdrop.show {
  opacity: .5;
}
.cid-uOpIWwOhbl .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-uOpIWwOhbl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWwOhbl .modal-header {
    padding: 1rem;
  }
}
.cid-uOpIWwOhbl .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOpIWwOhbl .modal-header .close svg {
  fill: #260641;
}
.cid-uOpIWwOhbl .modal-header .close:hover {
  opacity: 1;
}
.cid-uOpIWwOhbl .modal-header .close:focus {
  outline: none;
}
.cid-uOpIWwOhbl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uOpIWwOhbl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOpIWwOhbl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWwOhbl .modal-body {
    padding: 1rem;
  }
}
.cid-uOpIWwOhbl .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-uOpIWwOhbl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWwOhbl .modal-footer {
    padding: 1rem;
  }
}
.cid-uOpIWwOhbl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOpIWwOhbl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOpIWwOhbl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOpIWwOhbl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOpIWwOhbl .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOpIWwOhbl .modal-lg,
  .cid-uOpIWwOhbl .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOpIWwOhbl .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOpIWwOhbl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOpIWwOhbl .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-uOpIWwOhbl .form-group {
  margin-bottom: 1rem;
}
.cid-uOpIWwOhbl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOpIWwOhbl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOpIWwOhbl .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-uOpIWwOhbl .mbr-section-btn {
  margin: 0;
}
.cid-uOpIWwOhbl .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOpIWxhbHX.popup-builder {
  background-color: #ffffff;
}
.cid-uOpIWxhbHX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOpIWxhbHX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOpIWxhbHX .modal-content,
.cid-uOpIWxhbHX .modal-dialog {
  height: auto;
}
.cid-uOpIWxhbHX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOpIWxhbHX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOpIWxhbHX .form-wrapper .mbr-form .form-group,
  .cid-uOpIWxhbHX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOpIWxhbHX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOpIWxhbHX .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-uOpIWxhbHX .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uOpIWxhbHX .pt-0 {
  padding-top: 0 !important;
}
.cid-uOpIWxhbHX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOpIWxhbHX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOpIWxhbHX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOpIWxhbHX .modal-open {
  overflow: hidden;
}
.cid-uOpIWxhbHX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOpIWxhbHX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOpIWxhbHX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOpIWxhbHX .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-uOpIWxhbHX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOpIWxhbHX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOpIWxhbHX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOpIWxhbHX .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOpIWxhbHX .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOpIWxhbHX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOpIWxhbHX .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOpIWxhbHX .modal-backdrop.show {
  opacity: .5;
}
.cid-uOpIWxhbHX .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-uOpIWxhbHX .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWxhbHX .modal-header {
    padding: 1rem;
  }
}
.cid-uOpIWxhbHX .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOpIWxhbHX .modal-header .close svg {
  fill: #5849aa;
}
.cid-uOpIWxhbHX .modal-header .close:hover {
  opacity: 1;
}
.cid-uOpIWxhbHX .modal-header .close:focus {
  outline: none;
}
.cid-uOpIWxhbHX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uOpIWxhbHX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOpIWxhbHX .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWxhbHX .modal-body {
    padding: 1rem;
  }
}
.cid-uOpIWxhbHX .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-uOpIWxhbHX .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWxhbHX .modal-footer {
    padding: 1rem;
  }
}
.cid-uOpIWxhbHX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOpIWxhbHX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOpIWxhbHX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOpIWxhbHX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOpIWxhbHX .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOpIWxhbHX .modal-lg,
  .cid-uOpIWxhbHX .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOpIWxhbHX .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOpIWxhbHX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOpIWxhbHX .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-uOpIWxhbHX .form-group {
  margin-bottom: 1rem;
}
.cid-uOpIWxhbHX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOpIWxhbHX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOpIWxhbHX .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-uOpIWxhbHX .mbr-section-btn {
  margin: 0;
}
.cid-uOpIWxhbHX .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOpIWxI7J7.popup-builder {
  background-color: #ffffff;
}
.cid-uOpIWxI7J7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOpIWxI7J7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOpIWxI7J7 .modal-content,
.cid-uOpIWxI7J7 .modal-dialog {
  height: auto;
}
.cid-uOpIWxI7J7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOpIWxI7J7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOpIWxI7J7 .form-wrapper .mbr-form .form-group,
  .cid-uOpIWxI7J7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOpIWxI7J7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOpIWxI7J7 .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-uOpIWxI7J7 .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uOpIWxI7J7 .pt-0 {
  padding-top: 0 !important;
}
.cid-uOpIWxI7J7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOpIWxI7J7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOpIWxI7J7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOpIWxI7J7 .modal-open {
  overflow: hidden;
}
.cid-uOpIWxI7J7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOpIWxI7J7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOpIWxI7J7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOpIWxI7J7 .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-uOpIWxI7J7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOpIWxI7J7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOpIWxI7J7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOpIWxI7J7 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOpIWxI7J7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOpIWxI7J7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOpIWxI7J7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOpIWxI7J7 .modal-backdrop.show {
  opacity: .5;
}
.cid-uOpIWxI7J7 .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-uOpIWxI7J7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWxI7J7 .modal-header {
    padding: 1rem;
  }
}
.cid-uOpIWxI7J7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOpIWxI7J7 .modal-header .close svg {
  fill: #611750;
}
.cid-uOpIWxI7J7 .modal-header .close:hover {
  opacity: 1;
}
.cid-uOpIWxI7J7 .modal-header .close:focus {
  outline: none;
}
.cid-uOpIWxI7J7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uOpIWxI7J7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOpIWxI7J7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWxI7J7 .modal-body {
    padding: 1rem;
  }
}
.cid-uOpIWxI7J7 .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-uOpIWxI7J7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWxI7J7 .modal-footer {
    padding: 1rem;
  }
}
.cid-uOpIWxI7J7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOpIWxI7J7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOpIWxI7J7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOpIWxI7J7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOpIWxI7J7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOpIWxI7J7 .modal-lg,
  .cid-uOpIWxI7J7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOpIWxI7J7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOpIWxI7J7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOpIWxI7J7 .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-uOpIWxI7J7 .form-group {
  margin-bottom: 1rem;
}
.cid-uOpIWxI7J7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOpIWxI7J7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOpIWxI7J7 .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-uOpIWxI7J7 .mbr-section-btn {
  margin: 0;
}
.cid-uOpIWxI7J7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOpIWy9bf0.popup-builder {
  background-color: #ffffff;
}
.cid-uOpIWy9bf0.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOpIWy9bf0.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOpIWy9bf0 .modal-content,
.cid-uOpIWy9bf0 .modal-dialog {
  height: auto;
}
.cid-uOpIWy9bf0 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOpIWy9bf0 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOpIWy9bf0 .form-wrapper .mbr-form .form-group,
  .cid-uOpIWy9bf0 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOpIWy9bf0 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOpIWy9bf0 .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-uOpIWy9bf0 .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uOpIWy9bf0 .pt-0 {
  padding-top: 0 !important;
}
.cid-uOpIWy9bf0 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOpIWy9bf0 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOpIWy9bf0 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOpIWy9bf0 .modal-open {
  overflow: hidden;
}
.cid-uOpIWy9bf0 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOpIWy9bf0 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOpIWy9bf0 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOpIWy9bf0 .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-uOpIWy9bf0 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOpIWy9bf0 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOpIWy9bf0 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOpIWy9bf0 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOpIWy9bf0 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOpIWy9bf0 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOpIWy9bf0 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOpIWy9bf0 .modal-backdrop.show {
  opacity: .5;
}
.cid-uOpIWy9bf0 .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-uOpIWy9bf0 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWy9bf0 .modal-header {
    padding: 1rem;
  }
}
.cid-uOpIWy9bf0 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOpIWy9bf0 .modal-header .close svg {
  fill: #59307c;
}
.cid-uOpIWy9bf0 .modal-header .close:hover {
  opacity: 1;
}
.cid-uOpIWy9bf0 .modal-header .close:focus {
  outline: none;
}
.cid-uOpIWy9bf0 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uOpIWy9bf0 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOpIWy9bf0 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWy9bf0 .modal-body {
    padding: 1rem;
  }
}
.cid-uOpIWy9bf0 .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-uOpIWy9bf0 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWy9bf0 .modal-footer {
    padding: 1rem;
  }
}
.cid-uOpIWy9bf0 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOpIWy9bf0 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOpIWy9bf0 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOpIWy9bf0 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOpIWy9bf0 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOpIWy9bf0 .modal-lg,
  .cid-uOpIWy9bf0 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOpIWy9bf0 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOpIWy9bf0 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOpIWy9bf0 .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-uOpIWy9bf0 .form-group {
  margin-bottom: 1rem;
}
.cid-uOpIWy9bf0 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOpIWy9bf0 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOpIWy9bf0 .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-uOpIWy9bf0 .mbr-section-btn {
  margin: 0;
}
.cid-uOpIWy9bf0 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOpIWyEMGY.popup-builder {
  background-color: #ffffff;
}
.cid-uOpIWyEMGY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOpIWyEMGY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOpIWyEMGY .modal-content,
.cid-uOpIWyEMGY .modal-dialog {
  height: auto;
}
.cid-uOpIWyEMGY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOpIWyEMGY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOpIWyEMGY .form-wrapper .mbr-form .form-group,
  .cid-uOpIWyEMGY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOpIWyEMGY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOpIWyEMGY .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-uOpIWyEMGY .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uOpIWyEMGY .pt-0 {
  padding-top: 0 !important;
}
.cid-uOpIWyEMGY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOpIWyEMGY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOpIWyEMGY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOpIWyEMGY .modal-open {
  overflow: hidden;
}
.cid-uOpIWyEMGY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOpIWyEMGY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOpIWyEMGY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOpIWyEMGY .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-uOpIWyEMGY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOpIWyEMGY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOpIWyEMGY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOpIWyEMGY .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOpIWyEMGY .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOpIWyEMGY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOpIWyEMGY .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOpIWyEMGY .modal-backdrop.show {
  opacity: .5;
}
.cid-uOpIWyEMGY .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-uOpIWyEMGY .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWyEMGY .modal-header {
    padding: 1rem;
  }
}
.cid-uOpIWyEMGY .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOpIWyEMGY .modal-header .close svg {
  fill: #ffffff;
}
.cid-uOpIWyEMGY .modal-header .close:hover {
  opacity: 1;
}
.cid-uOpIWyEMGY .modal-header .close:focus {
  outline: none;
}
.cid-uOpIWyEMGY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uOpIWyEMGY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOpIWyEMGY .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWyEMGY .modal-body {
    padding: 1rem;
  }
}
.cid-uOpIWyEMGY .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-uOpIWyEMGY .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWyEMGY .modal-footer {
    padding: 1rem;
  }
}
.cid-uOpIWyEMGY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOpIWyEMGY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOpIWyEMGY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOpIWyEMGY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOpIWyEMGY .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOpIWyEMGY .modal-lg,
  .cid-uOpIWyEMGY .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOpIWyEMGY .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOpIWyEMGY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOpIWyEMGY .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-uOpIWyEMGY .form-group {
  margin-bottom: 1rem;
}
.cid-uOpIWyEMGY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOpIWyEMGY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOpIWyEMGY .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-uOpIWyEMGY .mbr-section-btn {
  margin: 0;
}
.cid-uOpIWyEMGY .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOpIWz5Yh7.popup-builder {
  background-color: #ffffff;
}
.cid-uOpIWz5Yh7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOpIWz5Yh7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOpIWz5Yh7 .modal-content,
.cid-uOpIWz5Yh7 .modal-dialog {
  height: auto;
}
.cid-uOpIWz5Yh7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOpIWz5Yh7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOpIWz5Yh7 .form-wrapper .mbr-form .form-group,
  .cid-uOpIWz5Yh7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOpIWz5Yh7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOpIWz5Yh7 .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-uOpIWz5Yh7 .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uOpIWz5Yh7 .pt-0 {
  padding-top: 0 !important;
}
.cid-uOpIWz5Yh7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOpIWz5Yh7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOpIWz5Yh7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOpIWz5Yh7 .modal-open {
  overflow: hidden;
}
.cid-uOpIWz5Yh7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOpIWz5Yh7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOpIWz5Yh7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOpIWz5Yh7 .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-uOpIWz5Yh7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOpIWz5Yh7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOpIWz5Yh7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOpIWz5Yh7 .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOpIWz5Yh7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOpIWz5Yh7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOpIWz5Yh7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOpIWz5Yh7 .modal-backdrop.show {
  opacity: .5;
}
.cid-uOpIWz5Yh7 .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-uOpIWz5Yh7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWz5Yh7 .modal-header {
    padding: 1rem;
  }
}
.cid-uOpIWz5Yh7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOpIWz5Yh7 .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uOpIWz5Yh7 .modal-header .close:hover {
  opacity: 1;
}
.cid-uOpIWz5Yh7 .modal-header .close:focus {
  outline: none;
}
.cid-uOpIWz5Yh7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uOpIWz5Yh7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOpIWz5Yh7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWz5Yh7 .modal-body {
    padding: 1rem;
  }
}
.cid-uOpIWz5Yh7 .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-uOpIWz5Yh7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWz5Yh7 .modal-footer {
    padding: 1rem;
  }
}
.cid-uOpIWz5Yh7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOpIWz5Yh7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOpIWz5Yh7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOpIWz5Yh7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOpIWz5Yh7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOpIWz5Yh7 .modal-lg,
  .cid-uOpIWz5Yh7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOpIWz5Yh7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOpIWz5Yh7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOpIWz5Yh7 .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-uOpIWz5Yh7 .form-group {
  margin-bottom: 1rem;
}
.cid-uOpIWz5Yh7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOpIWz5Yh7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOpIWz5Yh7 .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-uOpIWz5Yh7 .mbr-section-btn {
  margin: 0;
}
.cid-uOpIWz5Yh7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uOpIWzykfz.popup-builder {
  background-color: #ffffff;
}
.cid-uOpIWzykfz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uOpIWzykfz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uOpIWzykfz .modal-content,
.cid-uOpIWzykfz .modal-dialog {
  height: auto;
}
.cid-uOpIWzykfz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uOpIWzykfz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uOpIWzykfz .form-wrapper .mbr-form .form-group,
  .cid-uOpIWzykfz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uOpIWzykfz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uOpIWzykfz .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-uOpIWzykfz .mbr-text {
  text-align: center;
}
.cid-uOpIWzykfz .pt-0 {
  padding-top: 0 !important;
}
.cid-uOpIWzykfz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uOpIWzykfz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uOpIWzykfz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uOpIWzykfz .modal-open {
  overflow: hidden;
}
.cid-uOpIWzykfz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uOpIWzykfz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uOpIWzykfz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uOpIWzykfz .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-uOpIWzykfz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uOpIWzykfz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uOpIWzykfz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uOpIWzykfz .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uOpIWzykfz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uOpIWzykfz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uOpIWzykfz .modal-backdrop.fade {
  opacity: 0;
}
.cid-uOpIWzykfz .modal-backdrop.show {
  opacity: .5;
}
.cid-uOpIWzykfz .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-uOpIWzykfz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWzykfz .modal-header {
    padding: 1rem;
  }
}
.cid-uOpIWzykfz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uOpIWzykfz .modal-header .close svg {
  fill: #353535;
}
.cid-uOpIWzykfz .modal-header .close:hover {
  opacity: 1;
}
.cid-uOpIWzykfz .modal-header .close:focus {
  outline: none;
}
.cid-uOpIWzykfz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uOpIWzykfz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uOpIWzykfz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWzykfz .modal-body {
    padding: 1rem;
  }
}
.cid-uOpIWzykfz .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-uOpIWzykfz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOpIWzykfz .modal-footer {
    padding: 1rem;
  }
}
.cid-uOpIWzykfz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uOpIWzykfz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uOpIWzykfz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uOpIWzykfz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uOpIWzykfz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uOpIWzykfz .modal-lg,
  .cid-uOpIWzykfz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uOpIWzykfz .modal-xl {
    max-width: 1140px;
  }
}
.cid-uOpIWzykfz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uOpIWzykfz .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-uOpIWzykfz .form-group {
  margin-bottom: 1rem;
}
.cid-uOpIWzykfz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uOpIWzykfz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uOpIWzykfz .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-uOpIWzykfz .mbr-section-btn {
  margin: 0;
}
.cid-uOpIWzykfz .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkevINEkY .dropdown-menu {
  padding: 12px 0;
}
.cid-uQkevINEkY .dropdown-item:hover,
.cid-uQkevINEkY .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uQkevINEkY .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uQkevINEkY .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uQkevINEkY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQkevINEkY .nav-link {
  position: relative;
}
.cid-uQkevINEkY .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uQkevINEkY .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQkevINEkY .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uQkevINEkY .dropdown-menu,
.cid-uQkevINEkY .navbar.opened {
  background: #1f0931 !important;
}
.cid-uQkevINEkY .nav-item:focus,
.cid-uQkevINEkY .nav-link:focus {
  outline: none;
}
.cid-uQkevINEkY .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uQkevINEkY .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uQkevINEkY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQkevINEkY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQkevINEkY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQkevINEkY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQkevINEkY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQkevINEkY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQkevINEkY .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uQkevINEkY .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uQkevINEkY .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uQkevINEkY .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uQkevINEkY .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uQkevINEkY .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uQkevINEkY .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uQkevINEkY .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uQkevINEkY .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uQkevINEkY .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uQkevINEkY .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uQkevINEkY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQkevINEkY .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uQkevINEkY .navbar.collapsed.opened {
  position: fixed;
}
.cid-uQkevINEkY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uQkevINEkY .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQkevINEkY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uQkevINEkY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQkevINEkY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQkevINEkY .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: 55%;
}
.cid-uQkevINEkY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQkevINEkY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQkevINEkY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQkevINEkY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQkevINEkY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQkevINEkY .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uQkevINEkY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQkevINEkY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQkevINEkY .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: 41%;
  }
  .cid-uQkevINEkY .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uQkevINEkY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQkevINEkY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQkevINEkY .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQkevINEkY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uQkevINEkY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uQkevINEkY .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uQkevINEkY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQkevINEkY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQkevINEkY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQkevINEkY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQkevINEkY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQkevINEkY .dropdown-item.active,
.cid-uQkevINEkY .dropdown-item:active {
  background-color: transparent;
}
.cid-uQkevINEkY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQkevINEkY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQkevINEkY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQkevINEkY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uQkevINEkY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQkevINEkY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQkevINEkY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQkevINEkY .navbar-buttons {
  text-align: center;
}
.cid-uQkevINEkY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQkevINEkY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uQkevINEkY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQkevINEkY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQkevINEkY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQkevINEkY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQkevINEkY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQkevINEkY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQkevINEkY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQkevINEkY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQkevINEkY .navbar-dropdown {
  position: fixed;
}
.cid-uQkevINEkY a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQkevINEkY .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uQkevINEkY .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uQkevINEkY .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQkevINEkY .navbar {
    height: 77px;
  }
  .cid-uQkevINEkY .navbar.opened {
    height: auto;
  }
  .cid-uQkevINEkY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQkevJCeqP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uQkevJCeqP .container-fluid {
  padding: 0 3rem;
}
.cid-uQkevJCeqP .media-container-column {
  padding: 0 2rem;
}
.cid-uQkevJCeqP .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQkevJCeqP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQkevK2fyI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQkevK2fyI .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uQkevK2fyI img {
    width: 90%;
  }
}
.cid-uQkevK2fyI .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uQkevK2fyI .items {
  margin-bottom: 0;
}
.cid-uQkevK2fyI .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uQkevK2fyI .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uQkevK2fyI .soc-item:hover span {
  color: #38346b !important;
}
.cid-uQkevK2fyI .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uQkevK2fyI .social-list {
    justify-content: center;
  }
}
.cid-uQkevK2fyI .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uQkevKyfS0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-uQkevKyfS0 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uQkevKyfS0 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uQkevKyfS0 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uQkevKyfS0 .main-title.display-2 {
  line-height: 1.375;
}
.cid-uQkevKyfS0 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uQkevKyfS0 .mbr-text {
  color: #606060;
}
.cid-uQkevKyfS0 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uQkevKyfS0 .mbr-section-btn {
  margin-top: 24px;
}
.cid-uQkevKyfS0 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uQkevKyfS0 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uQkevKyfS0 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uQkevKyfS0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQkevKyfS0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQkevKyfS0 .mbr-text,
.cid-uQkevKyfS0 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uQkevKyfS0 .main-title,
.cid-uQkevKyfS0 .mbr-section-btn {
  text-align: center;
}
.cid-uQkevKyfS0 .mbr-section-subtitle,
.cid-uQkevKyfS0 .mbr-section-btn {
  color: #624977;
  text-align: center;
}
.cid-uQkevKWWjX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQkevKWWjX .container-fluid {
  padding: 0 3rem;
}
.cid-uQkevKWWjX .media-container-column {
  padding: 0 2rem;
}
.cid-uQkevKWWjX .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uQkevKWWjX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQkevLnT22 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/youtube-banner-2000x1125.jpg");
}
.cid-uQkevLnT22 .container-fluid {
  padding: 0 3rem;
}
.cid-uQkevLnT22 .media-container-column {
  padding: 0 2rem;
}
.cid-uQkevLnT22 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #102f62;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uQkevLnT22 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQkevLnT22 .mbr-section-subtitle {
  color: #f3f3f3;
  text-align: left;
}
.cid-uQkevLGFG3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQkevLGFG3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQkevLGFG3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQkevLGFG3 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQkevLGFG3 .container {
    padding: 0 16px;
  }
}
.cid-uQkevLGFG3 .row {
  justify-content: center;
}
.cid-uQkevLGFG3 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQkevLGFG3 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQkevLGFG3 .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQkevLGFG3 .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQkevLGFG3 .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQkevLGFG3 .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQkevLGFG3 .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQkevLGFG3 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQkevLGFG3 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQkevLGFG3 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQkevLGFG3 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQkevLGFG3 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQkevLGFG3 .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQkevLGFG3 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQkevLGFG3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQkevLGFG3 .panel-title {
  color: #000000;
}
.cid-uQkevLGFG3 .panel-text {
  color: #000000;
}
.cid-uQkevLGFG3 .panel-title-edit {
  color: #59307c;
}
.cid-uQkevMGXqV {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uQkevMGXqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQkevMGXqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQkevMGXqV .container {
    padding: 0 16px;
  }
}
.cid-uQkevMGXqV .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQkevMGXqV .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQkevMGXqV .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uQkevMGXqV .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uQkevMGXqV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uQkevMGXqV .mbr-text {
  color: #ffffff;
}
.cid-uQkevMGXqV .mbr-text,
.cid-uQkevMGXqV .mbr-section-btn {
  text-align: center;
  color: #813fb8;
}
.cid-uQkevMGXqV .mbr-section-title,
.cid-uQkevMGXqV .title-wrap {
  color: #813fb8;
}
.cid-uQkevMZ6i7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uQkevMZ6i7 .container-fluid {
  padding: 0 3rem;
}
.cid-uQkevMZ6i7 .media-container-column {
  padding: 0 2rem;
}
.cid-uQkevMZ6i7 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQkevMZ6i7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQkevNljnH.popup-builder {
  background-color: #ffffff;
}
.cid-uQkevNljnH.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkevNljnH.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkevNljnH .modal-content,
.cid-uQkevNljnH .modal-dialog {
  height: auto;
}
.cid-uQkevNljnH .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkevNljnH .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkevNljnH .form-wrapper .mbr-form .form-group,
  .cid-uQkevNljnH .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkevNljnH .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkevNljnH .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-uQkevNljnH .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uQkevNljnH .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkevNljnH .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkevNljnH .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkevNljnH .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkevNljnH .modal-open {
  overflow: hidden;
}
.cid-uQkevNljnH .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkevNljnH .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkevNljnH .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkevNljnH .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-uQkevNljnH .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkevNljnH .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkevNljnH .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkevNljnH .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkevNljnH .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkevNljnH .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkevNljnH .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkevNljnH .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkevNljnH .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-uQkevNljnH .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevNljnH .modal-header {
    padding: 1rem;
  }
}
.cid-uQkevNljnH .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkevNljnH .modal-header .close svg {
  fill: #260641;
}
.cid-uQkevNljnH .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkevNljnH .modal-header .close:focus {
  outline: none;
}
.cid-uQkevNljnH .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQkevNljnH .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkevNljnH .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevNljnH .modal-body {
    padding: 1rem;
  }
}
.cid-uQkevNljnH .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-uQkevNljnH .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevNljnH .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkevNljnH .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkevNljnH .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkevNljnH .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkevNljnH .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkevNljnH .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkevNljnH .modal-lg,
  .cid-uQkevNljnH .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkevNljnH .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkevNljnH .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkevNljnH .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-uQkevNljnH .form-group {
  margin-bottom: 1rem;
}
.cid-uQkevNljnH .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkevNljnH .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkevNljnH .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-uQkevNljnH .mbr-section-btn {
  margin: 0;
}
.cid-uQkevNljnH .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkevNOZjN.popup-builder {
  background-color: #ffffff;
}
.cid-uQkevNOZjN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkevNOZjN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkevNOZjN .modal-content,
.cid-uQkevNOZjN .modal-dialog {
  height: auto;
}
.cid-uQkevNOZjN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkevNOZjN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkevNOZjN .form-wrapper .mbr-form .form-group,
  .cid-uQkevNOZjN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkevNOZjN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkevNOZjN .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-uQkevNOZjN .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uQkevNOZjN .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkevNOZjN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkevNOZjN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkevNOZjN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkevNOZjN .modal-open {
  overflow: hidden;
}
.cid-uQkevNOZjN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkevNOZjN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkevNOZjN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkevNOZjN .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-uQkevNOZjN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkevNOZjN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkevNOZjN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkevNOZjN .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkevNOZjN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkevNOZjN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkevNOZjN .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkevNOZjN .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkevNOZjN .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-uQkevNOZjN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevNOZjN .modal-header {
    padding: 1rem;
  }
}
.cid-uQkevNOZjN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkevNOZjN .modal-header .close svg {
  fill: #5849aa;
}
.cid-uQkevNOZjN .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkevNOZjN .modal-header .close:focus {
  outline: none;
}
.cid-uQkevNOZjN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uQkevNOZjN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkevNOZjN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevNOZjN .modal-body {
    padding: 1rem;
  }
}
.cid-uQkevNOZjN .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-uQkevNOZjN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevNOZjN .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkevNOZjN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkevNOZjN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkevNOZjN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkevNOZjN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkevNOZjN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkevNOZjN .modal-lg,
  .cid-uQkevNOZjN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkevNOZjN .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkevNOZjN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkevNOZjN .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-uQkevNOZjN .form-group {
  margin-bottom: 1rem;
}
.cid-uQkevNOZjN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkevNOZjN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkevNOZjN .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-uQkevNOZjN .mbr-section-btn {
  margin: 0;
}
.cid-uQkevNOZjN .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkevOg8nb.popup-builder {
  background-color: #ffffff;
}
.cid-uQkevOg8nb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkevOg8nb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkevOg8nb .modal-content,
.cid-uQkevOg8nb .modal-dialog {
  height: auto;
}
.cid-uQkevOg8nb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkevOg8nb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkevOg8nb .form-wrapper .mbr-form .form-group,
  .cid-uQkevOg8nb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkevOg8nb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkevOg8nb .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-uQkevOg8nb .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uQkevOg8nb .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkevOg8nb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkevOg8nb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkevOg8nb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkevOg8nb .modal-open {
  overflow: hidden;
}
.cid-uQkevOg8nb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkevOg8nb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkevOg8nb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkevOg8nb .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-uQkevOg8nb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkevOg8nb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkevOg8nb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkevOg8nb .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkevOg8nb .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkevOg8nb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkevOg8nb .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkevOg8nb .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkevOg8nb .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-uQkevOg8nb .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevOg8nb .modal-header {
    padding: 1rem;
  }
}
.cid-uQkevOg8nb .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkevOg8nb .modal-header .close svg {
  fill: #611750;
}
.cid-uQkevOg8nb .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkevOg8nb .modal-header .close:focus {
  outline: none;
}
.cid-uQkevOg8nb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQkevOg8nb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkevOg8nb .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevOg8nb .modal-body {
    padding: 1rem;
  }
}
.cid-uQkevOg8nb .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-uQkevOg8nb .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevOg8nb .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkevOg8nb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkevOg8nb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkevOg8nb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkevOg8nb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkevOg8nb .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkevOg8nb .modal-lg,
  .cid-uQkevOg8nb .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkevOg8nb .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkevOg8nb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkevOg8nb .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-uQkevOg8nb .form-group {
  margin-bottom: 1rem;
}
.cid-uQkevOg8nb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkevOg8nb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkevOg8nb .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-uQkevOg8nb .mbr-section-btn {
  margin: 0;
}
.cid-uQkevOg8nb .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkevOLol2.popup-builder {
  background-color: #ffffff;
}
.cid-uQkevOLol2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkevOLol2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkevOLol2 .modal-content,
.cid-uQkevOLol2 .modal-dialog {
  height: auto;
}
.cid-uQkevOLol2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkevOLol2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkevOLol2 .form-wrapper .mbr-form .form-group,
  .cid-uQkevOLol2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkevOLol2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkevOLol2 .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-uQkevOLol2 .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uQkevOLol2 .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkevOLol2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkevOLol2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkevOLol2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkevOLol2 .modal-open {
  overflow: hidden;
}
.cid-uQkevOLol2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkevOLol2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkevOLol2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkevOLol2 .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-uQkevOLol2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkevOLol2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkevOLol2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkevOLol2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkevOLol2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkevOLol2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkevOLol2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkevOLol2 .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkevOLol2 .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-uQkevOLol2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevOLol2 .modal-header {
    padding: 1rem;
  }
}
.cid-uQkevOLol2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkevOLol2 .modal-header .close svg {
  fill: #59307c;
}
.cid-uQkevOLol2 .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkevOLol2 .modal-header .close:focus {
  outline: none;
}
.cid-uQkevOLol2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uQkevOLol2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkevOLol2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevOLol2 .modal-body {
    padding: 1rem;
  }
}
.cid-uQkevOLol2 .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-uQkevOLol2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevOLol2 .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkevOLol2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkevOLol2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkevOLol2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkevOLol2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkevOLol2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkevOLol2 .modal-lg,
  .cid-uQkevOLol2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkevOLol2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkevOLol2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkevOLol2 .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-uQkevOLol2 .form-group {
  margin-bottom: 1rem;
}
.cid-uQkevOLol2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkevOLol2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkevOLol2 .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-uQkevOLol2 .mbr-section-btn {
  margin: 0;
}
.cid-uQkevOLol2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkevPki1Q.popup-builder {
  background-color: #ffffff;
}
.cid-uQkevPki1Q.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkevPki1Q.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkevPki1Q .modal-content,
.cid-uQkevPki1Q .modal-dialog {
  height: auto;
}
.cid-uQkevPki1Q .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkevPki1Q .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkevPki1Q .form-wrapper .mbr-form .form-group,
  .cid-uQkevPki1Q .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkevPki1Q .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkevPki1Q .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-uQkevPki1Q .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uQkevPki1Q .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkevPki1Q .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkevPki1Q .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkevPki1Q .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkevPki1Q .modal-open {
  overflow: hidden;
}
.cid-uQkevPki1Q .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkevPki1Q .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkevPki1Q .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkevPki1Q .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-uQkevPki1Q .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkevPki1Q .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkevPki1Q .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkevPki1Q .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkevPki1Q .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkevPki1Q .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkevPki1Q .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkevPki1Q .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkevPki1Q .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-uQkevPki1Q .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevPki1Q .modal-header {
    padding: 1rem;
  }
}
.cid-uQkevPki1Q .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkevPki1Q .modal-header .close svg {
  fill: #ffffff;
}
.cid-uQkevPki1Q .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkevPki1Q .modal-header .close:focus {
  outline: none;
}
.cid-uQkevPki1Q .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uQkevPki1Q .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkevPki1Q .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevPki1Q .modal-body {
    padding: 1rem;
  }
}
.cid-uQkevPki1Q .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-uQkevPki1Q .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevPki1Q .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkevPki1Q .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkevPki1Q .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkevPki1Q .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkevPki1Q .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkevPki1Q .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkevPki1Q .modal-lg,
  .cid-uQkevPki1Q .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkevPki1Q .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkevPki1Q .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkevPki1Q .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-uQkevPki1Q .form-group {
  margin-bottom: 1rem;
}
.cid-uQkevPki1Q .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkevPki1Q .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkevPki1Q .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-uQkevPki1Q .mbr-section-btn {
  margin: 0;
}
.cid-uQkevPki1Q .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkevPQkPZ.popup-builder {
  background-color: #ffffff;
}
.cid-uQkevPQkPZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkevPQkPZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkevPQkPZ .modal-content,
.cid-uQkevPQkPZ .modal-dialog {
  height: auto;
}
.cid-uQkevPQkPZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkevPQkPZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkevPQkPZ .form-wrapper .mbr-form .form-group,
  .cid-uQkevPQkPZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkevPQkPZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkevPQkPZ .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-uQkevPQkPZ .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uQkevPQkPZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkevPQkPZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkevPQkPZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkevPQkPZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkevPQkPZ .modal-open {
  overflow: hidden;
}
.cid-uQkevPQkPZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkevPQkPZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkevPQkPZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkevPQkPZ .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-uQkevPQkPZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkevPQkPZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkevPQkPZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkevPQkPZ .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkevPQkPZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkevPQkPZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkevPQkPZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkevPQkPZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkevPQkPZ .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-uQkevPQkPZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevPQkPZ .modal-header {
    padding: 1rem;
  }
}
.cid-uQkevPQkPZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkevPQkPZ .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uQkevPQkPZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkevPQkPZ .modal-header .close:focus {
  outline: none;
}
.cid-uQkevPQkPZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uQkevPQkPZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkevPQkPZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevPQkPZ .modal-body {
    padding: 1rem;
  }
}
.cid-uQkevPQkPZ .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-uQkevPQkPZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevPQkPZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkevPQkPZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkevPQkPZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkevPQkPZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkevPQkPZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkevPQkPZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkevPQkPZ .modal-lg,
  .cid-uQkevPQkPZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkevPQkPZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkevPQkPZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkevPQkPZ .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-uQkevPQkPZ .form-group {
  margin-bottom: 1rem;
}
.cid-uQkevPQkPZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkevPQkPZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkevPQkPZ .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-uQkevPQkPZ .mbr-section-btn {
  margin: 0;
}
.cid-uQkevPQkPZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkevQlzJY.popup-builder {
  background-color: #ffffff;
}
.cid-uQkevQlzJY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkevQlzJY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkevQlzJY .modal-content,
.cid-uQkevQlzJY .modal-dialog {
  height: auto;
}
.cid-uQkevQlzJY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkevQlzJY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkevQlzJY .form-wrapper .mbr-form .form-group,
  .cid-uQkevQlzJY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkevQlzJY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkevQlzJY .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-uQkevQlzJY .mbr-text {
  text-align: center;
}
.cid-uQkevQlzJY .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkevQlzJY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkevQlzJY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkevQlzJY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkevQlzJY .modal-open {
  overflow: hidden;
}
.cid-uQkevQlzJY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkevQlzJY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkevQlzJY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkevQlzJY .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-uQkevQlzJY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkevQlzJY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkevQlzJY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkevQlzJY .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkevQlzJY .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkevQlzJY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkevQlzJY .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkevQlzJY .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkevQlzJY .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-uQkevQlzJY .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevQlzJY .modal-header {
    padding: 1rem;
  }
}
.cid-uQkevQlzJY .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkevQlzJY .modal-header .close svg {
  fill: #353535;
}
.cid-uQkevQlzJY .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkevQlzJY .modal-header .close:focus {
  outline: none;
}
.cid-uQkevQlzJY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQkevQlzJY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkevQlzJY .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevQlzJY .modal-body {
    padding: 1rem;
  }
}
.cid-uQkevQlzJY .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-uQkevQlzJY .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkevQlzJY .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkevQlzJY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkevQlzJY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkevQlzJY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkevQlzJY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkevQlzJY .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkevQlzJY .modal-lg,
  .cid-uQkevQlzJY .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkevQlzJY .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkevQlzJY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkevQlzJY .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-uQkevQlzJY .form-group {
  margin-bottom: 1rem;
}
.cid-uQkevQlzJY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkevQlzJY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkevQlzJY .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-uQkevQlzJY .mbr-section-btn {
  margin: 0;
}
.cid-uQkevQlzJY .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkDJxopN3 .dropdown-menu {
  padding: 12px 0;
}
.cid-uQkDJxopN3 .dropdown-item:hover,
.cid-uQkDJxopN3 .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uQkDJxopN3 .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uQkDJxopN3 .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uQkDJxopN3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQkDJxopN3 .nav-link {
  position: relative;
}
.cid-uQkDJxopN3 .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uQkDJxopN3 .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQkDJxopN3 .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uQkDJxopN3 .dropdown-menu,
.cid-uQkDJxopN3 .navbar.opened {
  background: #1f0931 !important;
}
.cid-uQkDJxopN3 .nav-item:focus,
.cid-uQkDJxopN3 .nav-link:focus {
  outline: none;
}
.cid-uQkDJxopN3 .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uQkDJxopN3 .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uQkDJxopN3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQkDJxopN3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQkDJxopN3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQkDJxopN3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQkDJxopN3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQkDJxopN3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQkDJxopN3 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uQkDJxopN3 .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uQkDJxopN3 .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uQkDJxopN3 .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uQkDJxopN3 .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uQkDJxopN3 .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uQkDJxopN3 .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uQkDJxopN3 .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uQkDJxopN3 .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uQkDJxopN3 .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uQkDJxopN3 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uQkDJxopN3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQkDJxopN3 .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uQkDJxopN3 .navbar.collapsed.opened {
  position: fixed;
}
.cid-uQkDJxopN3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uQkDJxopN3 .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQkDJxopN3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uQkDJxopN3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQkDJxopN3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQkDJxopN3 .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: 55%;
}
.cid-uQkDJxopN3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQkDJxopN3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQkDJxopN3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQkDJxopN3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQkDJxopN3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQkDJxopN3 .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uQkDJxopN3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQkDJxopN3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQkDJxopN3 .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: 41%;
  }
  .cid-uQkDJxopN3 .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uQkDJxopN3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQkDJxopN3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQkDJxopN3 .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQkDJxopN3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uQkDJxopN3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uQkDJxopN3 .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uQkDJxopN3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQkDJxopN3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQkDJxopN3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQkDJxopN3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQkDJxopN3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQkDJxopN3 .dropdown-item.active,
.cid-uQkDJxopN3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uQkDJxopN3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQkDJxopN3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQkDJxopN3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQkDJxopN3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uQkDJxopN3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQkDJxopN3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQkDJxopN3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQkDJxopN3 .navbar-buttons {
  text-align: center;
}
.cid-uQkDJxopN3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQkDJxopN3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uQkDJxopN3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQkDJxopN3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQkDJxopN3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQkDJxopN3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQkDJxopN3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQkDJxopN3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQkDJxopN3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQkDJxopN3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQkDJxopN3 .navbar-dropdown {
  position: fixed;
}
.cid-uQkDJxopN3 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQkDJxopN3 .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uQkDJxopN3 .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uQkDJxopN3 .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQkDJxopN3 .navbar {
    height: 77px;
  }
  .cid-uQkDJxopN3 .navbar.opened {
    height: auto;
  }
  .cid-uQkDJxopN3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQkDJyje3E {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uQkDJyje3E .container-fluid {
  padding: 0 3rem;
}
.cid-uQkDJyje3E .media-container-column {
  padding: 0 2rem;
}
.cid-uQkDJyje3E .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQkDJyje3E .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQkDJyI8yx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQkDJyI8yx .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uQkDJyI8yx img {
    width: 90%;
  }
}
.cid-uQkDJyI8yx .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uQkDJyI8yx .items {
  margin-bottom: 0;
}
.cid-uQkDJyI8yx .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uQkDJyI8yx .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uQkDJyI8yx .soc-item:hover span {
  color: #38346b !important;
}
.cid-uQkDJyI8yx .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uQkDJyI8yx .social-list {
    justify-content: center;
  }
}
.cid-uQkDJyI8yx .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uQkDJzfivC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-uQkDJzfivC .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uQkDJzfivC .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uQkDJzfivC .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uQkDJzfivC .main-title.display-2 {
  line-height: 1.375;
}
.cid-uQkDJzfivC .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uQkDJzfivC .mbr-text {
  color: #606060;
}
.cid-uQkDJzfivC .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uQkDJzfivC .mbr-section-btn {
  margin-top: 24px;
}
.cid-uQkDJzfivC .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uQkDJzfivC .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uQkDJzfivC .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uQkDJzfivC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQkDJzfivC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQkDJzfivC .mbr-text,
.cid-uQkDJzfivC .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uQkDJzfivC .main-title,
.cid-uQkDJzfivC .mbr-section-btn {
  text-align: center;
}
.cid-uQkDJzfivC .mbr-section-subtitle,
.cid-uQkDJzfivC .mbr-section-btn {
  color: #624977;
  text-align: center;
}
.cid-uQkDJzzNdu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQkDJzzNdu .container-fluid {
  padding: 0 3rem;
}
.cid-uQkDJzzNdu .media-container-column {
  padding: 0 2rem;
}
.cid-uQkDJzzNdu .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uQkDJzzNdu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQkDJzS5dr {
  padding-top: 0px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/youtube-banner-2000x1125.jpg");
}
.cid-uQkDJzS5dr .container-fluid {
  padding: 0 3rem;
}
.cid-uQkDJzS5dr .media-container-column {
  padding: 0 2rem;
}
.cid-uQkDJzS5dr .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #102f62;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uQkDJzS5dr .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQkDJzS5dr .mbr-section-subtitle {
  color: #f3f3f3;
  text-align: left;
}
.cid-uQkDJA9OeH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQkDJA9OeH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQkDJA9OeH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQkDJA9OeH .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQkDJA9OeH .container {
    padding: 0 16px;
  }
}
.cid-uQkDJA9OeH .row {
  justify-content: center;
}
.cid-uQkDJA9OeH .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQkDJA9OeH .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQkDJA9OeH .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQkDJA9OeH .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQkDJA9OeH .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQkDJA9OeH .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQkDJA9OeH .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQkDJA9OeH .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQkDJA9OeH .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQkDJA9OeH .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQkDJA9OeH .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQkDJA9OeH .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQkDJA9OeH .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQkDJA9OeH .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQkDJA9OeH .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQkDJA9OeH .panel-title {
  color: #000000;
}
.cid-uQkDJA9OeH .panel-text {
  color: #000000;
}
.cid-uQkDJA9OeH .panel-title-edit {
  color: #59307c;
}
.cid-uQkDJB48Ik {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uQkDJB48Ik .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQkDJB48Ik .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQkDJB48Ik .container {
    padding: 0 16px;
  }
}
.cid-uQkDJB48Ik .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQkDJB48Ik .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQkDJB48Ik .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uQkDJB48Ik .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uQkDJB48Ik .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uQkDJB48Ik .mbr-text {
  color: #ffffff;
}
.cid-uQkDJB48Ik .mbr-text,
.cid-uQkDJB48Ik .mbr-section-btn {
  text-align: center;
  color: #813fb8;
}
.cid-uQkDJB48Ik .mbr-section-title,
.cid-uQkDJB48Ik .title-wrap {
  color: #813fb8;
}
.cid-uQkDJBmvc8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uQkDJBmvc8 .container-fluid {
  padding: 0 3rem;
}
.cid-uQkDJBmvc8 .media-container-column {
  padding: 0 2rem;
}
.cid-uQkDJBmvc8 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQkDJBmvc8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQkDJBHtx6.popup-builder {
  background-color: #ffffff;
}
.cid-uQkDJBHtx6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkDJBHtx6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkDJBHtx6 .modal-content,
.cid-uQkDJBHtx6 .modal-dialog {
  height: auto;
}
.cid-uQkDJBHtx6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkDJBHtx6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkDJBHtx6 .form-wrapper .mbr-form .form-group,
  .cid-uQkDJBHtx6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkDJBHtx6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkDJBHtx6 .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-uQkDJBHtx6 .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uQkDJBHtx6 .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkDJBHtx6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkDJBHtx6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkDJBHtx6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkDJBHtx6 .modal-open {
  overflow: hidden;
}
.cid-uQkDJBHtx6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkDJBHtx6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkDJBHtx6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkDJBHtx6 .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-uQkDJBHtx6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkDJBHtx6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkDJBHtx6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkDJBHtx6 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkDJBHtx6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkDJBHtx6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkDJBHtx6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkDJBHtx6 .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkDJBHtx6 .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-uQkDJBHtx6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJBHtx6 .modal-header {
    padding: 1rem;
  }
}
.cid-uQkDJBHtx6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkDJBHtx6 .modal-header .close svg {
  fill: #260641;
}
.cid-uQkDJBHtx6 .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkDJBHtx6 .modal-header .close:focus {
  outline: none;
}
.cid-uQkDJBHtx6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQkDJBHtx6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkDJBHtx6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJBHtx6 .modal-body {
    padding: 1rem;
  }
}
.cid-uQkDJBHtx6 .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-uQkDJBHtx6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJBHtx6 .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkDJBHtx6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkDJBHtx6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkDJBHtx6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkDJBHtx6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkDJBHtx6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkDJBHtx6 .modal-lg,
  .cid-uQkDJBHtx6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkDJBHtx6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkDJBHtx6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkDJBHtx6 .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-uQkDJBHtx6 .form-group {
  margin-bottom: 1rem;
}
.cid-uQkDJBHtx6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkDJBHtx6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkDJBHtx6 .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-uQkDJBHtx6 .mbr-section-btn {
  margin: 0;
}
.cid-uQkDJBHtx6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkDJCaP2P.popup-builder {
  background-color: #ffffff;
}
.cid-uQkDJCaP2P.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkDJCaP2P.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkDJCaP2P .modal-content,
.cid-uQkDJCaP2P .modal-dialog {
  height: auto;
}
.cid-uQkDJCaP2P .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkDJCaP2P .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkDJCaP2P .form-wrapper .mbr-form .form-group,
  .cid-uQkDJCaP2P .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkDJCaP2P .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkDJCaP2P .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-uQkDJCaP2P .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uQkDJCaP2P .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkDJCaP2P .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkDJCaP2P .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkDJCaP2P .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkDJCaP2P .modal-open {
  overflow: hidden;
}
.cid-uQkDJCaP2P .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkDJCaP2P .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkDJCaP2P .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkDJCaP2P .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-uQkDJCaP2P .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkDJCaP2P .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkDJCaP2P .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkDJCaP2P .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkDJCaP2P .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkDJCaP2P .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkDJCaP2P .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkDJCaP2P .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkDJCaP2P .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-uQkDJCaP2P .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJCaP2P .modal-header {
    padding: 1rem;
  }
}
.cid-uQkDJCaP2P .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkDJCaP2P .modal-header .close svg {
  fill: #5849aa;
}
.cid-uQkDJCaP2P .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkDJCaP2P .modal-header .close:focus {
  outline: none;
}
.cid-uQkDJCaP2P .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uQkDJCaP2P .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkDJCaP2P .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJCaP2P .modal-body {
    padding: 1rem;
  }
}
.cid-uQkDJCaP2P .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-uQkDJCaP2P .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJCaP2P .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkDJCaP2P .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkDJCaP2P .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkDJCaP2P .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkDJCaP2P .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkDJCaP2P .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkDJCaP2P .modal-lg,
  .cid-uQkDJCaP2P .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkDJCaP2P .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkDJCaP2P .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkDJCaP2P .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-uQkDJCaP2P .form-group {
  margin-bottom: 1rem;
}
.cid-uQkDJCaP2P .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkDJCaP2P .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkDJCaP2P .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-uQkDJCaP2P .mbr-section-btn {
  margin: 0;
}
.cid-uQkDJCaP2P .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkDJCECue.popup-builder {
  background-color: #ffffff;
}
.cid-uQkDJCECue.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkDJCECue.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkDJCECue .modal-content,
.cid-uQkDJCECue .modal-dialog {
  height: auto;
}
.cid-uQkDJCECue .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkDJCECue .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkDJCECue .form-wrapper .mbr-form .form-group,
  .cid-uQkDJCECue .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkDJCECue .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkDJCECue .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-uQkDJCECue .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uQkDJCECue .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkDJCECue .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkDJCECue .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkDJCECue .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkDJCECue .modal-open {
  overflow: hidden;
}
.cid-uQkDJCECue .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkDJCECue .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkDJCECue .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkDJCECue .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-uQkDJCECue .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkDJCECue .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkDJCECue .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkDJCECue .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkDJCECue .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkDJCECue .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkDJCECue .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkDJCECue .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkDJCECue .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-uQkDJCECue .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJCECue .modal-header {
    padding: 1rem;
  }
}
.cid-uQkDJCECue .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkDJCECue .modal-header .close svg {
  fill: #611750;
}
.cid-uQkDJCECue .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkDJCECue .modal-header .close:focus {
  outline: none;
}
.cid-uQkDJCECue .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQkDJCECue .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkDJCECue .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJCECue .modal-body {
    padding: 1rem;
  }
}
.cid-uQkDJCECue .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-uQkDJCECue .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJCECue .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkDJCECue .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkDJCECue .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkDJCECue .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkDJCECue .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkDJCECue .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkDJCECue .modal-lg,
  .cid-uQkDJCECue .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkDJCECue .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkDJCECue .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkDJCECue .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-uQkDJCECue .form-group {
  margin-bottom: 1rem;
}
.cid-uQkDJCECue .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkDJCECue .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkDJCECue .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-uQkDJCECue .mbr-section-btn {
  margin: 0;
}
.cid-uQkDJCECue .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkDJD8A26.popup-builder {
  background-color: #ffffff;
}
.cid-uQkDJD8A26.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkDJD8A26.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkDJD8A26 .modal-content,
.cid-uQkDJD8A26 .modal-dialog {
  height: auto;
}
.cid-uQkDJD8A26 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkDJD8A26 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkDJD8A26 .form-wrapper .mbr-form .form-group,
  .cid-uQkDJD8A26 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkDJD8A26 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkDJD8A26 .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-uQkDJD8A26 .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uQkDJD8A26 .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkDJD8A26 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkDJD8A26 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkDJD8A26 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkDJD8A26 .modal-open {
  overflow: hidden;
}
.cid-uQkDJD8A26 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkDJD8A26 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkDJD8A26 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkDJD8A26 .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-uQkDJD8A26 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkDJD8A26 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkDJD8A26 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkDJD8A26 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkDJD8A26 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkDJD8A26 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkDJD8A26 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkDJD8A26 .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkDJD8A26 .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-uQkDJD8A26 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJD8A26 .modal-header {
    padding: 1rem;
  }
}
.cid-uQkDJD8A26 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkDJD8A26 .modal-header .close svg {
  fill: #59307c;
}
.cid-uQkDJD8A26 .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkDJD8A26 .modal-header .close:focus {
  outline: none;
}
.cid-uQkDJD8A26 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uQkDJD8A26 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkDJD8A26 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJD8A26 .modal-body {
    padding: 1rem;
  }
}
.cid-uQkDJD8A26 .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-uQkDJD8A26 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJD8A26 .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkDJD8A26 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkDJD8A26 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkDJD8A26 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkDJD8A26 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkDJD8A26 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkDJD8A26 .modal-lg,
  .cid-uQkDJD8A26 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkDJD8A26 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkDJD8A26 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkDJD8A26 .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-uQkDJD8A26 .form-group {
  margin-bottom: 1rem;
}
.cid-uQkDJD8A26 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkDJD8A26 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkDJD8A26 .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-uQkDJD8A26 .mbr-section-btn {
  margin: 0;
}
.cid-uQkDJD8A26 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkDJDK17F.popup-builder {
  background-color: #ffffff;
}
.cid-uQkDJDK17F.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkDJDK17F.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkDJDK17F .modal-content,
.cid-uQkDJDK17F .modal-dialog {
  height: auto;
}
.cid-uQkDJDK17F .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkDJDK17F .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkDJDK17F .form-wrapper .mbr-form .form-group,
  .cid-uQkDJDK17F .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkDJDK17F .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkDJDK17F .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-uQkDJDK17F .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uQkDJDK17F .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkDJDK17F .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkDJDK17F .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkDJDK17F .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkDJDK17F .modal-open {
  overflow: hidden;
}
.cid-uQkDJDK17F .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkDJDK17F .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkDJDK17F .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkDJDK17F .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-uQkDJDK17F .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkDJDK17F .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkDJDK17F .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkDJDK17F .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkDJDK17F .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkDJDK17F .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkDJDK17F .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkDJDK17F .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkDJDK17F .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-uQkDJDK17F .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJDK17F .modal-header {
    padding: 1rem;
  }
}
.cid-uQkDJDK17F .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkDJDK17F .modal-header .close svg {
  fill: #ffffff;
}
.cid-uQkDJDK17F .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkDJDK17F .modal-header .close:focus {
  outline: none;
}
.cid-uQkDJDK17F .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uQkDJDK17F .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkDJDK17F .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJDK17F .modal-body {
    padding: 1rem;
  }
}
.cid-uQkDJDK17F .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-uQkDJDK17F .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJDK17F .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkDJDK17F .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkDJDK17F .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkDJDK17F .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkDJDK17F .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkDJDK17F .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkDJDK17F .modal-lg,
  .cid-uQkDJDK17F .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkDJDK17F .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkDJDK17F .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkDJDK17F .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-uQkDJDK17F .form-group {
  margin-bottom: 1rem;
}
.cid-uQkDJDK17F .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkDJDK17F .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkDJDK17F .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-uQkDJDK17F .mbr-section-btn {
  margin: 0;
}
.cid-uQkDJDK17F .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkDJEf81B.popup-builder {
  background-color: #ffffff;
}
.cid-uQkDJEf81B.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkDJEf81B.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkDJEf81B .modal-content,
.cid-uQkDJEf81B .modal-dialog {
  height: auto;
}
.cid-uQkDJEf81B .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkDJEf81B .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkDJEf81B .form-wrapper .mbr-form .form-group,
  .cid-uQkDJEf81B .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkDJEf81B .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkDJEf81B .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-uQkDJEf81B .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uQkDJEf81B .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkDJEf81B .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkDJEf81B .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkDJEf81B .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkDJEf81B .modal-open {
  overflow: hidden;
}
.cid-uQkDJEf81B .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkDJEf81B .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkDJEf81B .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkDJEf81B .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-uQkDJEf81B .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkDJEf81B .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkDJEf81B .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkDJEf81B .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkDJEf81B .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkDJEf81B .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkDJEf81B .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkDJEf81B .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkDJEf81B .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-uQkDJEf81B .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJEf81B .modal-header {
    padding: 1rem;
  }
}
.cid-uQkDJEf81B .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkDJEf81B .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uQkDJEf81B .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkDJEf81B .modal-header .close:focus {
  outline: none;
}
.cid-uQkDJEf81B .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uQkDJEf81B .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkDJEf81B .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJEf81B .modal-body {
    padding: 1rem;
  }
}
.cid-uQkDJEf81B .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-uQkDJEf81B .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJEf81B .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkDJEf81B .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkDJEf81B .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkDJEf81B .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkDJEf81B .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkDJEf81B .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkDJEf81B .modal-lg,
  .cid-uQkDJEf81B .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkDJEf81B .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkDJEf81B .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkDJEf81B .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-uQkDJEf81B .form-group {
  margin-bottom: 1rem;
}
.cid-uQkDJEf81B .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkDJEf81B .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkDJEf81B .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-uQkDJEf81B .mbr-section-btn {
  margin: 0;
}
.cid-uQkDJEf81B .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQkDJEKVd3.popup-builder {
  background-color: #ffffff;
}
.cid-uQkDJEKVd3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQkDJEKVd3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQkDJEKVd3 .modal-content,
.cid-uQkDJEKVd3 .modal-dialog {
  height: auto;
}
.cid-uQkDJEKVd3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQkDJEKVd3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQkDJEKVd3 .form-wrapper .mbr-form .form-group,
  .cid-uQkDJEKVd3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQkDJEKVd3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQkDJEKVd3 .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-uQkDJEKVd3 .mbr-text {
  text-align: center;
}
.cid-uQkDJEKVd3 .pt-0 {
  padding-top: 0 !important;
}
.cid-uQkDJEKVd3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQkDJEKVd3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQkDJEKVd3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQkDJEKVd3 .modal-open {
  overflow: hidden;
}
.cid-uQkDJEKVd3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQkDJEKVd3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQkDJEKVd3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQkDJEKVd3 .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-uQkDJEKVd3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQkDJEKVd3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQkDJEKVd3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQkDJEKVd3 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQkDJEKVd3 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQkDJEKVd3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQkDJEKVd3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQkDJEKVd3 .modal-backdrop.show {
  opacity: .5;
}
.cid-uQkDJEKVd3 .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-uQkDJEKVd3 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJEKVd3 .modal-header {
    padding: 1rem;
  }
}
.cid-uQkDJEKVd3 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQkDJEKVd3 .modal-header .close svg {
  fill: #353535;
}
.cid-uQkDJEKVd3 .modal-header .close:hover {
  opacity: 1;
}
.cid-uQkDJEKVd3 .modal-header .close:focus {
  outline: none;
}
.cid-uQkDJEKVd3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQkDJEKVd3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQkDJEKVd3 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJEKVd3 .modal-body {
    padding: 1rem;
  }
}
.cid-uQkDJEKVd3 .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-uQkDJEKVd3 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQkDJEKVd3 .modal-footer {
    padding: 1rem;
  }
}
.cid-uQkDJEKVd3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQkDJEKVd3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQkDJEKVd3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQkDJEKVd3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQkDJEKVd3 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQkDJEKVd3 .modal-lg,
  .cid-uQkDJEKVd3 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQkDJEKVd3 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQkDJEKVd3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQkDJEKVd3 .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-uQkDJEKVd3 .form-group {
  margin-bottom: 1rem;
}
.cid-uQkDJEKVd3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQkDJEKVd3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQkDJEKVd3 .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-uQkDJEKVd3 .mbr-section-btn {
  margin: 0;
}
.cid-uQkDJEKVd3 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQoKBptP1x .dropdown-menu {
  padding: 12px 0;
}
.cid-uQoKBptP1x .dropdown-item:hover,
.cid-uQoKBptP1x .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uQoKBptP1x .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uQoKBptP1x .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uQoKBptP1x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQoKBptP1x .nav-link {
  position: relative;
}
.cid-uQoKBptP1x .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uQoKBptP1x .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQoKBptP1x .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uQoKBptP1x .dropdown-menu,
.cid-uQoKBptP1x .navbar.opened {
  background: #1f0931 !important;
}
.cid-uQoKBptP1x .nav-item:focus,
.cid-uQoKBptP1x .nav-link:focus {
  outline: none;
}
.cid-uQoKBptP1x .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uQoKBptP1x .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uQoKBptP1x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQoKBptP1x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQoKBptP1x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQoKBptP1x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQoKBptP1x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQoKBptP1x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQoKBptP1x .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uQoKBptP1x .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uQoKBptP1x .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uQoKBptP1x .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uQoKBptP1x .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uQoKBptP1x .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uQoKBptP1x .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uQoKBptP1x .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uQoKBptP1x .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uQoKBptP1x .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uQoKBptP1x .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uQoKBptP1x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQoKBptP1x .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uQoKBptP1x .navbar.collapsed.opened {
  position: fixed;
}
.cid-uQoKBptP1x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uQoKBptP1x .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQoKBptP1x .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uQoKBptP1x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQoKBptP1x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQoKBptP1x .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: 55%;
}
.cid-uQoKBptP1x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQoKBptP1x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQoKBptP1x .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQoKBptP1x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQoKBptP1x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQoKBptP1x .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uQoKBptP1x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQoKBptP1x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQoKBptP1x .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: 41%;
  }
  .cid-uQoKBptP1x .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uQoKBptP1x .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQoKBptP1x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQoKBptP1x .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQoKBptP1x .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uQoKBptP1x .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uQoKBptP1x .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uQoKBptP1x .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQoKBptP1x .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQoKBptP1x .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQoKBptP1x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQoKBptP1x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQoKBptP1x .dropdown-item.active,
.cid-uQoKBptP1x .dropdown-item:active {
  background-color: transparent;
}
.cid-uQoKBptP1x .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQoKBptP1x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQoKBptP1x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQoKBptP1x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uQoKBptP1x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQoKBptP1x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQoKBptP1x ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQoKBptP1x .navbar-buttons {
  text-align: center;
}
.cid-uQoKBptP1x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQoKBptP1x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uQoKBptP1x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQoKBptP1x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQoKBptP1x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQoKBptP1x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQoKBptP1x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQoKBptP1x nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQoKBptP1x nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQoKBptP1x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQoKBptP1x .navbar-dropdown {
  position: fixed;
}
.cid-uQoKBptP1x a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQoKBptP1x .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uQoKBptP1x .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uQoKBptP1x .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQoKBptP1x .navbar {
    height: 77px;
  }
  .cid-uQoKBptP1x .navbar.opened {
    height: auto;
  }
  .cid-uQoKBptP1x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQoKBtK9Oj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uQoKBtK9Oj .container-fluid {
  padding: 0 3rem;
}
.cid-uQoKBtK9Oj .media-container-column {
  padding: 0 2rem;
}
.cid-uQoKBtK9Oj .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQoKBtK9Oj .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQoKBuoRWk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQoKBuoRWk .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uQoKBuoRWk img {
    width: 90%;
  }
}
.cid-uQoKBuoRWk .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uQoKBuoRWk .items {
  margin-bottom: 0;
}
.cid-uQoKBuoRWk .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uQoKBuoRWk .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uQoKBuoRWk .soc-item:hover span {
  color: #38346b !important;
}
.cid-uQoKBuoRWk .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uQoKBuoRWk .social-list {
    justify-content: center;
  }
}
.cid-uQoKBuoRWk .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uQoKBv4CSN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-uQoKBv4CSN .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uQoKBv4CSN .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uQoKBv4CSN .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uQoKBv4CSN .main-title.display-2 {
  line-height: 1.375;
}
.cid-uQoKBv4CSN .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uQoKBv4CSN .mbr-text {
  color: #606060;
}
.cid-uQoKBv4CSN .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uQoKBv4CSN .mbr-section-btn {
  margin-top: 24px;
}
.cid-uQoKBv4CSN .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uQoKBv4CSN .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uQoKBv4CSN .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uQoKBv4CSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQoKBv4CSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQoKBv4CSN .mbr-text,
.cid-uQoKBv4CSN .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uQoKBv4CSN .main-title,
.cid-uQoKBv4CSN .mbr-section-btn {
  text-align: center;
}
.cid-uQoKBv4CSN .mbr-section-subtitle,
.cid-uQoKBv4CSN .mbr-section-btn {
  color: #624977;
  text-align: center;
}
.cid-uQoKBvNC9S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQoKBvNC9S .container-fluid {
  padding: 0 3rem;
}
.cid-uQoKBvNC9S .media-container-column {
  padding: 0 2rem;
}
.cid-uQoKBvNC9S .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uQoKBvNC9S .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQoKBAbXM4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/youtube-banner-2000x1125.jpg");
}
.cid-uQoKBAbXM4 .container-fluid {
  padding: 0 3rem;
}
.cid-uQoKBAbXM4 .media-container-column {
  padding: 0 2rem;
}
.cid-uQoKBAbXM4 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #102f62;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uQoKBAbXM4 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQoKBAbXM4 .mbr-section-subtitle {
  color: #f3f3f3;
  text-align: left;
}
.cid-uQoKBADqED {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQoKBADqED .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQoKBADqED .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQoKBADqED .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQoKBADqED .container {
    padding: 0 16px;
  }
}
.cid-uQoKBADqED .row {
  justify-content: center;
}
.cid-uQoKBADqED .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQoKBADqED .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQoKBADqED .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQoKBADqED .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQoKBADqED .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQoKBADqED .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQoKBADqED .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQoKBADqED .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQoKBADqED .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQoKBADqED .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQoKBADqED .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQoKBADqED .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQoKBADqED .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQoKBADqED .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQoKBADqED .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQoKBADqED .panel-title {
  color: #000000;
}
.cid-uQoKBADqED .panel-text {
  color: #000000;
}
.cid-uQoKBADqED .panel-title-edit {
  color: #59307c;
}
.cid-uQoKBBDF6t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQoKBBDF6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQoKBBDF6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQoKBBDF6t .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQoKBBDF6t .container {
    padding: 0 16px;
  }
}
.cid-uQoKBBDF6t .row {
  justify-content: center;
}
.cid-uQoKBBDF6t .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQoKBBDF6t .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQoKBBDF6t .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQoKBBDF6t .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQoKBBDF6t .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQoKBBDF6t .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQoKBBDF6t .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQoKBBDF6t .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQoKBBDF6t .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQoKBBDF6t .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQoKBBDF6t .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQoKBBDF6t .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQoKBBDF6t .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQoKBBDF6t .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQoKBBDF6t .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQoKBBDF6t .panel-title {
  color: #000000;
}
.cid-uQoKBBDF6t .panel-text {
  color: #000000;
}
.cid-uQoKBBDF6t .panel-title-edit {
  color: #59307c;
}
.cid-uQoKBCse6L {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uQoKBCse6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQoKBCse6L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQoKBCse6L .container {
    padding: 0 16px;
  }
}
.cid-uQoKBCse6L .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQoKBCse6L .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQoKBCse6L .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uQoKBCse6L .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uQoKBCse6L .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uQoKBCse6L .mbr-text {
  color: #ffffff;
}
.cid-uQoKBCse6L .mbr-text,
.cid-uQoKBCse6L .mbr-section-btn {
  text-align: center;
  color: #813fb8;
}
.cid-uQoKBCse6L .mbr-section-title,
.cid-uQoKBCse6L .title-wrap {
  color: #813fb8;
}
.cid-uQoKBCWL5p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uQoKBCWL5p .container-fluid {
  padding: 0 3rem;
}
.cid-uQoKBCWL5p .media-container-column {
  padding: 0 2rem;
}
.cid-uQoKBCWL5p .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQoKBCWL5p .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQoKBDq3XV.popup-builder {
  background-color: #ffffff;
}
.cid-uQoKBDq3XV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQoKBDq3XV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQoKBDq3XV .modal-content,
.cid-uQoKBDq3XV .modal-dialog {
  height: auto;
}
.cid-uQoKBDq3XV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQoKBDq3XV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQoKBDq3XV .form-wrapper .mbr-form .form-group,
  .cid-uQoKBDq3XV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQoKBDq3XV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQoKBDq3XV .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-uQoKBDq3XV .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uQoKBDq3XV .pt-0 {
  padding-top: 0 !important;
}
.cid-uQoKBDq3XV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQoKBDq3XV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQoKBDq3XV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQoKBDq3XV .modal-open {
  overflow: hidden;
}
.cid-uQoKBDq3XV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQoKBDq3XV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQoKBDq3XV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQoKBDq3XV .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-uQoKBDq3XV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQoKBDq3XV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQoKBDq3XV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQoKBDq3XV .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQoKBDq3XV .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQoKBDq3XV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQoKBDq3XV .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQoKBDq3XV .modal-backdrop.show {
  opacity: .5;
}
.cid-uQoKBDq3XV .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-uQoKBDq3XV .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBDq3XV .modal-header {
    padding: 1rem;
  }
}
.cid-uQoKBDq3XV .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQoKBDq3XV .modal-header .close svg {
  fill: #260641;
}
.cid-uQoKBDq3XV .modal-header .close:hover {
  opacity: 1;
}
.cid-uQoKBDq3XV .modal-header .close:focus {
  outline: none;
}
.cid-uQoKBDq3XV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQoKBDq3XV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQoKBDq3XV .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBDq3XV .modal-body {
    padding: 1rem;
  }
}
.cid-uQoKBDq3XV .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-uQoKBDq3XV .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBDq3XV .modal-footer {
    padding: 1rem;
  }
}
.cid-uQoKBDq3XV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQoKBDq3XV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQoKBDq3XV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQoKBDq3XV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQoKBDq3XV .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQoKBDq3XV .modal-lg,
  .cid-uQoKBDq3XV .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQoKBDq3XV .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQoKBDq3XV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQoKBDq3XV .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-uQoKBDq3XV .form-group {
  margin-bottom: 1rem;
}
.cid-uQoKBDq3XV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQoKBDq3XV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQoKBDq3XV .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-uQoKBDq3XV .mbr-section-btn {
  margin: 0;
}
.cid-uQoKBDq3XV .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQoKBEfTOd.popup-builder {
  background-color: #ffffff;
}
.cid-uQoKBEfTOd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQoKBEfTOd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQoKBEfTOd .modal-content,
.cid-uQoKBEfTOd .modal-dialog {
  height: auto;
}
.cid-uQoKBEfTOd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQoKBEfTOd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQoKBEfTOd .form-wrapper .mbr-form .form-group,
  .cid-uQoKBEfTOd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQoKBEfTOd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQoKBEfTOd .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-uQoKBEfTOd .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uQoKBEfTOd .pt-0 {
  padding-top: 0 !important;
}
.cid-uQoKBEfTOd .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQoKBEfTOd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQoKBEfTOd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQoKBEfTOd .modal-open {
  overflow: hidden;
}
.cid-uQoKBEfTOd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQoKBEfTOd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQoKBEfTOd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQoKBEfTOd .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-uQoKBEfTOd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQoKBEfTOd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQoKBEfTOd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQoKBEfTOd .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQoKBEfTOd .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQoKBEfTOd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQoKBEfTOd .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQoKBEfTOd .modal-backdrop.show {
  opacity: .5;
}
.cid-uQoKBEfTOd .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-uQoKBEfTOd .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBEfTOd .modal-header {
    padding: 1rem;
  }
}
.cid-uQoKBEfTOd .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQoKBEfTOd .modal-header .close svg {
  fill: #5849aa;
}
.cid-uQoKBEfTOd .modal-header .close:hover {
  opacity: 1;
}
.cid-uQoKBEfTOd .modal-header .close:focus {
  outline: none;
}
.cid-uQoKBEfTOd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uQoKBEfTOd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQoKBEfTOd .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBEfTOd .modal-body {
    padding: 1rem;
  }
}
.cid-uQoKBEfTOd .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-uQoKBEfTOd .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBEfTOd .modal-footer {
    padding: 1rem;
  }
}
.cid-uQoKBEfTOd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQoKBEfTOd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQoKBEfTOd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQoKBEfTOd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQoKBEfTOd .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQoKBEfTOd .modal-lg,
  .cid-uQoKBEfTOd .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQoKBEfTOd .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQoKBEfTOd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQoKBEfTOd .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-uQoKBEfTOd .form-group {
  margin-bottom: 1rem;
}
.cid-uQoKBEfTOd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQoKBEfTOd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQoKBEfTOd .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-uQoKBEfTOd .mbr-section-btn {
  margin: 0;
}
.cid-uQoKBEfTOd .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQoKBESm3g.popup-builder {
  background-color: #ffffff;
}
.cid-uQoKBESm3g.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQoKBESm3g.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQoKBESm3g .modal-content,
.cid-uQoKBESm3g .modal-dialog {
  height: auto;
}
.cid-uQoKBESm3g .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQoKBESm3g .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQoKBESm3g .form-wrapper .mbr-form .form-group,
  .cid-uQoKBESm3g .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQoKBESm3g .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQoKBESm3g .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-uQoKBESm3g .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uQoKBESm3g .pt-0 {
  padding-top: 0 !important;
}
.cid-uQoKBESm3g .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQoKBESm3g .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQoKBESm3g .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQoKBESm3g .modal-open {
  overflow: hidden;
}
.cid-uQoKBESm3g .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQoKBESm3g .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQoKBESm3g .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQoKBESm3g .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-uQoKBESm3g .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQoKBESm3g .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQoKBESm3g .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQoKBESm3g .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQoKBESm3g .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQoKBESm3g .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQoKBESm3g .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQoKBESm3g .modal-backdrop.show {
  opacity: .5;
}
.cid-uQoKBESm3g .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-uQoKBESm3g .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBESm3g .modal-header {
    padding: 1rem;
  }
}
.cid-uQoKBESm3g .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQoKBESm3g .modal-header .close svg {
  fill: #611750;
}
.cid-uQoKBESm3g .modal-header .close:hover {
  opacity: 1;
}
.cid-uQoKBESm3g .modal-header .close:focus {
  outline: none;
}
.cid-uQoKBESm3g .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQoKBESm3g .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQoKBESm3g .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBESm3g .modal-body {
    padding: 1rem;
  }
}
.cid-uQoKBESm3g .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-uQoKBESm3g .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBESm3g .modal-footer {
    padding: 1rem;
  }
}
.cid-uQoKBESm3g .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQoKBESm3g .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQoKBESm3g .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQoKBESm3g .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQoKBESm3g .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQoKBESm3g .modal-lg,
  .cid-uQoKBESm3g .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQoKBESm3g .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQoKBESm3g .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQoKBESm3g .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-uQoKBESm3g .form-group {
  margin-bottom: 1rem;
}
.cid-uQoKBESm3g .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQoKBESm3g .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQoKBESm3g .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-uQoKBESm3g .mbr-section-btn {
  margin: 0;
}
.cid-uQoKBESm3g .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQoKBFyZiB.popup-builder {
  background-color: #ffffff;
}
.cid-uQoKBFyZiB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQoKBFyZiB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQoKBFyZiB .modal-content,
.cid-uQoKBFyZiB .modal-dialog {
  height: auto;
}
.cid-uQoKBFyZiB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQoKBFyZiB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQoKBFyZiB .form-wrapper .mbr-form .form-group,
  .cid-uQoKBFyZiB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQoKBFyZiB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQoKBFyZiB .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-uQoKBFyZiB .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uQoKBFyZiB .pt-0 {
  padding-top: 0 !important;
}
.cid-uQoKBFyZiB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQoKBFyZiB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQoKBFyZiB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQoKBFyZiB .modal-open {
  overflow: hidden;
}
.cid-uQoKBFyZiB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQoKBFyZiB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQoKBFyZiB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQoKBFyZiB .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-uQoKBFyZiB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQoKBFyZiB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQoKBFyZiB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQoKBFyZiB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQoKBFyZiB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQoKBFyZiB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQoKBFyZiB .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQoKBFyZiB .modal-backdrop.show {
  opacity: .5;
}
.cid-uQoKBFyZiB .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-uQoKBFyZiB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBFyZiB .modal-header {
    padding: 1rem;
  }
}
.cid-uQoKBFyZiB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQoKBFyZiB .modal-header .close svg {
  fill: #59307c;
}
.cid-uQoKBFyZiB .modal-header .close:hover {
  opacity: 1;
}
.cid-uQoKBFyZiB .modal-header .close:focus {
  outline: none;
}
.cid-uQoKBFyZiB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uQoKBFyZiB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQoKBFyZiB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBFyZiB .modal-body {
    padding: 1rem;
  }
}
.cid-uQoKBFyZiB .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-uQoKBFyZiB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBFyZiB .modal-footer {
    padding: 1rem;
  }
}
.cid-uQoKBFyZiB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQoKBFyZiB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQoKBFyZiB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQoKBFyZiB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQoKBFyZiB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQoKBFyZiB .modal-lg,
  .cid-uQoKBFyZiB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQoKBFyZiB .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQoKBFyZiB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQoKBFyZiB .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-uQoKBFyZiB .form-group {
  margin-bottom: 1rem;
}
.cid-uQoKBFyZiB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQoKBFyZiB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQoKBFyZiB .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-uQoKBFyZiB .mbr-section-btn {
  margin: 0;
}
.cid-uQoKBFyZiB .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQoKBGgw3V.popup-builder {
  background-color: #ffffff;
}
.cid-uQoKBGgw3V.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQoKBGgw3V.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQoKBGgw3V .modal-content,
.cid-uQoKBGgw3V .modal-dialog {
  height: auto;
}
.cid-uQoKBGgw3V .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQoKBGgw3V .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQoKBGgw3V .form-wrapper .mbr-form .form-group,
  .cid-uQoKBGgw3V .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQoKBGgw3V .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQoKBGgw3V .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-uQoKBGgw3V .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uQoKBGgw3V .pt-0 {
  padding-top: 0 !important;
}
.cid-uQoKBGgw3V .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQoKBGgw3V .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQoKBGgw3V .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQoKBGgw3V .modal-open {
  overflow: hidden;
}
.cid-uQoKBGgw3V .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQoKBGgw3V .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQoKBGgw3V .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQoKBGgw3V .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-uQoKBGgw3V .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQoKBGgw3V .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQoKBGgw3V .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQoKBGgw3V .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQoKBGgw3V .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQoKBGgw3V .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQoKBGgw3V .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQoKBGgw3V .modal-backdrop.show {
  opacity: .5;
}
.cid-uQoKBGgw3V .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-uQoKBGgw3V .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBGgw3V .modal-header {
    padding: 1rem;
  }
}
.cid-uQoKBGgw3V .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQoKBGgw3V .modal-header .close svg {
  fill: #ffffff;
}
.cid-uQoKBGgw3V .modal-header .close:hover {
  opacity: 1;
}
.cid-uQoKBGgw3V .modal-header .close:focus {
  outline: none;
}
.cid-uQoKBGgw3V .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uQoKBGgw3V .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQoKBGgw3V .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBGgw3V .modal-body {
    padding: 1rem;
  }
}
.cid-uQoKBGgw3V .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-uQoKBGgw3V .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBGgw3V .modal-footer {
    padding: 1rem;
  }
}
.cid-uQoKBGgw3V .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQoKBGgw3V .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQoKBGgw3V .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQoKBGgw3V .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQoKBGgw3V .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQoKBGgw3V .modal-lg,
  .cid-uQoKBGgw3V .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQoKBGgw3V .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQoKBGgw3V .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQoKBGgw3V .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-uQoKBGgw3V .form-group {
  margin-bottom: 1rem;
}
.cid-uQoKBGgw3V .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQoKBGgw3V .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQoKBGgw3V .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-uQoKBGgw3V .mbr-section-btn {
  margin: 0;
}
.cid-uQoKBGgw3V .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQoKBGWU0Q.popup-builder {
  background-color: #ffffff;
}
.cid-uQoKBGWU0Q.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQoKBGWU0Q.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQoKBGWU0Q .modal-content,
.cid-uQoKBGWU0Q .modal-dialog {
  height: auto;
}
.cid-uQoKBGWU0Q .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQoKBGWU0Q .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQoKBGWU0Q .form-wrapper .mbr-form .form-group,
  .cid-uQoKBGWU0Q .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQoKBGWU0Q .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQoKBGWU0Q .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-uQoKBGWU0Q .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uQoKBGWU0Q .pt-0 {
  padding-top: 0 !important;
}
.cid-uQoKBGWU0Q .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQoKBGWU0Q .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQoKBGWU0Q .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQoKBGWU0Q .modal-open {
  overflow: hidden;
}
.cid-uQoKBGWU0Q .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQoKBGWU0Q .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQoKBGWU0Q .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQoKBGWU0Q .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-uQoKBGWU0Q .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQoKBGWU0Q .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQoKBGWU0Q .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQoKBGWU0Q .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQoKBGWU0Q .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQoKBGWU0Q .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQoKBGWU0Q .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQoKBGWU0Q .modal-backdrop.show {
  opacity: .5;
}
.cid-uQoKBGWU0Q .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-uQoKBGWU0Q .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBGWU0Q .modal-header {
    padding: 1rem;
  }
}
.cid-uQoKBGWU0Q .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQoKBGWU0Q .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uQoKBGWU0Q .modal-header .close:hover {
  opacity: 1;
}
.cid-uQoKBGWU0Q .modal-header .close:focus {
  outline: none;
}
.cid-uQoKBGWU0Q .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uQoKBGWU0Q .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQoKBGWU0Q .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBGWU0Q .modal-body {
    padding: 1rem;
  }
}
.cid-uQoKBGWU0Q .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-uQoKBGWU0Q .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBGWU0Q .modal-footer {
    padding: 1rem;
  }
}
.cid-uQoKBGWU0Q .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQoKBGWU0Q .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQoKBGWU0Q .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQoKBGWU0Q .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQoKBGWU0Q .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQoKBGWU0Q .modal-lg,
  .cid-uQoKBGWU0Q .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQoKBGWU0Q .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQoKBGWU0Q .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQoKBGWU0Q .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-uQoKBGWU0Q .form-group {
  margin-bottom: 1rem;
}
.cid-uQoKBGWU0Q .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQoKBGWU0Q .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQoKBGWU0Q .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-uQoKBGWU0Q .mbr-section-btn {
  margin: 0;
}
.cid-uQoKBGWU0Q .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQoKBHFPN3.popup-builder {
  background-color: #ffffff;
}
.cid-uQoKBHFPN3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQoKBHFPN3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQoKBHFPN3 .modal-content,
.cid-uQoKBHFPN3 .modal-dialog {
  height: auto;
}
.cid-uQoKBHFPN3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQoKBHFPN3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQoKBHFPN3 .form-wrapper .mbr-form .form-group,
  .cid-uQoKBHFPN3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQoKBHFPN3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQoKBHFPN3 .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-uQoKBHFPN3 .mbr-text {
  text-align: center;
}
.cid-uQoKBHFPN3 .pt-0 {
  padding-top: 0 !important;
}
.cid-uQoKBHFPN3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQoKBHFPN3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQoKBHFPN3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQoKBHFPN3 .modal-open {
  overflow: hidden;
}
.cid-uQoKBHFPN3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQoKBHFPN3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQoKBHFPN3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQoKBHFPN3 .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-uQoKBHFPN3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQoKBHFPN3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQoKBHFPN3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQoKBHFPN3 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQoKBHFPN3 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQoKBHFPN3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQoKBHFPN3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQoKBHFPN3 .modal-backdrop.show {
  opacity: .5;
}
.cid-uQoKBHFPN3 .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-uQoKBHFPN3 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBHFPN3 .modal-header {
    padding: 1rem;
  }
}
.cid-uQoKBHFPN3 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQoKBHFPN3 .modal-header .close svg {
  fill: #353535;
}
.cid-uQoKBHFPN3 .modal-header .close:hover {
  opacity: 1;
}
.cid-uQoKBHFPN3 .modal-header .close:focus {
  outline: none;
}
.cid-uQoKBHFPN3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQoKBHFPN3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQoKBHFPN3 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBHFPN3 .modal-body {
    padding: 1rem;
  }
}
.cid-uQoKBHFPN3 .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-uQoKBHFPN3 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQoKBHFPN3 .modal-footer {
    padding: 1rem;
  }
}
.cid-uQoKBHFPN3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQoKBHFPN3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQoKBHFPN3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQoKBHFPN3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQoKBHFPN3 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQoKBHFPN3 .modal-lg,
  .cid-uQoKBHFPN3 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQoKBHFPN3 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQoKBHFPN3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQoKBHFPN3 .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-uQoKBHFPN3 .form-group {
  margin-bottom: 1rem;
}
.cid-uQoKBHFPN3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQoKBHFPN3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQoKBHFPN3 .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-uQoKBHFPN3 .mbr-section-btn {
  margin: 0;
}
.cid-uQoKBHFPN3 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQAPUSMaUh .dropdown-menu {
  padding: 12px 0;
}
.cid-uQAPUSMaUh .dropdown-item:hover,
.cid-uQAPUSMaUh .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uQAPUSMaUh .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uQAPUSMaUh .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uQAPUSMaUh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQAPUSMaUh .nav-link {
  position: relative;
}
.cid-uQAPUSMaUh .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uQAPUSMaUh .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQAPUSMaUh .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uQAPUSMaUh .dropdown-menu,
.cid-uQAPUSMaUh .navbar.opened {
  background: #1f0931 !important;
}
.cid-uQAPUSMaUh .nav-item:focus,
.cid-uQAPUSMaUh .nav-link:focus {
  outline: none;
}
.cid-uQAPUSMaUh .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uQAPUSMaUh .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uQAPUSMaUh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQAPUSMaUh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQAPUSMaUh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQAPUSMaUh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQAPUSMaUh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQAPUSMaUh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQAPUSMaUh .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uQAPUSMaUh .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uQAPUSMaUh .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uQAPUSMaUh .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uQAPUSMaUh .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uQAPUSMaUh .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uQAPUSMaUh .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uQAPUSMaUh .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uQAPUSMaUh .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uQAPUSMaUh .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uQAPUSMaUh .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uQAPUSMaUh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQAPUSMaUh .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uQAPUSMaUh .navbar.collapsed.opened {
  position: fixed;
}
.cid-uQAPUSMaUh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uQAPUSMaUh .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQAPUSMaUh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uQAPUSMaUh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQAPUSMaUh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQAPUSMaUh .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: 55%;
}
.cid-uQAPUSMaUh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQAPUSMaUh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQAPUSMaUh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQAPUSMaUh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQAPUSMaUh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQAPUSMaUh .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uQAPUSMaUh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQAPUSMaUh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQAPUSMaUh .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: 41%;
  }
  .cid-uQAPUSMaUh .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uQAPUSMaUh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQAPUSMaUh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQAPUSMaUh .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQAPUSMaUh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uQAPUSMaUh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uQAPUSMaUh .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uQAPUSMaUh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQAPUSMaUh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQAPUSMaUh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQAPUSMaUh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQAPUSMaUh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQAPUSMaUh .dropdown-item.active,
.cid-uQAPUSMaUh .dropdown-item:active {
  background-color: transparent;
}
.cid-uQAPUSMaUh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQAPUSMaUh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQAPUSMaUh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQAPUSMaUh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uQAPUSMaUh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQAPUSMaUh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQAPUSMaUh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQAPUSMaUh .navbar-buttons {
  text-align: center;
}
.cid-uQAPUSMaUh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQAPUSMaUh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uQAPUSMaUh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQAPUSMaUh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQAPUSMaUh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQAPUSMaUh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQAPUSMaUh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQAPUSMaUh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQAPUSMaUh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQAPUSMaUh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQAPUSMaUh .navbar-dropdown {
  position: fixed;
}
.cid-uQAPUSMaUh a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQAPUSMaUh .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uQAPUSMaUh .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uQAPUSMaUh .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQAPUSMaUh .navbar {
    height: 77px;
  }
  .cid-uQAPUSMaUh .navbar.opened {
    height: auto;
  }
  .cid-uQAPUSMaUh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQAPUTtNeU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uQAPUTtNeU .container-fluid {
  padding: 0 3rem;
}
.cid-uQAPUTtNeU .media-container-column {
  padding: 0 2rem;
}
.cid-uQAPUTtNeU .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQAPUTtNeU .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQAPUTOpyk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQAPUTOpyk .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uQAPUTOpyk img {
    width: 90%;
  }
}
.cid-uQAPUTOpyk .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uQAPUTOpyk .items {
  margin-bottom: 0;
}
.cid-uQAPUTOpyk .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uQAPUTOpyk .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uQAPUTOpyk .soc-item:hover span {
  color: #38346b !important;
}
.cid-uQAPUTOpyk .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uQAPUTOpyk .social-list {
    justify-content: center;
  }
}
.cid-uQAPUTOpyk .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uQAPUUjrzV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-uQAPUUjrzV .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uQAPUUjrzV .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uQAPUUjrzV .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uQAPUUjrzV .main-title.display-2 {
  line-height: 1.375;
}
.cid-uQAPUUjrzV .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uQAPUUjrzV .mbr-text {
  color: #606060;
}
.cid-uQAPUUjrzV .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uQAPUUjrzV .mbr-section-btn {
  margin-top: 24px;
}
.cid-uQAPUUjrzV .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uQAPUUjrzV .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uQAPUUjrzV .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uQAPUUjrzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQAPUUjrzV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQAPUUjrzV .mbr-text,
.cid-uQAPUUjrzV .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uQAPUUjrzV .main-title,
.cid-uQAPUUjrzV .mbr-section-btn {
  text-align: center;
}
.cid-uQAPUUjrzV .mbr-section-subtitle,
.cid-uQAPUUjrzV .mbr-section-btn {
  color: #624977;
  text-align: center;
}
.cid-uQAPUUE92Q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQAPUUE92Q .container-fluid {
  padding: 0 3rem;
}
.cid-uQAPUUE92Q .media-container-column {
  padding: 0 2rem;
}
.cid-uQAPUUE92Q .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uQAPUUE92Q .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQAPUUXI9j {
  padding-top: 0px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/youtube-banner-2000x1125.jpg");
}
.cid-uQAPUUXI9j .container-fluid {
  padding: 0 3rem;
}
.cid-uQAPUUXI9j .media-container-column {
  padding: 0 2rem;
}
.cid-uQAPUUXI9j .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #102f62;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uQAPUUXI9j .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQAPUUXI9j .mbr-section-subtitle {
  color: #f3f3f3;
  text-align: left;
}
.cid-uQAPUVgOFa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQAPUVgOFa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQAPUVgOFa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQAPUVgOFa .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQAPUVgOFa .container {
    padding: 0 16px;
  }
}
.cid-uQAPUVgOFa .row {
  justify-content: center;
}
.cid-uQAPUVgOFa .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQAPUVgOFa .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQAPUVgOFa .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQAPUVgOFa .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQAPUVgOFa .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQAPUVgOFa .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQAPUVgOFa .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQAPUVgOFa .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQAPUVgOFa .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQAPUVgOFa .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQAPUVgOFa .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQAPUVgOFa .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQAPUVgOFa .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQAPUVgOFa .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQAPUVgOFa .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQAPUVgOFa .panel-title {
  color: #000000;
}
.cid-uQAPUVgOFa .panel-text {
  color: #000000;
}
.cid-uQAPUVgOFa .panel-title-edit {
  color: #59307c;
}
.cid-uQAPUVUqsn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQAPUVUqsn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQAPUVUqsn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQAPUVUqsn .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQAPUVUqsn .container {
    padding: 0 16px;
  }
}
.cid-uQAPUVUqsn .row {
  justify-content: center;
}
.cid-uQAPUVUqsn .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQAPUVUqsn .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQAPUVUqsn .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQAPUVUqsn .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQAPUVUqsn .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQAPUVUqsn .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQAPUVUqsn .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQAPUVUqsn .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQAPUVUqsn .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQAPUVUqsn .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQAPUVUqsn .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQAPUVUqsn .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQAPUVUqsn .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQAPUVUqsn .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQAPUVUqsn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQAPUVUqsn .panel-title {
  color: #000000;
}
.cid-uQAPUVUqsn .panel-text {
  color: #000000;
}
.cid-uQAPUVUqsn .panel-title-edit {
  color: #59307c;
}
.cid-uQAPUWnvLj {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uQAPUWnvLj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQAPUWnvLj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQAPUWnvLj .container {
    padding: 0 16px;
  }
}
.cid-uQAPUWnvLj .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQAPUWnvLj .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQAPUWnvLj .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uQAPUWnvLj .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uQAPUWnvLj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uQAPUWnvLj .mbr-text {
  color: #ffffff;
}
.cid-uQAPUWnvLj .mbr-text,
.cid-uQAPUWnvLj .mbr-section-btn {
  text-align: center;
  color: #813fb8;
}
.cid-uQAPUWnvLj .mbr-section-title,
.cid-uQAPUWnvLj .title-wrap {
  color: #813fb8;
}
.cid-uQAPUWGhi5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uQAPUWGhi5 .container-fluid {
  padding: 0 3rem;
}
.cid-uQAPUWGhi5 .media-container-column {
  padding: 0 2rem;
}
.cid-uQAPUWGhi5 .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQAPUWGhi5 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQAPUWYS5n.popup-builder {
  background-color: #ffffff;
}
.cid-uQAPUWYS5n.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQAPUWYS5n.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQAPUWYS5n .modal-content,
.cid-uQAPUWYS5n .modal-dialog {
  height: auto;
}
.cid-uQAPUWYS5n .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQAPUWYS5n .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQAPUWYS5n .form-wrapper .mbr-form .form-group,
  .cid-uQAPUWYS5n .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQAPUWYS5n .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQAPUWYS5n .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-uQAPUWYS5n .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uQAPUWYS5n .pt-0 {
  padding-top: 0 !important;
}
.cid-uQAPUWYS5n .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQAPUWYS5n .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQAPUWYS5n .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQAPUWYS5n .modal-open {
  overflow: hidden;
}
.cid-uQAPUWYS5n .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQAPUWYS5n .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQAPUWYS5n .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQAPUWYS5n .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-uQAPUWYS5n .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQAPUWYS5n .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQAPUWYS5n .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQAPUWYS5n .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQAPUWYS5n .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQAPUWYS5n .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQAPUWYS5n .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQAPUWYS5n .modal-backdrop.show {
  opacity: .5;
}
.cid-uQAPUWYS5n .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-uQAPUWYS5n .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUWYS5n .modal-header {
    padding: 1rem;
  }
}
.cid-uQAPUWYS5n .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQAPUWYS5n .modal-header .close svg {
  fill: #260641;
}
.cid-uQAPUWYS5n .modal-header .close:hover {
  opacity: 1;
}
.cid-uQAPUWYS5n .modal-header .close:focus {
  outline: none;
}
.cid-uQAPUWYS5n .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQAPUWYS5n .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQAPUWYS5n .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUWYS5n .modal-body {
    padding: 1rem;
  }
}
.cid-uQAPUWYS5n .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-uQAPUWYS5n .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUWYS5n .modal-footer {
    padding: 1rem;
  }
}
.cid-uQAPUWYS5n .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQAPUWYS5n .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQAPUWYS5n .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQAPUWYS5n .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQAPUWYS5n .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQAPUWYS5n .modal-lg,
  .cid-uQAPUWYS5n .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQAPUWYS5n .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQAPUWYS5n .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQAPUWYS5n .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-uQAPUWYS5n .form-group {
  margin-bottom: 1rem;
}
.cid-uQAPUWYS5n .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQAPUWYS5n .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQAPUWYS5n .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-uQAPUWYS5n .mbr-section-btn {
  margin: 0;
}
.cid-uQAPUWYS5n .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQAPUXswAZ.popup-builder {
  background-color: #ffffff;
}
.cid-uQAPUXswAZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQAPUXswAZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQAPUXswAZ .modal-content,
.cid-uQAPUXswAZ .modal-dialog {
  height: auto;
}
.cid-uQAPUXswAZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQAPUXswAZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQAPUXswAZ .form-wrapper .mbr-form .form-group,
  .cid-uQAPUXswAZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQAPUXswAZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQAPUXswAZ .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-uQAPUXswAZ .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uQAPUXswAZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uQAPUXswAZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQAPUXswAZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQAPUXswAZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQAPUXswAZ .modal-open {
  overflow: hidden;
}
.cid-uQAPUXswAZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQAPUXswAZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQAPUXswAZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQAPUXswAZ .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-uQAPUXswAZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQAPUXswAZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQAPUXswAZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQAPUXswAZ .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQAPUXswAZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQAPUXswAZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQAPUXswAZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQAPUXswAZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uQAPUXswAZ .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-uQAPUXswAZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUXswAZ .modal-header {
    padding: 1rem;
  }
}
.cid-uQAPUXswAZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQAPUXswAZ .modal-header .close svg {
  fill: #5849aa;
}
.cid-uQAPUXswAZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uQAPUXswAZ .modal-header .close:focus {
  outline: none;
}
.cid-uQAPUXswAZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uQAPUXswAZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQAPUXswAZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUXswAZ .modal-body {
    padding: 1rem;
  }
}
.cid-uQAPUXswAZ .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-uQAPUXswAZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUXswAZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uQAPUXswAZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQAPUXswAZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQAPUXswAZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQAPUXswAZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQAPUXswAZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQAPUXswAZ .modal-lg,
  .cid-uQAPUXswAZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQAPUXswAZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQAPUXswAZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQAPUXswAZ .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-uQAPUXswAZ .form-group {
  margin-bottom: 1rem;
}
.cid-uQAPUXswAZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQAPUXswAZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQAPUXswAZ .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-uQAPUXswAZ .mbr-section-btn {
  margin: 0;
}
.cid-uQAPUXswAZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQAPUXTVdb.popup-builder {
  background-color: #ffffff;
}
.cid-uQAPUXTVdb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQAPUXTVdb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQAPUXTVdb .modal-content,
.cid-uQAPUXTVdb .modal-dialog {
  height: auto;
}
.cid-uQAPUXTVdb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQAPUXTVdb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQAPUXTVdb .form-wrapper .mbr-form .form-group,
  .cid-uQAPUXTVdb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQAPUXTVdb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQAPUXTVdb .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-uQAPUXTVdb .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uQAPUXTVdb .pt-0 {
  padding-top: 0 !important;
}
.cid-uQAPUXTVdb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQAPUXTVdb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQAPUXTVdb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQAPUXTVdb .modal-open {
  overflow: hidden;
}
.cid-uQAPUXTVdb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQAPUXTVdb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQAPUXTVdb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQAPUXTVdb .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-uQAPUXTVdb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQAPUXTVdb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQAPUXTVdb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQAPUXTVdb .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQAPUXTVdb .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQAPUXTVdb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQAPUXTVdb .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQAPUXTVdb .modal-backdrop.show {
  opacity: .5;
}
.cid-uQAPUXTVdb .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-uQAPUXTVdb .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUXTVdb .modal-header {
    padding: 1rem;
  }
}
.cid-uQAPUXTVdb .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQAPUXTVdb .modal-header .close svg {
  fill: #611750;
}
.cid-uQAPUXTVdb .modal-header .close:hover {
  opacity: 1;
}
.cid-uQAPUXTVdb .modal-header .close:focus {
  outline: none;
}
.cid-uQAPUXTVdb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQAPUXTVdb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQAPUXTVdb .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUXTVdb .modal-body {
    padding: 1rem;
  }
}
.cid-uQAPUXTVdb .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-uQAPUXTVdb .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUXTVdb .modal-footer {
    padding: 1rem;
  }
}
.cid-uQAPUXTVdb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQAPUXTVdb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQAPUXTVdb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQAPUXTVdb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQAPUXTVdb .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQAPUXTVdb .modal-lg,
  .cid-uQAPUXTVdb .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQAPUXTVdb .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQAPUXTVdb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQAPUXTVdb .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-uQAPUXTVdb .form-group {
  margin-bottom: 1rem;
}
.cid-uQAPUXTVdb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQAPUXTVdb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQAPUXTVdb .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-uQAPUXTVdb .mbr-section-btn {
  margin: 0;
}
.cid-uQAPUXTVdb .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQAPUYjBsb.popup-builder {
  background-color: #ffffff;
}
.cid-uQAPUYjBsb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQAPUYjBsb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQAPUYjBsb .modal-content,
.cid-uQAPUYjBsb .modal-dialog {
  height: auto;
}
.cid-uQAPUYjBsb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQAPUYjBsb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQAPUYjBsb .form-wrapper .mbr-form .form-group,
  .cid-uQAPUYjBsb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQAPUYjBsb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQAPUYjBsb .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-uQAPUYjBsb .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uQAPUYjBsb .pt-0 {
  padding-top: 0 !important;
}
.cid-uQAPUYjBsb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQAPUYjBsb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQAPUYjBsb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQAPUYjBsb .modal-open {
  overflow: hidden;
}
.cid-uQAPUYjBsb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQAPUYjBsb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQAPUYjBsb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQAPUYjBsb .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-uQAPUYjBsb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQAPUYjBsb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQAPUYjBsb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQAPUYjBsb .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQAPUYjBsb .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQAPUYjBsb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQAPUYjBsb .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQAPUYjBsb .modal-backdrop.show {
  opacity: .5;
}
.cid-uQAPUYjBsb .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-uQAPUYjBsb .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUYjBsb .modal-header {
    padding: 1rem;
  }
}
.cid-uQAPUYjBsb .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQAPUYjBsb .modal-header .close svg {
  fill: #59307c;
}
.cid-uQAPUYjBsb .modal-header .close:hover {
  opacity: 1;
}
.cid-uQAPUYjBsb .modal-header .close:focus {
  outline: none;
}
.cid-uQAPUYjBsb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uQAPUYjBsb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQAPUYjBsb .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUYjBsb .modal-body {
    padding: 1rem;
  }
}
.cid-uQAPUYjBsb .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-uQAPUYjBsb .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUYjBsb .modal-footer {
    padding: 1rem;
  }
}
.cid-uQAPUYjBsb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQAPUYjBsb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQAPUYjBsb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQAPUYjBsb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQAPUYjBsb .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQAPUYjBsb .modal-lg,
  .cid-uQAPUYjBsb .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQAPUYjBsb .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQAPUYjBsb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQAPUYjBsb .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-uQAPUYjBsb .form-group {
  margin-bottom: 1rem;
}
.cid-uQAPUYjBsb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQAPUYjBsb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQAPUYjBsb .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-uQAPUYjBsb .mbr-section-btn {
  margin: 0;
}
.cid-uQAPUYjBsb .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQAPUYKvtz.popup-builder {
  background-color: #ffffff;
}
.cid-uQAPUYKvtz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQAPUYKvtz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQAPUYKvtz .modal-content,
.cid-uQAPUYKvtz .modal-dialog {
  height: auto;
}
.cid-uQAPUYKvtz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQAPUYKvtz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQAPUYKvtz .form-wrapper .mbr-form .form-group,
  .cid-uQAPUYKvtz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQAPUYKvtz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQAPUYKvtz .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-uQAPUYKvtz .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uQAPUYKvtz .pt-0 {
  padding-top: 0 !important;
}
.cid-uQAPUYKvtz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQAPUYKvtz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQAPUYKvtz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQAPUYKvtz .modal-open {
  overflow: hidden;
}
.cid-uQAPUYKvtz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQAPUYKvtz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQAPUYKvtz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQAPUYKvtz .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-uQAPUYKvtz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQAPUYKvtz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQAPUYKvtz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQAPUYKvtz .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQAPUYKvtz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQAPUYKvtz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQAPUYKvtz .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQAPUYKvtz .modal-backdrop.show {
  opacity: .5;
}
.cid-uQAPUYKvtz .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-uQAPUYKvtz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUYKvtz .modal-header {
    padding: 1rem;
  }
}
.cid-uQAPUYKvtz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQAPUYKvtz .modal-header .close svg {
  fill: #ffffff;
}
.cid-uQAPUYKvtz .modal-header .close:hover {
  opacity: 1;
}
.cid-uQAPUYKvtz .modal-header .close:focus {
  outline: none;
}
.cid-uQAPUYKvtz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uQAPUYKvtz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQAPUYKvtz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUYKvtz .modal-body {
    padding: 1rem;
  }
}
.cid-uQAPUYKvtz .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-uQAPUYKvtz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUYKvtz .modal-footer {
    padding: 1rem;
  }
}
.cid-uQAPUYKvtz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQAPUYKvtz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQAPUYKvtz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQAPUYKvtz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQAPUYKvtz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQAPUYKvtz .modal-lg,
  .cid-uQAPUYKvtz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQAPUYKvtz .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQAPUYKvtz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQAPUYKvtz .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-uQAPUYKvtz .form-group {
  margin-bottom: 1rem;
}
.cid-uQAPUYKvtz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQAPUYKvtz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQAPUYKvtz .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-uQAPUYKvtz .mbr-section-btn {
  margin: 0;
}
.cid-uQAPUYKvtz .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQAPUZdLYJ.popup-builder {
  background-color: #ffffff;
}
.cid-uQAPUZdLYJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQAPUZdLYJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQAPUZdLYJ .modal-content,
.cid-uQAPUZdLYJ .modal-dialog {
  height: auto;
}
.cid-uQAPUZdLYJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQAPUZdLYJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQAPUZdLYJ .form-wrapper .mbr-form .form-group,
  .cid-uQAPUZdLYJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQAPUZdLYJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQAPUZdLYJ .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-uQAPUZdLYJ .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uQAPUZdLYJ .pt-0 {
  padding-top: 0 !important;
}
.cid-uQAPUZdLYJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQAPUZdLYJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQAPUZdLYJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQAPUZdLYJ .modal-open {
  overflow: hidden;
}
.cid-uQAPUZdLYJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQAPUZdLYJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQAPUZdLYJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQAPUZdLYJ .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-uQAPUZdLYJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQAPUZdLYJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQAPUZdLYJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQAPUZdLYJ .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQAPUZdLYJ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQAPUZdLYJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQAPUZdLYJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQAPUZdLYJ .modal-backdrop.show {
  opacity: .5;
}
.cid-uQAPUZdLYJ .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-uQAPUZdLYJ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUZdLYJ .modal-header {
    padding: 1rem;
  }
}
.cid-uQAPUZdLYJ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQAPUZdLYJ .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uQAPUZdLYJ .modal-header .close:hover {
  opacity: 1;
}
.cid-uQAPUZdLYJ .modal-header .close:focus {
  outline: none;
}
.cid-uQAPUZdLYJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uQAPUZdLYJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQAPUZdLYJ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUZdLYJ .modal-body {
    padding: 1rem;
  }
}
.cid-uQAPUZdLYJ .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-uQAPUZdLYJ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUZdLYJ .modal-footer {
    padding: 1rem;
  }
}
.cid-uQAPUZdLYJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQAPUZdLYJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQAPUZdLYJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQAPUZdLYJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQAPUZdLYJ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQAPUZdLYJ .modal-lg,
  .cid-uQAPUZdLYJ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQAPUZdLYJ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQAPUZdLYJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQAPUZdLYJ .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-uQAPUZdLYJ .form-group {
  margin-bottom: 1rem;
}
.cid-uQAPUZdLYJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQAPUZdLYJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQAPUZdLYJ .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-uQAPUZdLYJ .mbr-section-btn {
  margin: 0;
}
.cid-uQAPUZdLYJ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQAPUZEqJo.popup-builder {
  background-color: #ffffff;
}
.cid-uQAPUZEqJo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQAPUZEqJo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQAPUZEqJo .modal-content,
.cid-uQAPUZEqJo .modal-dialog {
  height: auto;
}
.cid-uQAPUZEqJo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQAPUZEqJo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQAPUZEqJo .form-wrapper .mbr-form .form-group,
  .cid-uQAPUZEqJo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQAPUZEqJo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQAPUZEqJo .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-uQAPUZEqJo .mbr-text {
  text-align: center;
}
.cid-uQAPUZEqJo .pt-0 {
  padding-top: 0 !important;
}
.cid-uQAPUZEqJo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQAPUZEqJo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQAPUZEqJo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQAPUZEqJo .modal-open {
  overflow: hidden;
}
.cid-uQAPUZEqJo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQAPUZEqJo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQAPUZEqJo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQAPUZEqJo .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-uQAPUZEqJo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQAPUZEqJo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQAPUZEqJo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQAPUZEqJo .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQAPUZEqJo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQAPUZEqJo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQAPUZEqJo .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQAPUZEqJo .modal-backdrop.show {
  opacity: .5;
}
.cid-uQAPUZEqJo .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-uQAPUZEqJo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUZEqJo .modal-header {
    padding: 1rem;
  }
}
.cid-uQAPUZEqJo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQAPUZEqJo .modal-header .close svg {
  fill: #353535;
}
.cid-uQAPUZEqJo .modal-header .close:hover {
  opacity: 1;
}
.cid-uQAPUZEqJo .modal-header .close:focus {
  outline: none;
}
.cid-uQAPUZEqJo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQAPUZEqJo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQAPUZEqJo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUZEqJo .modal-body {
    padding: 1rem;
  }
}
.cid-uQAPUZEqJo .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-uQAPUZEqJo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQAPUZEqJo .modal-footer {
    padding: 1rem;
  }
}
.cid-uQAPUZEqJo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQAPUZEqJo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQAPUZEqJo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQAPUZEqJo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQAPUZEqJo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQAPUZEqJo .modal-lg,
  .cid-uQAPUZEqJo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQAPUZEqJo .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQAPUZEqJo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQAPUZEqJo .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-uQAPUZEqJo .form-group {
  margin-bottom: 1rem;
}
.cid-uQAPUZEqJo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQAPUZEqJo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQAPUZEqJo .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-uQAPUZEqJo .mbr-section-btn {
  margin: 0;
}
.cid-uQAPUZEqJo .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQBO6uf9rV .dropdown-menu {
  padding: 12px 0;
}
.cid-uQBO6uf9rV .dropdown-item:hover,
.cid-uQBO6uf9rV .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-uQBO6uf9rV .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-uQBO6uf9rV .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-uQBO6uf9rV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQBO6uf9rV .nav-link {
  position: relative;
}
.cid-uQBO6uf9rV .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-uQBO6uf9rV .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQBO6uf9rV .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-uQBO6uf9rV .dropdown-menu,
.cid-uQBO6uf9rV .navbar.opened {
  background: #1f0931 !important;
}
.cid-uQBO6uf9rV .nav-item:focus,
.cid-uQBO6uf9rV .nav-link:focus {
  outline: none;
}
.cid-uQBO6uf9rV .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-uQBO6uf9rV .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-uQBO6uf9rV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQBO6uf9rV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQBO6uf9rV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uQBO6uf9rV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uQBO6uf9rV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQBO6uf9rV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQBO6uf9rV .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #260641;
  background: none;
}
.cid-uQBO6uf9rV .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-uQBO6uf9rV .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-uQBO6uf9rV .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-uQBO6uf9rV .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-uQBO6uf9rV .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-uQBO6uf9rV .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-uQBO6uf9rV .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-uQBO6uf9rV .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-uQBO6uf9rV .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-uQBO6uf9rV .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uQBO6uf9rV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQBO6uf9rV .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-uQBO6uf9rV .navbar.collapsed.opened {
  position: fixed;
}
.cid-uQBO6uf9rV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-uQBO6uf9rV .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQBO6uf9rV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uQBO6uf9rV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQBO6uf9rV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQBO6uf9rV .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: 55%;
}
.cid-uQBO6uf9rV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQBO6uf9rV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQBO6uf9rV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQBO6uf9rV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQBO6uf9rV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQBO6uf9rV .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-uQBO6uf9rV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQBO6uf9rV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQBO6uf9rV .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: 41%;
  }
  .cid-uQBO6uf9rV .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-uQBO6uf9rV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uQBO6uf9rV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQBO6uf9rV .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQBO6uf9rV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-uQBO6uf9rV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uQBO6uf9rV .navbar.navbar-short {
  background: #260641 !important;
  min-height: 60px;
}
.cid-uQBO6uf9rV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uQBO6uf9rV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQBO6uf9rV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQBO6uf9rV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQBO6uf9rV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQBO6uf9rV .dropdown-item.active,
.cid-uQBO6uf9rV .dropdown-item:active {
  background-color: transparent;
}
.cid-uQBO6uf9rV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQBO6uf9rV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQBO6uf9rV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQBO6uf9rV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #260641;
}
.cid-uQBO6uf9rV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQBO6uf9rV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQBO6uf9rV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQBO6uf9rV .navbar-buttons {
  text-align: center;
}
.cid-uQBO6uf9rV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQBO6uf9rV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #bdbe5a;
}
.cid-uQBO6uf9rV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQBO6uf9rV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQBO6uf9rV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQBO6uf9rV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQBO6uf9rV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQBO6uf9rV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQBO6uf9rV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQBO6uf9rV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQBO6uf9rV .navbar-dropdown {
  position: fixed;
}
.cid-uQBO6uf9rV a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uQBO6uf9rV .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uQBO6uf9rV .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-uQBO6uf9rV .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQBO6uf9rV .navbar {
    height: 77px;
  }
  .cid-uQBO6uf9rV .navbar.opened {
    height: auto;
  }
  .cid-uQBO6uf9rV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQBO6uTM8R {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/dark-purple-4-284x177.jpg");
}
.cid-uQBO6uTM8R .container-fluid {
  padding: 0 3rem;
}
.cid-uQBO6uTM8R .media-container-column {
  padding: 0 2rem;
}
.cid-uQBO6uTM8R .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQBO6uTM8R .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQBO6vgKLw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQBO6vgKLw .mbr-text {
  color: #9c969b;
}
@media (min-width: 992px) {
  .cid-uQBO6vgKLw img {
    width: 90%;
  }
}
.cid-uQBO6vgKLw .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-uQBO6vgKLw .items {
  margin-bottom: 0;
}
.cid-uQBO6vgKLw .soc-item {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
}
.cid-uQBO6vgKLw .soc-item span {
  font-size: 1rem;
  color: #767676 !important;
  transition: all 0.3s;
}
.cid-uQBO6vgKLw .soc-item:hover span {
  color: #38346b !important;
}
.cid-uQBO6vgKLw .items-col {
  line-height: 2.5;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uQBO6vgKLw .social-list {
    justify-content: center;
  }
}
.cid-uQBO6vgKLw .card-title {
  text-align: center;
  color: #e6eaf1;
}
.cid-uQBO6vJBP8 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9fafb;
}
.cid-uQBO6vJBP8 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #38346b;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uQBO6vJBP8 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uQBO6vJBP8 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uQBO6vJBP8 .main-title.display-2 {
  line-height: 1.375;
}
.cid-uQBO6vJBP8 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uQBO6vJBP8 .mbr-text {
  color: #606060;
}
.cid-uQBO6vJBP8 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uQBO6vJBP8 .mbr-section-btn {
  margin-top: 24px;
}
.cid-uQBO6vJBP8 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uQBO6vJBP8 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uQBO6vJBP8 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uQBO6vJBP8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQBO6vJBP8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQBO6vJBP8 .mbr-text,
.cid-uQBO6vJBP8 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uQBO6vJBP8 .main-title,
.cid-uQBO6vJBP8 .mbr-section-btn {
  text-align: center;
}
.cid-uQBO6vJBP8 .mbr-section-subtitle,
.cid-uQBO6vJBP8 .mbr-section-btn {
  color: #624977;
  text-align: center;
}
.cid-uQBO6w5Vxd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #1f0931;
}
.cid-uQBO6w5Vxd .container-fluid {
  padding: 0 3rem;
}
.cid-uQBO6w5Vxd .media-container-column {
  padding: 0 2rem;
}
.cid-uQBO6w5Vxd .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #e6eaf1;
}
@media (max-width: 767px) {
  .cid-uQBO6w5Vxd .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQBO6wmOea {
  padding-top: 0px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/youtube-banner-2000x1125.jpg");
}
.cid-uQBO6wmOea .container-fluid {
  padding: 0 3rem;
}
.cid-uQBO6wmOea .media-container-column {
  padding: 0 2rem;
}
.cid-uQBO6wmOea .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #102f62;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uQBO6wmOea .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQBO6wmOea .mbr-section-subtitle {
  color: #f3f3f3;
  text-align: left;
}
.cid-uQBO6wDbQr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQBO6wDbQr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQBO6wDbQr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQBO6wDbQr .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQBO6wDbQr .container {
    padding: 0 16px;
  }
}
.cid-uQBO6wDbQr .row {
  justify-content: center;
}
.cid-uQBO6wDbQr .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQBO6wDbQr .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQBO6wDbQr .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQBO6wDbQr .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQBO6wDbQr .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQBO6wDbQr .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQBO6wDbQr .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQBO6wDbQr .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQBO6wDbQr .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQBO6wDbQr .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQBO6wDbQr .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQBO6wDbQr .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQBO6wDbQr .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQBO6wDbQr .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQBO6wDbQr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQBO6wDbQr .panel-title {
  color: #000000;
}
.cid-uQBO6wDbQr .panel-text {
  color: #000000;
}
.cid-uQBO6wDbQr .panel-title-edit {
  color: #59307c;
}
.cid-uQBO6xbw5L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQBO6xbw5L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQBO6xbw5L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQBO6xbw5L .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uQBO6xbw5L .container {
    padding: 0 16px;
  }
}
.cid-uQBO6xbw5L .row {
  justify-content: center;
}
.cid-uQBO6xbw5L .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uQBO6xbw5L .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQBO6xbw5L .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #59307c;
  text-align: center;
}
.cid-uQBO6xbw5L .panel-group .card {
  border-bottom: 1px solid #59307c;
  border-radius: 0 !important;
}
.cid-uQBO6xbw5L .panel-group .card:first-child {
  border-top: 1px solid #59307c;
}
.cid-uQBO6xbw5L .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uQBO6xbw5L .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uQBO6xbw5L .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQBO6xbw5L .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQBO6xbw5L .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQBO6xbw5L .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #1f0931;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uQBO6xbw5L .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uQBO6xbw5L .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uQBO6xbw5L .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQBO6xbw5L .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uQBO6xbw5L .panel-title {
  color: #000000;
}
.cid-uQBO6xbw5L .panel-text {
  color: #000000;
}
.cid-uQBO6xbw5L .panel-title-edit {
  color: #59307c;
}
.cid-uQBO6xH7OH {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/purple-to-black-324x576.jpg");
}
.cid-uQBO6xH7OH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQBO6xH7OH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uQBO6xH7OH .container {
    padding: 0 16px;
  }
}
.cid-uQBO6xH7OH .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQBO6xH7OH .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQBO6xH7OH .content-wrapper .mbr-section-title span {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}
.cid-uQBO6xH7OH .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uQBO6xH7OH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uQBO6xH7OH .mbr-text {
  color: #ffffff;
}
.cid-uQBO6xH7OH .mbr-text,
.cid-uQBO6xH7OH .mbr-section-btn {
  text-align: center;
  color: #813fb8;
}
.cid-uQBO6xH7OH .mbr-section-title,
.cid-uQBO6xH7OH .title-wrap {
  color: #813fb8;
}
.cid-uQBO6y0xxy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-uQBO6y0xxy .container-fluid {
  padding: 0 3rem;
}
.cid-uQBO6y0xxy .media-container-column {
  padding: 0 2rem;
}
.cid-uQBO6y0xxy .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #b97ecd;
}
@media (max-width: 767px) {
  .cid-uQBO6y0xxy .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uQBO6yib5C.popup-builder {
  background-color: #ffffff;
}
.cid-uQBO6yib5C.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQBO6yib5C.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQBO6yib5C .modal-content,
.cid-uQBO6yib5C .modal-dialog {
  height: auto;
}
.cid-uQBO6yib5C .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQBO6yib5C .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQBO6yib5C .form-wrapper .mbr-form .form-group,
  .cid-uQBO6yib5C .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQBO6yib5C .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQBO6yib5C .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-uQBO6yib5C .mbr-text {
  text-align: center;
  color: #410078;
}
.cid-uQBO6yib5C .pt-0 {
  padding-top: 0 !important;
}
.cid-uQBO6yib5C .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQBO6yib5C .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQBO6yib5C .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQBO6yib5C .modal-open {
  overflow: hidden;
}
.cid-uQBO6yib5C .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQBO6yib5C .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQBO6yib5C .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQBO6yib5C .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-uQBO6yib5C .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQBO6yib5C .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQBO6yib5C .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQBO6yib5C .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQBO6yib5C .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQBO6yib5C .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQBO6yib5C .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQBO6yib5C .modal-backdrop.show {
  opacity: .5;
}
.cid-uQBO6yib5C .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-uQBO6yib5C .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6yib5C .modal-header {
    padding: 1rem;
  }
}
.cid-uQBO6yib5C .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQBO6yib5C .modal-header .close svg {
  fill: #260641;
}
.cid-uQBO6yib5C .modal-header .close:hover {
  opacity: 1;
}
.cid-uQBO6yib5C .modal-header .close:focus {
  outline: none;
}
.cid-uQBO6yib5C .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQBO6yib5C .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQBO6yib5C .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6yib5C .modal-body {
    padding: 1rem;
  }
}
.cid-uQBO6yib5C .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-uQBO6yib5C .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6yib5C .modal-footer {
    padding: 1rem;
  }
}
.cid-uQBO6yib5C .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQBO6yib5C .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQBO6yib5C .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQBO6yib5C .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQBO6yib5C .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQBO6yib5C .modal-lg,
  .cid-uQBO6yib5C .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQBO6yib5C .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQBO6yib5C .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQBO6yib5C .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-uQBO6yib5C .form-group {
  margin-bottom: 1rem;
}
.cid-uQBO6yib5C .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQBO6yib5C .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQBO6yib5C .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-uQBO6yib5C .mbr-section-btn {
  margin: 0;
}
.cid-uQBO6yib5C .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQBO6yJSme.popup-builder {
  background-color: #ffffff;
}
.cid-uQBO6yJSme.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQBO6yJSme.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQBO6yJSme .modal-content,
.cid-uQBO6yJSme .modal-dialog {
  height: auto;
}
.cid-uQBO6yJSme .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQBO6yJSme .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQBO6yJSme .form-wrapper .mbr-form .form-group,
  .cid-uQBO6yJSme .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQBO6yJSme .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQBO6yJSme .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-uQBO6yJSme .mbr-text {
  text-align: center;
  color: #b469fb;
}
.cid-uQBO6yJSme .pt-0 {
  padding-top: 0 !important;
}
.cid-uQBO6yJSme .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQBO6yJSme .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQBO6yJSme .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQBO6yJSme .modal-open {
  overflow: hidden;
}
.cid-uQBO6yJSme .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQBO6yJSme .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQBO6yJSme .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQBO6yJSme .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-uQBO6yJSme .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQBO6yJSme .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQBO6yJSme .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQBO6yJSme .modal-content {
  background: #1f0931;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQBO6yJSme .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQBO6yJSme .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQBO6yJSme .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQBO6yJSme .modal-backdrop.show {
  opacity: .5;
}
.cid-uQBO6yJSme .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-uQBO6yJSme .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6yJSme .modal-header {
    padding: 1rem;
  }
}
.cid-uQBO6yJSme .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQBO6yJSme .modal-header .close svg {
  fill: #5849aa;
}
.cid-uQBO6yJSme .modal-header .close:hover {
  opacity: 1;
}
.cid-uQBO6yJSme .modal-header .close:focus {
  outline: none;
}
.cid-uQBO6yJSme .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b469fb;
}
.cid-uQBO6yJSme .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQBO6yJSme .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6yJSme .modal-body {
    padding: 1rem;
  }
}
.cid-uQBO6yJSme .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-uQBO6yJSme .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6yJSme .modal-footer {
    padding: 1rem;
  }
}
.cid-uQBO6yJSme .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQBO6yJSme .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQBO6yJSme .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQBO6yJSme .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQBO6yJSme .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQBO6yJSme .modal-lg,
  .cid-uQBO6yJSme .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQBO6yJSme .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQBO6yJSme .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQBO6yJSme .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-uQBO6yJSme .form-group {
  margin-bottom: 1rem;
}
.cid-uQBO6yJSme .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQBO6yJSme .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQBO6yJSme .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-uQBO6yJSme .mbr-section-btn {
  margin: 0;
}
.cid-uQBO6yJSme .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQBO6zbDnC.popup-builder {
  background-color: #ffffff;
}
.cid-uQBO6zbDnC.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQBO6zbDnC.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQBO6zbDnC .modal-content,
.cid-uQBO6zbDnC .modal-dialog {
  height: auto;
}
.cid-uQBO6zbDnC .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQBO6zbDnC .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQBO6zbDnC .form-wrapper .mbr-form .form-group,
  .cid-uQBO6zbDnC .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQBO6zbDnC .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQBO6zbDnC .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-uQBO6zbDnC .mbr-text {
  text-align: center;
  color: #260641;
}
.cid-uQBO6zbDnC .pt-0 {
  padding-top: 0 !important;
}
.cid-uQBO6zbDnC .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQBO6zbDnC .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQBO6zbDnC .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQBO6zbDnC .modal-open {
  overflow: hidden;
}
.cid-uQBO6zbDnC .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQBO6zbDnC .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQBO6zbDnC .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQBO6zbDnC .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-uQBO6zbDnC .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQBO6zbDnC .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQBO6zbDnC .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQBO6zbDnC .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQBO6zbDnC .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQBO6zbDnC .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQBO6zbDnC .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQBO6zbDnC .modal-backdrop.show {
  opacity: .5;
}
.cid-uQBO6zbDnC .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-uQBO6zbDnC .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6zbDnC .modal-header {
    padding: 1rem;
  }
}
.cid-uQBO6zbDnC .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQBO6zbDnC .modal-header .close svg {
  fill: #611750;
}
.cid-uQBO6zbDnC .modal-header .close:hover {
  opacity: 1;
}
.cid-uQBO6zbDnC .modal-header .close:focus {
  outline: none;
}
.cid-uQBO6zbDnC .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #410078;
}
.cid-uQBO6zbDnC .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQBO6zbDnC .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6zbDnC .modal-body {
    padding: 1rem;
  }
}
.cid-uQBO6zbDnC .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-uQBO6zbDnC .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6zbDnC .modal-footer {
    padding: 1rem;
  }
}
.cid-uQBO6zbDnC .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQBO6zbDnC .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQBO6zbDnC .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQBO6zbDnC .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQBO6zbDnC .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQBO6zbDnC .modal-lg,
  .cid-uQBO6zbDnC .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQBO6zbDnC .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQBO6zbDnC .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQBO6zbDnC .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-uQBO6zbDnC .form-group {
  margin-bottom: 1rem;
}
.cid-uQBO6zbDnC .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQBO6zbDnC .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQBO6zbDnC .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-uQBO6zbDnC .mbr-section-btn {
  margin: 0;
}
.cid-uQBO6zbDnC .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQBO6zHn0p.popup-builder {
  background-color: #ffffff;
}
.cid-uQBO6zHn0p.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQBO6zHn0p.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQBO6zHn0p .modal-content,
.cid-uQBO6zHn0p .modal-dialog {
  height: auto;
}
.cid-uQBO6zHn0p .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQBO6zHn0p .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQBO6zHn0p .form-wrapper .mbr-form .form-group,
  .cid-uQBO6zHn0p .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQBO6zHn0p .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQBO6zHn0p .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-uQBO6zHn0p .mbr-text {
  text-align: center;
  color: #59307c;
}
.cid-uQBO6zHn0p .pt-0 {
  padding-top: 0 !important;
}
.cid-uQBO6zHn0p .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQBO6zHn0p .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQBO6zHn0p .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQBO6zHn0p .modal-open {
  overflow: hidden;
}
.cid-uQBO6zHn0p .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQBO6zHn0p .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQBO6zHn0p .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQBO6zHn0p .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-uQBO6zHn0p .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQBO6zHn0p .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQBO6zHn0p .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQBO6zHn0p .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQBO6zHn0p .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQBO6zHn0p .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQBO6zHn0p .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQBO6zHn0p .modal-backdrop.show {
  opacity: .5;
}
.cid-uQBO6zHn0p .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-uQBO6zHn0p .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6zHn0p .modal-header {
    padding: 1rem;
  }
}
.cid-uQBO6zHn0p .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQBO6zHn0p .modal-header .close svg {
  fill: #59307c;
}
.cid-uQBO6zHn0p .modal-header .close:hover {
  opacity: 1;
}
.cid-uQBO6zHn0p .modal-header .close:focus {
  outline: none;
}
.cid-uQBO6zHn0p .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #59307c;
}
.cid-uQBO6zHn0p .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQBO6zHn0p .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6zHn0p .modal-body {
    padding: 1rem;
  }
}
.cid-uQBO6zHn0p .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-uQBO6zHn0p .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6zHn0p .modal-footer {
    padding: 1rem;
  }
}
.cid-uQBO6zHn0p .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQBO6zHn0p .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQBO6zHn0p .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQBO6zHn0p .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQBO6zHn0p .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQBO6zHn0p .modal-lg,
  .cid-uQBO6zHn0p .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQBO6zHn0p .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQBO6zHn0p .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQBO6zHn0p .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-uQBO6zHn0p .form-group {
  margin-bottom: 1rem;
}
.cid-uQBO6zHn0p .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQBO6zHn0p .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQBO6zHn0p .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-uQBO6zHn0p .mbr-section-btn {
  margin: 0;
}
.cid-uQBO6zHn0p .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQBO6AaeqN.popup-builder {
  background-color: #ffffff;
}
.cid-uQBO6AaeqN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQBO6AaeqN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQBO6AaeqN .modal-content,
.cid-uQBO6AaeqN .modal-dialog {
  height: auto;
}
.cid-uQBO6AaeqN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQBO6AaeqN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQBO6AaeqN .form-wrapper .mbr-form .form-group,
  .cid-uQBO6AaeqN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQBO6AaeqN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQBO6AaeqN .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-uQBO6AaeqN .mbr-text {
  text-align: center;
  color: #999999;
}
.cid-uQBO6AaeqN .pt-0 {
  padding-top: 0 !important;
}
.cid-uQBO6AaeqN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQBO6AaeqN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQBO6AaeqN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQBO6AaeqN .modal-open {
  overflow: hidden;
}
.cid-uQBO6AaeqN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQBO6AaeqN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQBO6AaeqN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQBO6AaeqN .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-uQBO6AaeqN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQBO6AaeqN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQBO6AaeqN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQBO6AaeqN .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQBO6AaeqN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQBO6AaeqN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQBO6AaeqN .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQBO6AaeqN .modal-backdrop.show {
  opacity: .5;
}
.cid-uQBO6AaeqN .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-uQBO6AaeqN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6AaeqN .modal-header {
    padding: 1rem;
  }
}
.cid-uQBO6AaeqN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQBO6AaeqN .modal-header .close svg {
  fill: #ffffff;
}
.cid-uQBO6AaeqN .modal-header .close:hover {
  opacity: 1;
}
.cid-uQBO6AaeqN .modal-header .close:focus {
  outline: none;
}
.cid-uQBO6AaeqN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #d4a4e4;
}
.cid-uQBO6AaeqN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQBO6AaeqN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6AaeqN .modal-body {
    padding: 1rem;
  }
}
.cid-uQBO6AaeqN .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-uQBO6AaeqN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6AaeqN .modal-footer {
    padding: 1rem;
  }
}
.cid-uQBO6AaeqN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQBO6AaeqN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQBO6AaeqN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQBO6AaeqN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQBO6AaeqN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQBO6AaeqN .modal-lg,
  .cid-uQBO6AaeqN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQBO6AaeqN .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQBO6AaeqN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQBO6AaeqN .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-uQBO6AaeqN .form-group {
  margin-bottom: 1rem;
}
.cid-uQBO6AaeqN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQBO6AaeqN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQBO6AaeqN .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-uQBO6AaeqN .mbr-section-btn {
  margin: 0;
}
.cid-uQBO6AaeqN .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQBO6ACwCt.popup-builder {
  background-color: #ffffff;
}
.cid-uQBO6ACwCt.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQBO6ACwCt.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQBO6ACwCt .modal-content,
.cid-uQBO6ACwCt .modal-dialog {
  height: auto;
}
.cid-uQBO6ACwCt .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQBO6ACwCt .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQBO6ACwCt .form-wrapper .mbr-form .form-group,
  .cid-uQBO6ACwCt .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQBO6ACwCt .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQBO6ACwCt .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-uQBO6ACwCt .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uQBO6ACwCt .pt-0 {
  padding-top: 0 !important;
}
.cid-uQBO6ACwCt .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQBO6ACwCt .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQBO6ACwCt .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQBO6ACwCt .modal-open {
  overflow: hidden;
}
.cid-uQBO6ACwCt .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQBO6ACwCt .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQBO6ACwCt .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQBO6ACwCt .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-uQBO6ACwCt .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQBO6ACwCt .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQBO6ACwCt .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQBO6ACwCt .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQBO6ACwCt .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQBO6ACwCt .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQBO6ACwCt .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQBO6ACwCt .modal-backdrop.show {
  opacity: .5;
}
.cid-uQBO6ACwCt .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-uQBO6ACwCt .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6ACwCt .modal-header {
    padding: 1rem;
  }
}
.cid-uQBO6ACwCt .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQBO6ACwCt .modal-header .close svg {
  fill: #b97ecd;
}
.cid-uQBO6ACwCt .modal-header .close:hover {
  opacity: 1;
}
.cid-uQBO6ACwCt .modal-header .close:focus {
  outline: none;
}
.cid-uQBO6ACwCt .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #b97ecd;
}
.cid-uQBO6ACwCt .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQBO6ACwCt .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6ACwCt .modal-body {
    padding: 1rem;
  }
}
.cid-uQBO6ACwCt .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-uQBO6ACwCt .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6ACwCt .modal-footer {
    padding: 1rem;
  }
}
.cid-uQBO6ACwCt .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQBO6ACwCt .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQBO6ACwCt .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQBO6ACwCt .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQBO6ACwCt .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQBO6ACwCt .modal-lg,
  .cid-uQBO6ACwCt .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQBO6ACwCt .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQBO6ACwCt .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQBO6ACwCt .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-uQBO6ACwCt .form-group {
  margin-bottom: 1rem;
}
.cid-uQBO6ACwCt .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQBO6ACwCt .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQBO6ACwCt .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-uQBO6ACwCt .mbr-section-btn {
  margin: 0;
}
.cid-uQBO6ACwCt .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQBO6B4eNS.popup-builder {
  background-color: #ffffff;
}
.cid-uQBO6B4eNS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uQBO6B4eNS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uQBO6B4eNS .modal-content,
.cid-uQBO6B4eNS .modal-dialog {
  height: auto;
}
.cid-uQBO6B4eNS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uQBO6B4eNS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uQBO6B4eNS .form-wrapper .mbr-form .form-group,
  .cid-uQBO6B4eNS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uQBO6B4eNS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uQBO6B4eNS .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-uQBO6B4eNS .mbr-text {
  text-align: center;
}
.cid-uQBO6B4eNS .pt-0 {
  padding-top: 0 !important;
}
.cid-uQBO6B4eNS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uQBO6B4eNS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uQBO6B4eNS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uQBO6B4eNS .modal-open {
  overflow: hidden;
}
.cid-uQBO6B4eNS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uQBO6B4eNS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uQBO6B4eNS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uQBO6B4eNS .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-uQBO6B4eNS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uQBO6B4eNS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uQBO6B4eNS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uQBO6B4eNS .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  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);
}
.cid-uQBO6B4eNS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uQBO6B4eNS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uQBO6B4eNS .modal-backdrop.fade {
  opacity: 0;
}
.cid-uQBO6B4eNS .modal-backdrop.show {
  opacity: .5;
}
.cid-uQBO6B4eNS .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-uQBO6B4eNS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6B4eNS .modal-header {
    padding: 1rem;
  }
}
.cid-uQBO6B4eNS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uQBO6B4eNS .modal-header .close svg {
  fill: #353535;
}
.cid-uQBO6B4eNS .modal-header .close:hover {
  opacity: 1;
}
.cid-uQBO6B4eNS .modal-header .close:focus {
  outline: none;
}
.cid-uQBO6B4eNS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uQBO6B4eNS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uQBO6B4eNS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6B4eNS .modal-body {
    padding: 1rem;
  }
}
.cid-uQBO6B4eNS .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-uQBO6B4eNS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQBO6B4eNS .modal-footer {
    padding: 1rem;
  }
}
.cid-uQBO6B4eNS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uQBO6B4eNS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uQBO6B4eNS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uQBO6B4eNS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uQBO6B4eNS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uQBO6B4eNS .modal-lg,
  .cid-uQBO6B4eNS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uQBO6B4eNS .modal-xl {
    max-width: 1140px;
  }
}
.cid-uQBO6B4eNS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uQBO6B4eNS .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-uQBO6B4eNS .form-group {
  margin-bottom: 1rem;
}
.cid-uQBO6B4eNS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uQBO6B4eNS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uQBO6B4eNS .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-uQBO6B4eNS .mbr-section-btn {
  margin: 0;
}
.cid-uQBO6B4eNS .mbr-section-btn .btn {
  margin: 0;
}
