body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-7 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #1c546c !important;
}
.bg-success {
  background-color: #073b4c !important;
}
.bg-info {
  background-color: #22a5e5 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1c546c !important;
  border-color: #1c546c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0a1e27 !important;
  border-color: #0a1e27 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a1e27 !important;
  border-color: #0a1e27 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff2121 !important;
  border-color: #ff2121 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #c90000 !important;
  border-color: #c90000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #c90000 !important;
  border-color: #c90000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success,
.btn-success:active {
  background-color: #073b4c !important;
  border-color: #073b4c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1c546c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0a1e27 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1c546c !important;
  border-color: #1c546c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff2121;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #c90000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff2121 !important;
  border-color: #ff2121 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #22a5e5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #13709e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #22a5e5 !important;
  border-color: #22a5e5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #073b4c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #073b4c !important;
  border-color: #073b4c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1c546c !important;
}
.text-secondary {
  color: #ff2121 !important;
}
.text-success {
  color: #073b4c !important;
}
.text-info {
  color: #22a5e5 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #07151b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ba0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #116690 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #1c546c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #22a5e5;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1c546c;
  border-color: #1c546c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1c546c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3ba1cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4ac6ee;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #1c546c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #1c546c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1c546c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1c546c;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1c546c;
  border-bottom-color: #1c546c;
}
.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: #1c546c !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: #ff2121 !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='%231c546c' %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-U4R0AzUSfY {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-U4R0AzUSfY H1 {
  color: #ffffff;
}
.cid-U4R0AzUSfY .mbr-text,
.cid-U4R0AzUSfY .mbr-section-btn {
  color: #ffffff;
}
.cid-U4R0AzUSfY H3 {
  color: #ffffff;
}
.cid-uD70hvKWCO.popup-builder {
  background-color: #ffffff;
}
.cid-uD70hvKWCO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uD70hvKWCO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uD70hvKWCO .modal-content,
.cid-uD70hvKWCO .modal-dialog {
  height: auto;
}
.cid-uD70hvKWCO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uD70hvKWCO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uD70hvKWCO .form-wrapper .mbr-form .form-group,
  .cid-uD70hvKWCO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uD70hvKWCO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uD70hvKWCO .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uD70hvKWCO .mbr-text {
  text-align: center;
}
.cid-uD70hvKWCO .pt-0 {
  padding-top: 0 !important;
}
.cid-uD70hvKWCO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uD70hvKWCO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uD70hvKWCO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uD70hvKWCO .modal-open {
  overflow: hidden;
}
.cid-uD70hvKWCO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uD70hvKWCO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uD70hvKWCO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uD70hvKWCO .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uD70hvKWCO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uD70hvKWCO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uD70hvKWCO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uD70hvKWCO .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-uD70hvKWCO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uD70hvKWCO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uD70hvKWCO .modal-backdrop.fade {
  opacity: 0;
}
.cid-uD70hvKWCO .modal-backdrop.show {
  opacity: .5;
}
.cid-uD70hvKWCO .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uD70hvKWCO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uD70hvKWCO .modal-header {
    padding: 1rem;
  }
}
.cid-uD70hvKWCO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uD70hvKWCO .modal-header .close svg {
  fill: #353535;
}
.cid-uD70hvKWCO .modal-header .close:hover {
  opacity: 1;
}
.cid-uD70hvKWCO .modal-header .close:focus {
  outline: none;
}
.cid-uD70hvKWCO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uD70hvKWCO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uD70hvKWCO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD70hvKWCO .modal-body {
    padding: 1rem;
  }
}
.cid-uD70hvKWCO .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uD70hvKWCO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD70hvKWCO .modal-footer {
    padding: 1rem;
  }
}
.cid-uD70hvKWCO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uD70hvKWCO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uD70hvKWCO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uD70hvKWCO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uD70hvKWCO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uD70hvKWCO .modal-lg,
  .cid-uD70hvKWCO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uD70hvKWCO .modal-xl {
    max-width: 1140px;
  }
}
.cid-uD70hvKWCO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uD70hvKWCO .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uD70hvKWCO .form-group {
  margin-bottom: 1rem;
}
.cid-uD70hvKWCO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uD70hvKWCO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uD70hvKWCO .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uD70hvKWCO .mbr-section-btn {
  margin: 0;
}
.cid-uD70hvKWCO .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGQ0Ih4HJb #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: rgba(28, 84, 108, 0.5);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  z-index: 100;
  border-style: solid;
  border-width: 2px;
  border-color: #ffffff;
  -webkit-box-shadow: 0 10px 15px 10px #3c3c3c;
  -moz-box-shadow: 0 10px 15px 10px #3c3c3c;
  box-shadow: 0 10px 15px 10px #3c3c3c;
}
@media (max-width: 768px) {
  .cid-uGQ0Ih4HJb #dentauraBttB {
    right: 50px;
    bottom: 40px;
  }
}
@media (min-width: 769px) {
  .cid-uGQ0Ih4HJb #dentauraBttB {
    right: 50px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-uGQ0Ih4HJb #dentauraBttB {
    right: 50px;
    bottom: 40px;
  }
}
.cid-uGQ0Ih4HJb #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -22px;
  margin-top: -22px;
  height: 50px;
  width: 50px;
  background-image: url("../../../assets/images/bttb-dentaura-white.png");
  background-repeat: no-repeat;
  background-position: -58px -4px;
  opacity: 1;
}
.cid-uGQ0Ih4HJb #dentauraBttB:hover {
  background-color: #1c546c;
}
.cid-uGQ0Ih4HJb .hidden {
  display: none;
}
.cid-uH7xaU9VaT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1c546c;
  overflow: hidden;
}
.cid-tOtmBNlBTq {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-tOtmBNlBTq H1 {
  color: #ffffff;
}
.cid-tOtmBNlBTq .mbr-text,
.cid-tOtmBNlBTq .mbr-section-btn {
  color: #ffffff;
}
.cid-tOtmBNlBTq H3 {
  color: #ffffff;
}
.cid-uD70hvLsPR.popup-builder {
  background-color: #ffffff;
}
.cid-uD70hvLsPR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uD70hvLsPR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uD70hvLsPR .modal-content,
.cid-uD70hvLsPR .modal-dialog {
  height: auto;
}
.cid-uD70hvLsPR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uD70hvLsPR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uD70hvLsPR .form-wrapper .mbr-form .form-group,
  .cid-uD70hvLsPR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uD70hvLsPR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uD70hvLsPR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uD70hvLsPR .mbr-text {
  text-align: center;
}
.cid-uD70hvLsPR .pt-0 {
  padding-top: 0 !important;
}
.cid-uD70hvLsPR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uD70hvLsPR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uD70hvLsPR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uD70hvLsPR .modal-open {
  overflow: hidden;
}
.cid-uD70hvLsPR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uD70hvLsPR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uD70hvLsPR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uD70hvLsPR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uD70hvLsPR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uD70hvLsPR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uD70hvLsPR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uD70hvLsPR .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-uD70hvLsPR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uD70hvLsPR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uD70hvLsPR .modal-backdrop.fade {
  opacity: 0;
}
.cid-uD70hvLsPR .modal-backdrop.show {
  opacity: .5;
}
.cid-uD70hvLsPR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uD70hvLsPR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uD70hvLsPR .modal-header {
    padding: 1rem;
  }
}
.cid-uD70hvLsPR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uD70hvLsPR .modal-header .close svg {
  fill: #353535;
}
.cid-uD70hvLsPR .modal-header .close:hover {
  opacity: 1;
}
.cid-uD70hvLsPR .modal-header .close:focus {
  outline: none;
}
.cid-uD70hvLsPR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uD70hvLsPR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uD70hvLsPR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD70hvLsPR .modal-body {
    padding: 1rem;
  }
}
.cid-uD70hvLsPR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uD70hvLsPR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD70hvLsPR .modal-footer {
    padding: 1rem;
  }
}
.cid-uD70hvLsPR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uD70hvLsPR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uD70hvLsPR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uD70hvLsPR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uD70hvLsPR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uD70hvLsPR .modal-lg,
  .cid-uD70hvLsPR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uD70hvLsPR .modal-xl {
    max-width: 1140px;
  }
}
.cid-uD70hvLsPR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uD70hvLsPR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uD70hvLsPR .form-group {
  margin-bottom: 1rem;
}
.cid-uD70hvLsPR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uD70hvLsPR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uD70hvLsPR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uD70hvLsPR .mbr-section-btn {
  margin: 0;
}
.cid-uD70hvLsPR .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGQ0Ih4HJb #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: rgba(28, 84, 108, 0.5);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  z-index: 100;
  border-style: solid;
  border-width: 2px;
  border-color: #ffffff;
  -webkit-box-shadow: 0 10px 15px 10px #3c3c3c;
  -moz-box-shadow: 0 10px 15px 10px #3c3c3c;
  box-shadow: 0 10px 15px 10px #3c3c3c;
}
@media (max-width: 768px) {
  .cid-uGQ0Ih4HJb #dentauraBttB {
    right: 50px;
    bottom: 40px;
  }
}
@media (min-width: 769px) {
  .cid-uGQ0Ih4HJb #dentauraBttB {
    right: 50px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-uGQ0Ih4HJb #dentauraBttB {
    right: 50px;
    bottom: 40px;
  }
}
.cid-uGQ0Ih4HJb #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -22px;
  margin-top: -22px;
  height: 50px;
  width: 50px;
  background-image: url("../../../assets/images/bttb-dentaura-white.png");
  background-repeat: no-repeat;
  background-position: -58px -4px;
  opacity: 1;
}
.cid-uGQ0Ih4HJb #dentauraBttB:hover {
  background-color: #1c546c;
}
.cid-uGQ0Ih4HJb .hidden {
  display: none;
}
.cid-uH7xaU9VaT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1c546c;
  overflow: hidden;
}
.cid-4IJ2ppld6x p {
  color: #ecf0f1;
  line-height: 28px;
  font-size: 15px;
  padding-top: 50px;
}
.cid-4IJ2ppld6x DIV {
  color: #ffffff;
}
.cid-4IJ2ppld6x H10 {
  color: #767676;
}
.cid-4IJ2ppld6x .hidden {
  display: none;
}
.cid-4IJ2ppld6x .sidebar {
  z-index: 1001;
  background-color: #005470;
  opacity: 0.2;
  position: fixed;
  transition: width 0.2s ease;
}
.cid-4IJ2ppld6x .sidebar nav {
  height: 100%;
}
.cid-4IJ2ppld6x .sidebar .sidebar__nav {
  display: flex;
  height: 100%;
  list-style: none;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding: 0;
}
.cid-4IJ2ppld6x .sidebar .sidebar__nav .sidebar__nav__link {
  align-items: center;
  color: #232323;
  display: flex;
  padding-left: 20px;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.cid-4IJ2ppld6x .sidebar .sidebar__nav .sidebar__nav__link:hover {
  background-color: #879a9f;
  color: #ffffff;
}
.cid-4IJ2ppld6x .sidebar .sidebar__nav .sidebar__nav__text {
  display: none;
  margin-left: 10px;
  margin-right: auto;
  white-space: nowrap;
  font-size: 60px;
}
.cid-4IJ2ppld6x .sidebar .sidebar__nav i {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 572px) {
  .cid-4IJ2ppld6x .sidebar {
    bottom: 0;
    width: 100%;
  }
  .cid-4IJ2ppld6x .sidebar .sidebar__nav {
    justify-content: center;
  }
  .cid-4IJ2ppld6x .sidebar .sidebar__nav .sidebar__nav__link {
    height: 100%;
    padding: 0.75em;
  }
  .cid-4IJ2ppld6x .sidebar .sidebar__nav i {
    font-size: 2rem;
  }
}
@media (min-width: 572px) {
  .cid-4IJ2ppld6x .sidebar {
    height: 100vh;
    left: 0;
    width: var(--sidebar-width);
  }
  .cid-4IJ2ppld6x .sidebar:hover {
    width: 47rem;
    opacity: 1;
  }
  .cid-4IJ2ppld6x .sidebar .sidebar__nav {
    flex-direction: column;
  }
  .cid-4IJ2ppld6x .sidebar .sidebar__nav .sidebar__nav__link {
    padding: 1em;
  }
  .cid-4IJ2ppld6x .sidebar:hover .sidebar__nav .sidebar__nav__text {
    display: inline;
  }
  .cid-4IJ2ppld6x .sidebar .sidebar__nav i {
    font-size: 2.5rem;
  }
}
@media (max-height: 434px) {
  .cid-4IJ2ppld6x .sidebar {
    overflow-y: scroll;
  }
}
.cid-4IJ2ppld6x :root {
  --sidebar-width: 4.5em;
}
.cid-4IJ2ppld6x SPAN {
  color: #ffffff;
  text-align: center;
  font-family: ;
  font-size: 60px;
  font-weight: bolder;
}
.cid-4IJ2ppld6x H1 {
  color: #cccccc;
}
.cid-uGk5uPpSOz {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/slider-sito-bianco-biovitae-2-2000x1000.jpg");
}
.cid-uGk5uPpSOz p {
  margin-top: 0;
  margin-bottom: 0;
}
.cid-uGk5uPpSOz .card-box {
  z-index: 1;
  position: relative;
  background-color: rgba(35, 35, 35, 0.3);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  pointer-events: none;
}
.cid-uGk5uPpSOz .card-box .mbr-text {
  pointer-events: all;
}
.cid-uGk5uPpSOz img {
  width: 320px;
  margin: 0px;
}
.cid-uGk5uPpSOz .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
  margin-left: -15px;
  margin-right: -15px;
}
.cid-uGk5uPpSOz .card-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.cid-uGk5uPpSOz .card-img img {
  z-index: -1;
  height: 100%;
  min-width: 100%;
  width: auto;
}
.cid-uGk5uPpSOz .card-wrap {
  position: relative;
}
.cid-uGk5uPpSOz .card {
  padding-bottom: 2rem;
}
.cid-uGk5uPpSOz .mbr-section-title {
  color: #fefefe;
  text-align: left;
}
.cid-uGk5uPpSOz H4 {
  text-align: left;
}
.cid-uGk5uPpSOz P {
  text-align: left;
  line-height: .5em;
  margin-top: 90px;
  margin-bottom: 0px;
}
.cid-uGk5uPpSOz .separator {
  background-color: #efefef;
  color: #efefef;
  align: left;
  height: 2px;
  max-width: 265px;
  margin-left: 0px;
  margin-right: auto;
}
.cid-uGk5uPpSOz .separator2 {
  background-color: #efefef;
  color: #efefef;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: 0px;
  margin-right: auto;
}
.cid-uEltRDvBXE {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/slider-sito-bianco-biovitae-2-2000x1000.jpg");
}
.cid-uEltRDvBXE p {
  margin-top: 0;
  margin-bottom: 0;
}
.cid-uEltRDvBXE .card-box {
  z-index: 1;
  position: relative;
  background-color: rgba(35, 35, 35, 0.3);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  pointer-events: none;
}
.cid-uEltRDvBXE .card-box .card-title {
  pointer-events: all;
}
.cid-uEltRDvBXE .card-box .mbr-text {
  pointer-events: all;
}
.cid-uEltRDvBXE img {
  width: 320px;
  margin: auto;
}
.cid-uEltRDvBXE .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
  margin-left: -15px;
  margin-right: -15px;
}
.cid-uEltRDvBXE .card-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.cid-uEltRDvBXE .card-img img {
  z-index: -1;
  height: 100%;
  min-width: 100%;
  width: auto;
}
.cid-uEltRDvBXE .card-wrap {
  position: relative;
}
.cid-uEltRDvBXE .card {
  padding-bottom: 2rem;
}
.cid-uEltRDvBXE .mbr-section-title {
  color: #fefefe;
  text-align: center;
}
.cid-uEltRDvBXE H4 {
  text-align: left;
}
.cid-uEltRDvBXE P {
  text-align: left;
  line-height: .5em;
}
.cid-uEltRDvBXE .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uEltRDvBXE .separator2 {
  background-color: #ffffff;
  color: #ffffff;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: 0px;
  margin-right: auto;
}
.cid-ulhOIdjLRa {
  display: flex;
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/slider-sito-bianco-biovitae-2-2000x793.jpg");
}
.cid-ulhOIdjLRa .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-ulhOIdjLRa .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-ulhOIdjLRa {
    align-items: flex-end;
  }
  .cid-ulhOIdjLRa .row {
    justify-content: flex-start;
  }
  .cid-ulhOIdjLRa .content-wrap {
    width: 67%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ulhOIdjLRa .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ulhOIdjLRa {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ulhOIdjLRa .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ulhOIdjLRa .content-wrap {
    width: 100%;
  }
}
.cid-uEfaU1J828 {
  padding-top: 210px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-uEfaU1J828 H2 {
  color: #ffffff;
  text-align: center;
}
.cid-uEfaU1J828 h1 {
  background: linear-gradient(to left, #ff2121, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uEfaU1J828 section {
  align-items: flex-start !important;
}
.cid-uEfaU1J828 .mbr-text,
.cid-uEfaU1J828 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uEfaU1J828 .mbr-overlay {
  background-color: transparent !important;
  background: linear-gradient(to right, #000000, transparent);
}
.cid-uEfaU1J828 .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uEfaU1J828 DIV {
  text-align: center;
}
.cid-uJ98FzMBfj {
  padding-top: 30px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-uJ98FzMBfj p {
  margin-bottom: 0;
}
.cid-uJ98FzMBfj .card-box {
  z-index: 1;
  position: relative;
  background-color: rgba(28, 84, 108, 0.4);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  pointer-events: none;
}
.cid-uJ98FzMBfj .card-box .card-title {
  pointer-events: all;
  line-height: 1.1em;
}
.cid-uJ98FzMBfj .card-box .mbr-text {
  pointer-events: all;
  line-height: 1.3em;
}
.cid-uJ98FzMBfj .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
  margin-left: -15px;
  margin-right: -15px;
}
.cid-uJ98FzMBfj .card-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.cid-uJ98FzMBfj .card-img img {
  z-index: -1;
  height: 100%;
  min-width: 100%;
  width: auto;
}
.cid-uJ98FzMBfj .card-wrap {
  position: relative;
}
.cid-uJ98FzMBfj .card {
  padding-bottom: 2rem;
}
.cid-uJ98FzMBfj .mbr-section-title {
  color: #ffffff;
}
.cid-uJ98FzMBfj H4 {
  text-align: right;
}
.cid-uJ98FzMBfj H3 {
  color: #333;
  -webkit-text-stroke: 1px #282828;
  text-shadow: 0px 2px 2px #282828;
}
.cid-uJ98FzMBfj P {
  text-align: right;
  color: #fafafa;
}
.cid-uJ98FzMBfj .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uFtht1ADkF #loading-center-preloader {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #353535;
}
.cid-uFtht1ADkF #loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 40%;
}
.cid-uFtht1ADkF .spinner {
  position: relative;
  margin: 0px 0px 0px -60px;
  width: 120px;
  height: 120px;
  text-align: center;
  font-size: 6px;
}
.cid-uFtht1ADkF #dentaura-spinner {
  pointer-events: none;
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #01b64b;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}
.cid-uFtht1ADkF #dentaura-spinner:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e6c63b;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.cid-uFtht1ADkF #dentaura-spinner:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #2299aa;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-uFtht1ADkF .dentaura-logo-preloader {
  position: relative;
  left: 0px;
  top: -90px;
  border-radius: 0%;
  max-width: 120px;
  width: 100%;
}
.cid-uFtht1ADkF H3 {
  color: #ebeff2;
  text-align: center;
  font-size: 14px;
}
.cid-uFtht1ADkF H5 {
  color: #e6c63b;
}
.cid-uFtht1ADkF DIV {
  text-align: center;
}
.cid-uEwOLD3ue4 {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-uEwOLD3ue4 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ff2121;
  background-color: rgba(60, 113, 211, 0.15);
  margin-bottom: 26px;
}
.cid-uEwOLD3ue4 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uEwOLD3ue4 .mbr-section-subtitle {
  color: #2299aa;
}
.cid-uEwOLD3ue4 img {
  width: 120px;
  margin: auto;
}
.cid-uEwOLD3ue4 .card {
  transition: all 200ms ease-in-out;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-uEwOLD3ue4 .card:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-uEwOLD3ue4 .card {
    max-width: 14.28%;
  }
}
.cid-uEwOLD3ue4 .mbr-section-title {
  color: #005470;
  text-align: left;
}
.cid-uEwOLD3ue4 .badge,
.cid-uEwOLD3ue4 .badge_wrap {
  color: #005470;
  text-align: left;
}
.cid-uEwOLD3ue4 .mbr-text,
.cid-uEwOLD3ue4 .mbr-section-btn {
  text-align: center;
  color: #1c546c;
}
.cid-uEwOLD3ue4 .separator {
  background-color: #2299aa;
  color: #2299aa;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: 0;
  margin-right: auto;
}
.cid-uFvW6FkA96 {
  padding-top: 75px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uFvW6FkA96 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ff2121;
  background-color: rgba(60, 113, 211, 0.15);
  margin-bottom: 26px;
}
.cid-uFvW6FkA96 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uFvW6FkA96 .mbr-section-subtitle {
  color: #2299aa;
}
.cid-uFvW6FkA96 img {
  width: 120px;
  margin: auto;
}
.cid-uFvW6FkA96 .card {
  transition: all 200ms ease-in-out;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-uFvW6FkA96 .card:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-uFvW6FkA96 .card {
    max-width: 14.28%;
  }
}
.cid-uFvW6FkA96 .mbr-section-title {
  color: #005470;
}
.cid-uFvW6FkA96 .badge,
.cid-uFvW6FkA96 .badge_wrap {
  color: #1c546c;
}
.cid-uFvW6FkA96 .mbr-text,
.cid-uFvW6FkA96 .mbr-section-btn {
  text-align: center;
  color: #1c546c;
}
.cid-uFvW6FkA96 .separator {
  background-color: #2299aa;
  color: #2299aa;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uEwsFhdRvl {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-uEwsFhdRvl .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ff2121;
  background-color: rgba(60, 113, 211, 0.15);
  margin-bottom: 26px;
}
.cid-uEwsFhdRvl .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uEwsFhdRvl .mbr-section-subtitle {
  color: #2299aa;
}
.cid-uEwsFhdRvl img {
  width: 120px;
  margin: auto;
}
.cid-uEwsFhdRvl .card {
  transition: all 200ms ease-in-out;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.8;
  margin-bottom: 0rem;
}
.cid-uEwsFhdRvl .card:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-uEwsFhdRvl .card {
    max-width: 14.28%;
  }
}
.cid-uEwsFhdRvl .mbr-section-title {
  color: #000000;
  text-align: left;
  font-size: 12px;
}
.cid-uEwsFhdRvl .badge,
.cid-uEwsFhdRvl .badge_wrap {
  color: #2299aa;
}
.cid-uEwsFhdRvl .mbr-text,
.cid-uEwsFhdRvl .mbr-section-btn {
  text-align: center;
  color: #1c546c;
}
.cid-uEwsFhdRvl .mbr-section-title DIV {
  text-align: left;
}
.cid-uEyiqHNjgL {
  background-image: url("../../../assets/images/biovitae-prodotti-2-2000x1333.jpg");
}
.cid-uEyiqHNjgL .container-fluid {
  padding: 0 3rem;
}
.cid-uEyiqHNjgL .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-uEyiqHNjgL .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-uEyiqHNjgL .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uEyiqHNjgL .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uEyiqHNjgL .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uEyiqHNjgL a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uEyiqHNjgL a.close:hover {
  color: #ffffff;
}
.cid-uEyiqHNjgL svg {
  transition: all 0.5s ease-in;
}
.cid-uEyiqHNjgL svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-uEyiqHNjgL svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-uEyiqHNjgL svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-uEyiqHNjgL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uEyiqHNjgL H1 {
  color: #ffffff;
}
.cid-uEyiqHNjgL .mbr-text,
.cid-uEyiqHNjgL .mbr-section-btn {
  color: #ffffff;
}
.cid-uEyiqHNjgL .icon-description,
.cid-uEyiqHNjgL .mbr-media {
  color: #d3d3d3;
}
.cid-uGHc5SVXpi {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGHc5SVXpi img,
.cid-uGHc5SVXpi .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uGHc5SVXpi .item:focus,
.cid-uGHc5SVXpi span:focus {
  outline: none;
}
.cid-uGHc5SVXpi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGHc5SVXpi .item-wrapper {
  position: relative;
  border-radius: 15px;
  background: #005470;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGHc5SVXpi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGHc5SVXpi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGHc5SVXpi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGHc5SVXpi .mbr-section-title {
  color: #1c546c;
}
.cid-uGHc5SVXpi .mbr-text,
.cid-uGHc5SVXpi .mbr-section-btn {
  text-align: center;
  color: #98dee8;
}
.cid-uGHc5SVXpi .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-uGHc5SVXpi .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uGHc5SVXpi .mbr-section-subtitle {
  color: #005470;
}
.cid-uGHc5SVXpi .underline .line {
  width: 215px;
  height: 2px;
  background: #2299aa;
  display: inline-block;
}
.cid-uGHlpfOAPJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGHlpfOAPJ img,
.cid-uGHlpfOAPJ .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uGHlpfOAPJ .item:focus,
.cid-uGHlpfOAPJ span:focus {
  outline: none;
}
.cid-uGHlpfOAPJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGHlpfOAPJ .item-wrapper {
  position: relative;
  border-radius: 15px;
  background: #005470;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGHlpfOAPJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGHlpfOAPJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGHlpfOAPJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGHlpfOAPJ .mbr-section-title {
  color: #005470;
}
.cid-uGHlpfOAPJ .mbr-text,
.cid-uGHlpfOAPJ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uGHlpfOAPJ .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-uGHlpfOAPJ .item-subtitle {
  text-align: center;
  color: #fafafa;
}
.cid-uGHlpfOAPJ .mbr-section-subtitle {
  color: #005470;
}
.cid-uGHlpfOAPJ .underline .line {
  width: 215px;
  height: 2px;
  background: #2299aa;
  display: inline-block;
}
.cid-uEfDOBDAJy {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uEfDOBDAJy .wrapper {
  overflow: hidden;
}
.cid-uEfDOBDAJy .wrapper img {
  transition: all .5s;
}
.cid-uEfDOBDAJy .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uEfDOBDAJy .underline .line {
  width: 215px;
  height: 2px;
  background: #2299aa;
  display: inline-block;
}
.cid-uEfDOBDAJy .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 15rem;
  border-radius: 15px;
}
.cid-uEfDOBDAJy .wrapper .mbr-overlay {
  background: #232323;
  opacity: 0.3;
  border-radius: 15px;
  z-index: 1;
}
.cid-uEfDOBDAJy .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px;
}
.cid-uEfDOBDAJy .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uEfDOBDAJy .popup-btn .mbr-overlay {
  border-radius: 15px;
}
@media (max-width: 991px) {
  .cid-uEfDOBDAJy .first-row-card {
    padding-bottom: 2rem;
  }
}
.cid-uEfDOBDAJy .card-title {
  color: #ffffff;
}
.cid-uEfDOBDAJy .main-title {
  color: #1c546c;
}
.cid-uEfDOBDAJy .main-subtitle,
.cid-uEfDOBDAJy .underline {
  color: #005470;
}
.cid-uEfDOBDAJy .card-subtitle {
  color: #ffffff;
}
.cid-uEfECLLBTl {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uEfECLLBTl .wrapper {
  overflow: hidden;
}
.cid-uEfECLLBTl .wrapper img {
  transition: all .5s;
}
.cid-uEfECLLBTl .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uEfECLLBTl .underline .line {
  width: 2rem;
  height: 1px;
  background: #767676;
  display: inline-block;
}
.cid-uEfECLLBTl .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 15rem;
  border-radius: 15px;
}
.cid-uEfECLLBTl .wrapper .mbr-overlay {
  background: #232323;
  opacity: 0.3;
  border-radius: 15px;
  z-index: 1;
}
.cid-uEfECLLBTl .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px;
}
.cid-uEfECLLBTl .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-uEfECLLBTl .popup-btn .mbr-overlay {
  border-radius: 15px;
}
@media (max-width: 991px) {
  .cid-uEfECLLBTl .first-row-card {
    padding-bottom: 2rem;
  }
}
.cid-uEfECLLBTl .card-title {
  color: #ffffff;
}
.cid-uEfECLLBTl .main-title {
  color: #073b4c;
}
.cid-uEfECLLBTl .main-subtitle,
.cid-uEfECLLBTl .underline {
  color: #073b4c;
}
.cid-uEfECLLBTl .card-subtitle {
  color: #e6c63b;
}
.cid-uGz3UkQV33 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #bbbbbb;
}
.cid-uGz3UkQV33 .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uGz3UkQV33 .modal-body .close {
  background: #1b1b1b;
}
.cid-uGz3UkQV33 .modal-body .close span {
  font-style: normal;
}
.cid-uGz3UkQV33 .carousel-inner > .active,
.cid-uGz3UkQV33 .carousel-inner > .next,
.cid-uGz3UkQV33 .carousel-inner > .prev {
  display: flex;
}
.cid-uGz3UkQV33 .carousel-control .icon-next,
.cid-uGz3UkQV33 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uGz3UkQV33 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGz3UkQV33 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uGz3UkQV33 .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-uGz3UkQV33 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uGz3UkQV33 .boxed-slider > div {
  position: relative;
}
.cid-uGz3UkQV33 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uGz3UkQV33 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uGz3UkQV33 .mbr-table-cell {
  padding: 0;
}
.cid-uGz3UkQV33 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uGz3UkQV33 .carousel-caption {
  top: 65%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uGz3UkQV33 .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-uGz3UkQV33 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uGz3UkQV33 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uGz3UkQV33 .carousel-item.active.right,
.cid-uGz3UkQV33 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uGz3UkQV33 .carousel-item.active.left,
.cid-uGz3UkQV33 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uGz3UkQV33 .carousel-item.active,
.cid-uGz3UkQV33 .carousel-item.next.left,
.cid-uGz3UkQV33 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uGz3UkQV33 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-uGz3UkQV33 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uGz3UkQV33 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uGz3UkQV33 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-uGz3UkQV33 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uGz3UkQV33 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uGz3UkQV33 .mbr-slider .carousel-indicators li {
  max-width: 19px;
  width: 19px;
  height: 19px;
  max-height: 19px;
  margin: 3px;
  background-color: white;
  border: none;
  border-radius: 0;
  opacity: .5;
  transition: all .3s;
}
.cid-uGz3UkQV33 .mbr-slider .carousel-indicators li.active,
.cid-uGz3UkQV33 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uGz3UkQV33 .mbr-slider .carousel-indicators li::after,
.cid-uGz3UkQV33 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uGz3UkQV33 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uGz3UkQV33 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uGz3UkQV33 .mbr-slider > .container img {
  width: 100%;
}
.cid-uGz3UkQV33 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uGz3UkQV33 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 767px) {
  .cid-uGz3UkQV33 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uGz3UkQV33 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uGz3UkQV33 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uGz3UkQV33 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uGz3UkQV33 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uGz3UkQV33 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uGz3UkQV33 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uGz3UkQV33 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uGz3UkQV33 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uGz3UkQV33 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uGz3UkQV33 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uGz3UkQV33 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uGz3UkQV33 .carousel-inner {
  height: 100%;
}
.cid-uGz3UkQV33 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uGz3UkQV33 .image_wrapper {
  height: 510px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uGz3UkQV33 .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-uGz3UkQV33 .carousel-item .container-slide {
  text-align: center;
}
.cid-uGz3UkQV33 .content-slider-wrap {
  width: 100%;
}
.cid-uGz3UkQV33 .carousel-control-prev {
  bottom: 2px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-uGz3UkQV33 .carousel-control-next {
  bottom: 54px!important;
  left: 0px!important;
  top: auto!important;
  margin-left: 2rem!important;
  background-color: white!important;
  opacity: 1!important;
  color: black!important;
  border-radius: 0!important;
}
.cid-uGz3UkQV33 .carousel-control {
  margin-left: 2px!important;
}
.cid-uGz3UkQV33 H2 {
  text-align: left;
  color: #ffffff;
}
.cid-uGz3UkQV33 P {
  text-align: left;
}
.cid-uH7FfufGcP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uH7FfufGcP .mbr-section-title {
  color: #005470;
}
.cid-uH7FfufGcP .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-uH7FfufGcP .mbr-section-subtitle {
  color: #005470;
  text-align: center;
}
.cid-uH7FfufGcP .mbr-text {
  color: #1c546c;
  text-align: left;
}
.cid-uH7FfufGcP .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uH7FfufGcP .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uH7FfufGcP .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-uH7FfufGcP .card-wrapper {
    flex-direction: column;
  }
  .cid-uH7FfufGcP .card-box {
    padding: 2rem 1rem;
  }
  .cid-uH7FfufGcP .card-box,
  .cid-uH7FfufGcP .img-wrapper {
    width: 100%;
  }
  .cid-uH7FfufGcP .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-uH7FfufGcP * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-uH7FfufGcP .card {
    margin-bottom: 2rem;
  }
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .card-title,
.cid-uH7FfufGcP .card-box DIV {
  text-align: center;
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .card-title,
.cid-uH7FfufGcP .card-box {
  color: #1c546c;
}
.cid-uH7FfufGcP .separator {
  background-color: #1c546c;
  color: #1c546c;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: auto;
  margin-right: auto;
}
.cid-uH7FfufGcP .card .card-wrapper .card-box .mbr-text,
.cid-uH7FfufGcP .link-wrap {
  color: #1c546c;
}
.cid-uEygLHWJMb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/biovitae-prodotti-1920x819.jpg");
}
.cid-uEygLHWJMb .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-uEygLHWJMb .mbr-section-title,
.cid-uEygLHWJMb .mbr-section-subtitle {
  color: #232323;
}
.cid-uEygLHWJMb .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-uEygLHWJMb .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-uEygLHWJMb .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-uEygLHWJMb .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uEygLHWJMb .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-uEygLHWJMb .mbr-section-title {
  text-align: left;
  color: #1c546c;
}
.cid-uEygLHWJMb .mbr-section-subtitle {
  text-align: left;
  color: #1c546c;
}
.cid-uEygLHWJMb .separator {
  background-color: #1c546c;
  color: #1c546c;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: 0px;
  margin-right: auto;
}
.cid-uEygLHWJMb .mbr-text,
.cid-uEygLHWJMb .mbr-section-btn {
  color: #1c546c;
}
.cid-uEkyKm8G43 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/sani-cont-2-2000x1121.jpg");
}
.cid-uEkyKm8G43 .card-wrapper {
  background: #1c546c;
  border-radius: 4px;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .cid-uEkyKm8G43 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uEkyKm8G43 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEkyKm8G43 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uEkyKm8G43 .card-title {
  color: #ffffff;
}
.cid-uEkyKm8G43 .mbr-text,
.cid-uEkyKm8G43 .mbr-section-btn {
  color: #ffffff;
}
.cid-uEkyKm8G43 .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: left;
  height: 2px;
  max-width: 215px;
  margin-left: auto;
  margin-right: auto;
}
.cid-EjEbHeFnbI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #bbbbbb;
}
.cid-EjEbHeFnbI .mbr-section-subtitle {
  color: #767676;
  text-align: center;
}
.cid-EjEbHeFnbI .container2 {
  height: 73.5vw;
  margin: 1vw auto;
  max-height: 271px;
  max-width: 271px;
  overflow: hidden;
  width: 98vw;
}
.cid-EjEbHeFnbI .container2 figure {
  background-image: url("../../../assets/images/dopo-1200x1200.jpg");
  background-size: cover;
  font-size: 0;
  height: 100%;
  margin: 0;
  position: relative;
  width: 100%;
}
.cid-EjEbHeFnbI #compare {
  background-image: url("../../../assets/images/prima-1200x1200.jpg");
  background-size: cover;
  bottom: 0;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 10px 0 15px -13px #000000;
  height: 100%;
  max-width: 98.6%;
  min-width: 0.6%;
  overflow: visible;
  position: absolute;
  width: 50%;
  animation: first 2s 1 normal ease-in-out 0.1s;
  -webkit-animation: first 2s 1 normal ease-in-out 0.1s;
}
.cid-EjEbHeFnbI input#slider {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  cursor: col-resize;
  height: 100vw;
  left: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  top: -100vw;
  width: 100%;
}
.cid-EjEbHeFnbI input#slider::-moz-range-track {
  background: transparent;
}
.cid-EjEbHeFnbI input#slider::-ms-track {
  border: none;
  background-color: transparent;
  height: 100vw;
  left: 0;
  outline: none;
  position: relative;
  top: -100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: col-resize;
  color: transparent;
}
.cid-EjEbHeFnbI input#slider::-ms-fill-lower {
  background-color: transparent;
}
.cid-EjEbHeFnbI input#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-EjEbHeFnbI input#slider::-moz-range-thumb {
  -moz-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-EjEbHeFnbI input#slider::-ms-thumb {
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-EjEbHeFnbI input#slider::-ms-tooltip {
  display: none;
}
.cid-EjEbHeFnbI #compare::before {
  background: url("https://www.unsitepourtous.be/mobi/comparision.png") no-repeat scroll 0 center transparent;
  background-size: contain;
  content: " ";
  float: right;
  height: 100%;
  margin-right: -34px;
  position: relative;
  top: 0;
  width: 64px;
}
@keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
@-webkit-keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
.cid-EjEbHeFnbI H2 {
  text-align: center;
}
.cid-kLb4Syw5Yl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-kLb4Syw5Yl .table .name {
  padding-top: 24px;
}
.cid-kLb4Syw5Yl .mbr-section-subtitle {
  color: #7cb5b9;
}
.cid-kLb4Syw5Yl .container-table {
  margin: 0 auto;
}
.cid-kLb4Syw5Yl .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-kLb4Syw5Yl .dataTables_wrapper {
  display: block;
}
.cid-kLb4Syw5Yl .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-kLb4Syw5Yl .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-kLb4Syw5Yl .table .thead-light th {
  background-color: #1c546c;
  border-color: #1c546c;
  color: #ebeff2;
}
.cid-kLb4Syw5Yl .table tr:hover {
  background-color: #72dfe9;
  border-top: #1c546c 5px double;
  border-bottom: #1c546c 5px double;
}
.cid-kLb4Syw5Yl table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #ebeff2;
  margin-bottom: 0;
}
.cid-kLb4Syw5Yl table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-kLb4Syw5Yl table th:hover {
  background: #ebeff2;
  color: #000000;
}
.cid-kLb4Syw5Yl table td {
  border-top: 5px solid  #ffffff;
  border-bottom: 5px solid #ffffff;
}
.cid-kLb4Syw5Yl table.table {
  background: #ebeff2;
}
.cid-kLb4Syw5Yl .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-kLb4Syw5Yl .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-kLb4Syw5Yl .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-kLb4Syw5Yl .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-kLb4Syw5Yl .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-kLb4Syw5Yl .dataTables_filter {
    text-align: center;
  }
  .cid-kLb4Syw5Yl .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-kLb4Syw5Yl .name head-item {
  color: #ebeff2;
  text-align: center;
}
.cid-kLb4Syw5Yl .img-logo img {
  height: 1.5rem;
  width: auto;
}
.cid-kLb4Syw5Yl .body-item {
  text-align: left;
  color: #005470;
}
.cid-kLb4Syw5Yl .mbr-section-title {
  color: #005470;
}
.cid-uIiJbdQzs3 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIiJbdQzs3 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #1c546c;
  margin-left: 1rem;
}
.cid-uIiJbdQzs3 .panel-group {
  border: none;
}
.cid-uIiJbdQzs3 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uIiJbdQzs3 .panel-body {
  padding: 1rem 2rem;
}
.cid-uIiJbdQzs3 .header-wrapper {
  position: relative;
}
.cid-uIiJbdQzs3 .card-header {
  background: transparent;
  border: 2px solid transparent;
  position: relative;
  transition: all 0.3s;
  border-radius: 30px!important;
  padding: 1rem 2rem;
  z-index: 2;
}
.cid-uIiJbdQzs3 span {
  transition: all 0.3s;
  color: #1c546c !important;
}
.cid-uIiJbdQzs3 .card {
  overflow: visible;
}
.cid-uIiJbdQzs3 .card:hover .card-header {
  border-color: #1c546c;
}
.cid-uIiJbdQzs3 .card:hover .hover-bg {
  background: #72dfe9;
  right: -8px;
  top: 8px;
}
.cid-uIiJbdQzs3 .card:hover span {
  transform: rotate(-90deg);
}
.cid-uIiJbdQzs3 .hover-bg {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  background: #ebeff2;
  border-radius: 30px!important;
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uIiJbdQzs3 .panel-body {
    padding: 1rem 0rem;
  }
  .cid-uIiJbdQzs3 .card-header {
    padding: 1rem 1rem;
  }
}
.cid-uIiJbdQzs3 H4 {
  color: #7cb5b9;
  text-align: center;
}
.cid-uIiJbdQzs3 .panel-title-edit {
  color: #005470;
}
.cid-uIiJbdQzs3 .panel-text {
  color: #1c546c;
}
.cid-uIiJbdQzs3 H3 {
  color: #1c546c;
  text-align: center;
}
.cid-uIiJbdQzs3 H6 {
  line-height: 1em;
}
.cid-uJqKkuuYua {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ebeff2;
}
@media (max-width: 1199px) {
  .cid-uJqKkuuYua .col-lg-4,
  .cid-uJqKkuuYua .col-lg-8 {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .cid-uJqKkuuYua .text-wrapper {
    text-align: center;
    margin-top: 50px;
  }
}
.cid-uJqKkuuYua .mbr-section-title {
  margin-bottom: 2.3rem;
  color: #1c546c;
}
.cid-uJqKkuuYua .mbr-section-title span {
  position: relative;
}
.cid-uJqKkuuYua .mbr-section-title span svg {
  position: absolute;
  top: -30px;
  left: -33px;
  width: 63px;
  height: 60px;
  transform: rotate(275deg);
}
.cid-uJqKkuuYua .mbr-section-title span svg path {
  fill: #33d5ad;
}
.cid-uJqKkuuYua .mbr-section-btn {
  margin-top: 83.4px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .cid-uJqKkuuYua .mbr-section-btn {
    justify-content: center!important;
  }
}
.cid-uJqKkuuYua .button-container {
  position: relative;
}
.cid-uJqKkuuYua .button-container svg {
  position: absolute;
  top: -65px;
  left: -50px;
  width: 70px;
  height: 75px;
}
@media (max-width: 1199px) {
  .cid-uJqKkuuYua .button-container svg {
    left: 300px;
  }
}
@media (max-width: 991px) {
  .cid-uJqKkuuYua .button-container svg {
    left: 200px;
  }
}
@media (max-width: 767px) {
  .cid-uJqKkuuYua .button-container svg {
    left: 100px;
  }
}
@media (max-width: 519px) {
  .cid-uJqKkuuYua .button-container svg {
    left: 90px;
  }
}
@media (max-width: 460px) {
  .cid-uJqKkuuYua .button-container svg {
    left: 60px;
  }
}
@media (max-width: 359px) {
  .cid-uJqKkuuYua .button-container svg {
    left: 0;
  }
}
.cid-uJqKkuuYua .button-container svg path {
  fill: #33d5ad;
}
.cid-uJqKkuuYua .image-container {
  height: 570px;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uJqKkuuYua .image-container {
    margin-top: 50px;
    justify-content: center;
  }
}
@media (max-width: 359px) {
  .cid-uJqKkuuYua .image-container {
    height: 490px;
  }
}
.cid-uJqKkuuYua .image-inner-container {
  display: grid;
  grid-template-columns: 200px 300px 200px;
  grid-column-gap: 32px;
  margin-top: -150px;
}
@media (max-width: 1399px) {
  .cid-uJqKkuuYua .image-inner-container {
    grid-column-gap: 14px;
  }
}
@media (max-width: 1199px) {
  .cid-uJqKkuuYua .image-inner-container {
    grid-template-columns: 180px 280px 180px;
    grid-column-gap: 28px;
    margin-top: 0;
  }
}
.cid-uJqKkuuYua .tile {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uJqKkuuYua .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uJqKkuuYua .image-wrap {
  border-radius: 15px;
  overflow: hidden;
}
.cid-uJqKkuuYua .image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uJqKkuuYua .col-aside .image-wrap {
  height: 230px;
}
.cid-uJqKkuuYua .col-middle {
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .cid-uJqKkuuYua .col-middle {
    padding-top: 50px;
  }
  .cid-uJqKkuuYua .col-middle .tile:last-child {
    display: none;
  }
}
@media (max-width: 356px) {
  .cid-uJqKkuuYua .col-middle {
    padding-top: 0;
  }
}
.cid-uJqKkuuYua .col-middle .image-wrap {
  height: 170px;
}
.cid-uJqKkuuYua .mbr-description {
  text-align: center;
  color: #1c546c;
}
.cid-uJqKkuuYua .mbr-text {
  color: #1c546c;
}
.cid-uGVBe4MoO1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-uGVBe4MoO1 .showAlerts {
  display: block !important;
}
.cid-uGVBe4MoO1 .rowflexrev {
  display: -webkit-flex;
}
.cid-uGVBe4MoO1 .ws-form-alerts {
  margin-top: 1rem;
}
.cid-uGVBe4MoO1 .title {
  margin-bottom: 2rem;
}
.cid-uGVBe4MoO1 .mbr-section-subtitle {
  color: #1c546c;
}
.cid-uGVBe4MoO1 textarea.form-control {
  min-height: 188px;
}
.cid-uGVBe4MoO1 LABEL {
  color: #232323;
  display: initial;
}
.cid-uGVBe4MoO1 .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uGVBe4MoO1 .mbr-section-labels {
  color: #1c546c;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-uGVBe4MoO1 .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uGVBe4MoO1 .mbr-section-gdpr {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-uGVBe4MoO1 .alert {
  margin-bottom: 0;
}
.cid-uGVBe4MoO1 .alert-success {
  background-color: #70c770;
}
.cid-uGVBe4MoO1 .alert-danger {
  background-color: #ff4a52;
}
.cid-uGVBe4MoO1 .btn {
  display: inline-flex;
}
.cid-uGVBe4MoO1 .hidden {
  display: none;
}
.cid-uGVBe4MoO1 .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-uGVBe4MoO1 .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-uGVBe4MoO1 H2 {
  color: #005470;
}
.cid-uH7xaU9VaT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1c546c;
  overflow: hidden;
}
.cid-uGQ0Ih4HJb #dentauraBttB {
  position: fixed;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: rgba(28, 84, 108, 0.5);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  z-index: 100;
  border-style: solid;
  border-width: 2px;
  border-color: #ffffff;
  -webkit-box-shadow: 0 10px 15px 10px #3c3c3c;
  -moz-box-shadow: 0 10px 15px 10px #3c3c3c;
  box-shadow: 0 10px 15px 10px #3c3c3c;
}
@media (max-width: 768px) {
  .cid-uGQ0Ih4HJb #dentauraBttB {
    right: 50px;
    bottom: 40px;
  }
}
@media (min-width: 769px) {
  .cid-uGQ0Ih4HJb #dentauraBttB {
    right: 50px;
    bottom: 40px;
  }
}
@media (min-width: 992px) {
  .cid-uGQ0Ih4HJb #dentauraBttB {
    right: 50px;
    bottom: 40px;
  }
}
.cid-uGQ0Ih4HJb #dentauraBttB span {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: -22px;
  margin-top: -22px;
  height: 50px;
  width: 50px;
  background-image: url("../../../assets/images/bttb-dentaura-white.png");
  background-repeat: no-repeat;
  background-position: -58px -4px;
  opacity: 1;
}
.cid-uGQ0Ih4HJb #dentauraBttB:hover {
  background-color: #1c546c;
}
.cid-uGQ0Ih4HJb .hidden {
  display: none;
}
.cid-uECd74v8FA .icon-bar {
  z-index: 100002;
  right: 0.6%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uECd74v8FA .icon-bar a:hover {
  background-color: #bbbbbb;
  margin-left: -50px;
  width: 100px;
}
.cid-uECd74v8FA .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 10px;
  border-radius: 25px;
}
.cid-uECd74v8FA .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-uECd74v8FA .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-uECd74v8FA .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-uECd74v8FA .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-uECd74v8FA .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-uECd74v8FA .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-uECd74v8FA .custom1 {
  background: #f0ecec;
  color: white;
  width: 50px;
}
.cid-uECd74v8FA .custom2 {
  background: #fafafa;
  color: white;
  width: 50px;
}
.cid-uECd74v8FA .custom3 {
  background: #25d366;
  color: white;
  width: 50px;
}
.cid-uECd74v8FA .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uECd74v8FA .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-uECd74v8FA .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4, #000000);
}
.cid-uECd74v8FA .corner-ribbon.top-zen {
  top: 25px;
  right: -50px;
  left: auto;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: fixed;
}
.cid-uECd74v8FA P {
  color: #232323;
}
.cid-uECd74v8FA DIV {
  color: #ffffff;
}
.cid-uECd74v8FA H10 {
  color: #767676;
}
.cid-uECd74v8FA .hidden {
  display: none;
}
.cid-OT4FCw00OO .hidden {
  display: none;
}
.cid-uEqPhrYpG3.popup-builder {
  background-color: #ffffff;
}
.cid-uEqPhrYpG3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uEqPhrYpG3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uEqPhrYpG3 .modal-content,
.cid-uEqPhrYpG3 .modal-dialog {
  height: auto;
}
.cid-uEqPhrYpG3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uEqPhrYpG3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uEqPhrYpG3 .form-wrapper .mbr-form .form-group,
  .cid-uEqPhrYpG3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uEqPhrYpG3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uEqPhrYpG3 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uEqPhrYpG3 .mbr-text {
  text-align: center;
}
.cid-uEqPhrYpG3 .pt-0 {
  padding-top: 0 !important;
}
.cid-uEqPhrYpG3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uEqPhrYpG3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uEqPhrYpG3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uEqPhrYpG3 .modal-open {
  overflow: hidden;
}
.cid-uEqPhrYpG3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uEqPhrYpG3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uEqPhrYpG3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uEqPhrYpG3 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uEqPhrYpG3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uEqPhrYpG3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uEqPhrYpG3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uEqPhrYpG3 .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-uEqPhrYpG3 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uEqPhrYpG3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uEqPhrYpG3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uEqPhrYpG3 .modal-backdrop.show {
  opacity: .5;
}
.cid-uEqPhrYpG3 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uEqPhrYpG3 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uEqPhrYpG3 .modal-header {
    padding: 1rem;
  }
}
.cid-uEqPhrYpG3 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uEqPhrYpG3 .modal-header .close svg {
  fill: #ffffff;
}
.cid-uEqPhrYpG3 .modal-header .close:hover {
  opacity: 1;
}
.cid-uEqPhrYpG3 .modal-header .close:focus {
  outline: none;
}
.cid-uEqPhrYpG3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uEqPhrYpG3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uEqPhrYpG3 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEqPhrYpG3 .modal-body {
    padding: 1rem;
  }
}
.cid-uEqPhrYpG3 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEqPhrYpG3 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEqPhrYpG3 .modal-footer {
    padding: 1rem;
  }
}
.cid-uEqPhrYpG3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uEqPhrYpG3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uEqPhrYpG3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uEqPhrYpG3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uEqPhrYpG3 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uEqPhrYpG3 .modal-lg,
  .cid-uEqPhrYpG3 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uEqPhrYpG3 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uEqPhrYpG3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uEqPhrYpG3 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uEqPhrYpG3 .form-group {
  margin-bottom: 1rem;
}
.cid-uEqPhrYpG3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uEqPhrYpG3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uEqPhrYpG3 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uEqPhrYpG3 .mbr-section-btn {
  margin: 0;
}
.cid-uEqPhrYpG3 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJeMLNvE38.popup-builder {
  background-color: #ffffff;
}
.cid-uJeMLNvE38.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJeMLNvE38.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJeMLNvE38 .modal-content,
.cid-uJeMLNvE38 .modal-dialog {
  height: auto;
}
.cid-uJeMLNvE38 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJeMLNvE38 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJeMLNvE38 .form-wrapper .mbr-form .form-group,
  .cid-uJeMLNvE38 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJeMLNvE38 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJeMLNvE38 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJeMLNvE38 .mbr-text {
  text-align: center;
}
.cid-uJeMLNvE38 .pt-0 {
  padding-top: 0 !important;
}
.cid-uJeMLNvE38 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJeMLNvE38 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJeMLNvE38 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJeMLNvE38 .modal-open {
  overflow: hidden;
}
.cid-uJeMLNvE38 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJeMLNvE38 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJeMLNvE38 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJeMLNvE38 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJeMLNvE38 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJeMLNvE38 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJeMLNvE38 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJeMLNvE38 .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-uJeMLNvE38 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJeMLNvE38 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJeMLNvE38 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJeMLNvE38 .modal-backdrop.show {
  opacity: .5;
}
.cid-uJeMLNvE38 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJeMLNvE38 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJeMLNvE38 .modal-header {
    padding: 1rem;
  }
}
.cid-uJeMLNvE38 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJeMLNvE38 .modal-header .close svg {
  fill: #ffffff;
}
.cid-uJeMLNvE38 .modal-header .close:hover {
  opacity: 1;
}
.cid-uJeMLNvE38 .modal-header .close:focus {
  outline: none;
}
.cid-uJeMLNvE38 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJeMLNvE38 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJeMLNvE38 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJeMLNvE38 .modal-body {
    padding: 1rem;
  }
}
.cid-uJeMLNvE38 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJeMLNvE38 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJeMLNvE38 .modal-footer {
    padding: 1rem;
  }
}
.cid-uJeMLNvE38 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJeMLNvE38 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJeMLNvE38 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJeMLNvE38 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJeMLNvE38 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJeMLNvE38 .modal-lg,
  .cid-uJeMLNvE38 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJeMLNvE38 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJeMLNvE38 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJeMLNvE38 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJeMLNvE38 .form-group {
  margin-bottom: 1rem;
}
.cid-uJeMLNvE38 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJeMLNvE38 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJeMLNvE38 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJeMLNvE38 .mbr-section-btn {
  margin: 0;
}
.cid-uJeMLNvE38 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uEwRu8q0Yz.popup-builder {
  background-color: #ffffff;
}
.cid-uEwRu8q0Yz.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uEwRu8q0Yz.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uEwRu8q0Yz .modal-content,
.cid-uEwRu8q0Yz .modal-dialog {
  height: auto;
}
.cid-uEwRu8q0Yz .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uEwRu8q0Yz .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uEwRu8q0Yz .form-wrapper .mbr-form .form-group,
  .cid-uEwRu8q0Yz .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uEwRu8q0Yz .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uEwRu8q0Yz .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uEwRu8q0Yz .mbr-text {
  text-align: center;
}
.cid-uEwRu8q0Yz .pt-0 {
  padding-top: 0 !important;
}
.cid-uEwRu8q0Yz .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uEwRu8q0Yz .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uEwRu8q0Yz .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uEwRu8q0Yz .modal-open {
  overflow: hidden;
}
.cid-uEwRu8q0Yz .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uEwRu8q0Yz .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uEwRu8q0Yz .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uEwRu8q0Yz .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uEwRu8q0Yz .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uEwRu8q0Yz .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uEwRu8q0Yz .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uEwRu8q0Yz .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-uEwRu8q0Yz .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uEwRu8q0Yz .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uEwRu8q0Yz .modal-backdrop.fade {
  opacity: 0;
}
.cid-uEwRu8q0Yz .modal-backdrop.show {
  opacity: .5;
}
.cid-uEwRu8q0Yz .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uEwRu8q0Yz .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uEwRu8q0Yz .modal-header {
    padding: 1rem;
  }
}
.cid-uEwRu8q0Yz .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uEwRu8q0Yz .modal-header .close svg {
  fill: #353535;
}
.cid-uEwRu8q0Yz .modal-header .close:hover {
  opacity: 1;
}
.cid-uEwRu8q0Yz .modal-header .close:focus {
  outline: none;
}
.cid-uEwRu8q0Yz .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uEwRu8q0Yz .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uEwRu8q0Yz .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEwRu8q0Yz .modal-body {
    padding: 1rem;
  }
}
.cid-uEwRu8q0Yz .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEwRu8q0Yz .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEwRu8q0Yz .modal-footer {
    padding: 1rem;
  }
}
.cid-uEwRu8q0Yz .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uEwRu8q0Yz .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uEwRu8q0Yz .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uEwRu8q0Yz .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uEwRu8q0Yz .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uEwRu8q0Yz .modal-lg,
  .cid-uEwRu8q0Yz .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uEwRu8q0Yz .modal-xl {
    max-width: 1140px;
  }
}
.cid-uEwRu8q0Yz .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uEwRu8q0Yz .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uEwRu8q0Yz .form-group {
  margin-bottom: 1rem;
}
.cid-uEwRu8q0Yz .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uEwRu8q0Yz .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uEwRu8q0Yz .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uEwRu8q0Yz .mbr-section-btn {
  margin: 0;
}
.cid-uEwRu8q0Yz .mbr-section-btn .btn {
  margin: 0;
}
.cid-uEwSADKvYo.popup-builder {
  background-color: #ffffff;
}
.cid-uEwSADKvYo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uEwSADKvYo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uEwSADKvYo .modal-content,
.cid-uEwSADKvYo .modal-dialog {
  height: auto;
}
.cid-uEwSADKvYo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uEwSADKvYo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uEwSADKvYo .form-wrapper .mbr-form .form-group,
  .cid-uEwSADKvYo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uEwSADKvYo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uEwSADKvYo .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uEwSADKvYo .mbr-text {
  text-align: center;
}
.cid-uEwSADKvYo .pt-0 {
  padding-top: 0 !important;
}
.cid-uEwSADKvYo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uEwSADKvYo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uEwSADKvYo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uEwSADKvYo .modal-open {
  overflow: hidden;
}
.cid-uEwSADKvYo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uEwSADKvYo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uEwSADKvYo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uEwSADKvYo .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uEwSADKvYo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uEwSADKvYo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uEwSADKvYo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uEwSADKvYo .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-uEwSADKvYo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uEwSADKvYo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uEwSADKvYo .modal-backdrop.fade {
  opacity: 0;
}
.cid-uEwSADKvYo .modal-backdrop.show {
  opacity: .5;
}
.cid-uEwSADKvYo .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uEwSADKvYo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uEwSADKvYo .modal-header {
    padding: 1rem;
  }
}
.cid-uEwSADKvYo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uEwSADKvYo .modal-header .close svg {
  fill: #353535;
}
.cid-uEwSADKvYo .modal-header .close:hover {
  opacity: 1;
}
.cid-uEwSADKvYo .modal-header .close:focus {
  outline: none;
}
.cid-uEwSADKvYo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uEwSADKvYo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uEwSADKvYo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEwSADKvYo .modal-body {
    padding: 1rem;
  }
}
.cid-uEwSADKvYo .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEwSADKvYo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEwSADKvYo .modal-footer {
    padding: 1rem;
  }
}
.cid-uEwSADKvYo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uEwSADKvYo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uEwSADKvYo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uEwSADKvYo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uEwSADKvYo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uEwSADKvYo .modal-lg,
  .cid-uEwSADKvYo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uEwSADKvYo .modal-xl {
    max-width: 1140px;
  }
}
.cid-uEwSADKvYo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uEwSADKvYo .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uEwSADKvYo .form-group {
  margin-bottom: 1rem;
}
.cid-uEwSADKvYo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uEwSADKvYo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uEwSADKvYo .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uEwSADKvYo .mbr-section-btn {
  margin: 0;
}
.cid-uEwSADKvYo .mbr-section-btn .btn {
  margin: 0;
}
.cid-uEwT5xmqh9.popup-builder {
  background-color: #ffffff;
}
.cid-uEwT5xmqh9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uEwT5xmqh9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uEwT5xmqh9 .modal-content,
.cid-uEwT5xmqh9 .modal-dialog {
  height: auto;
}
.cid-uEwT5xmqh9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uEwT5xmqh9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uEwT5xmqh9 .form-wrapper .mbr-form .form-group,
  .cid-uEwT5xmqh9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uEwT5xmqh9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uEwT5xmqh9 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uEwT5xmqh9 .mbr-text {
  text-align: center;
}
.cid-uEwT5xmqh9 .pt-0 {
  padding-top: 0 !important;
}
.cid-uEwT5xmqh9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uEwT5xmqh9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uEwT5xmqh9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uEwT5xmqh9 .modal-open {
  overflow: hidden;
}
.cid-uEwT5xmqh9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uEwT5xmqh9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uEwT5xmqh9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uEwT5xmqh9 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uEwT5xmqh9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uEwT5xmqh9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uEwT5xmqh9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uEwT5xmqh9 .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-uEwT5xmqh9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uEwT5xmqh9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uEwT5xmqh9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uEwT5xmqh9 .modal-backdrop.show {
  opacity: .5;
}
.cid-uEwT5xmqh9 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uEwT5xmqh9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uEwT5xmqh9 .modal-header {
    padding: 1rem;
  }
}
.cid-uEwT5xmqh9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uEwT5xmqh9 .modal-header .close svg {
  fill: #353535;
}
.cid-uEwT5xmqh9 .modal-header .close:hover {
  opacity: 1;
}
.cid-uEwT5xmqh9 .modal-header .close:focus {
  outline: none;
}
.cid-uEwT5xmqh9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uEwT5xmqh9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uEwT5xmqh9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEwT5xmqh9 .modal-body {
    padding: 1rem;
  }
}
.cid-uEwT5xmqh9 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEwT5xmqh9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEwT5xmqh9 .modal-footer {
    padding: 1rem;
  }
}
.cid-uEwT5xmqh9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uEwT5xmqh9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uEwT5xmqh9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uEwT5xmqh9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uEwT5xmqh9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uEwT5xmqh9 .modal-lg,
  .cid-uEwT5xmqh9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uEwT5xmqh9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uEwT5xmqh9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uEwT5xmqh9 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uEwT5xmqh9 .form-group {
  margin-bottom: 1rem;
}
.cid-uEwT5xmqh9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uEwT5xmqh9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uEwT5xmqh9 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uEwT5xmqh9 .mbr-section-btn {
  margin: 0;
}
.cid-uEwT5xmqh9 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uEXgJCDK7G.popup-builder {
  background-color: #ffffff;
}
.cid-uEXgJCDK7G.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uEXgJCDK7G.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uEXgJCDK7G .modal-content,
.cid-uEXgJCDK7G .modal-dialog {
  height: auto;
}
.cid-uEXgJCDK7G .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uEXgJCDK7G .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uEXgJCDK7G .form-wrapper .mbr-form .form-group,
  .cid-uEXgJCDK7G .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uEXgJCDK7G .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uEXgJCDK7G .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uEXgJCDK7G .mbr-text {
  text-align: left;
  color: #005470;
}
.cid-uEXgJCDK7G .pt-0 {
  padding-top: 0 !important;
}
.cid-uEXgJCDK7G .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uEXgJCDK7G .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uEXgJCDK7G .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uEXgJCDK7G .modal-open {
  overflow: hidden;
}
.cid-uEXgJCDK7G .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uEXgJCDK7G .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uEXgJCDK7G .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uEXgJCDK7G .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uEXgJCDK7G .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uEXgJCDK7G .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uEXgJCDK7G .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uEXgJCDK7G .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-uEXgJCDK7G .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uEXgJCDK7G .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uEXgJCDK7G .modal-backdrop.fade {
  opacity: 0;
}
.cid-uEXgJCDK7G .modal-backdrop.show {
  opacity: .5;
}
.cid-uEXgJCDK7G .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uEXgJCDK7G .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uEXgJCDK7G .modal-header {
    padding: 1rem;
  }
}
.cid-uEXgJCDK7G .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uEXgJCDK7G .modal-header .close svg {
  fill: #353535;
}
.cid-uEXgJCDK7G .modal-header .close:hover {
  opacity: 1;
}
.cid-uEXgJCDK7G .modal-header .close:focus {
  outline: none;
}
.cid-uEXgJCDK7G .modal-title {
  line-height: 1.5em;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uEXgJCDK7G .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uEXgJCDK7G .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEXgJCDK7G .modal-body {
    padding: 1rem;
  }
}
.cid-uEXgJCDK7G .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEXgJCDK7G .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEXgJCDK7G .modal-footer {
    padding: 1rem;
  }
}
.cid-uEXgJCDK7G .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uEXgJCDK7G .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uEXgJCDK7G .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uEXgJCDK7G .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uEXgJCDK7G .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uEXgJCDK7G .modal-lg,
  .cid-uEXgJCDK7G .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uEXgJCDK7G .modal-xl {
    max-width: 1140px;
  }
}
.cid-uEXgJCDK7G .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uEXgJCDK7G .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uEXgJCDK7G .form-group {
  margin-bottom: 1rem;
}
.cid-uEXgJCDK7G .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uEXgJCDK7G .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uEXgJCDK7G .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uEXgJCDK7G .mbr-section-btn {
  margin: 0;
}
.cid-uEXgJCDK7G .mbr-section-btn .btn {
  margin: 0;
}
.cid-uEXgJCDK7G P {
  text-align: left;
}
.cid-uEXgJCDK7G .badge,
.cid-uEXgJCDK7G .badge_wrap {
  color: #005470;
  text-align: left;
}
.cid-uEXgJCDK7G .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #ff2121;
  background-color: rgba(0, 84, 112, 0.15);
  margin-bottom: 26px;
}
.cid-uEXgJCDK7G .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uEXgJCDK7G .card-title,
.cid-uEXgJCDK7G .card-box {
  color: #005470;
  background-color: #F6F6F6 ;
  padding: 8px 14px 6px 14px;
}
.cid-uEXgJCDK7G .link {
  color: #2299aa;
}
.cid-uF5MmL4ndC.popup-builder {
  background-color: #ffffff;
}
.cid-uF5MmL4ndC.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uF5MmL4ndC.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uF5MmL4ndC .modal-content,
.cid-uF5MmL4ndC .modal-dialog {
  height: auto;
}
.cid-uF5MmL4ndC .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uF5MmL4ndC .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uF5MmL4ndC .form-wrapper .mbr-form .form-group,
  .cid-uF5MmL4ndC .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uF5MmL4ndC .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uF5MmL4ndC .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uF5MmL4ndC .mbr-text {
  text-align: center;
}
.cid-uF5MmL4ndC .pt-0 {
  padding-top: 0 !important;
}
.cid-uF5MmL4ndC .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uF5MmL4ndC .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uF5MmL4ndC .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uF5MmL4ndC .modal-open {
  overflow: hidden;
}
.cid-uF5MmL4ndC .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uF5MmL4ndC .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uF5MmL4ndC .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uF5MmL4ndC .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uF5MmL4ndC .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uF5MmL4ndC .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uF5MmL4ndC .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uF5MmL4ndC .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-uF5MmL4ndC .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uF5MmL4ndC .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uF5MmL4ndC .modal-backdrop.fade {
  opacity: 0;
}
.cid-uF5MmL4ndC .modal-backdrop.show {
  opacity: .5;
}
.cid-uF5MmL4ndC .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uF5MmL4ndC .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uF5MmL4ndC .modal-header {
    padding: 1rem;
  }
}
.cid-uF5MmL4ndC .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uF5MmL4ndC .modal-header .close svg {
  fill: #353535;
}
.cid-uF5MmL4ndC .modal-header .close:hover {
  opacity: 1;
}
.cid-uF5MmL4ndC .modal-header .close:focus {
  outline: none;
}
.cid-uF5MmL4ndC .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #1c546c;
}
.cid-uF5MmL4ndC .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uF5MmL4ndC .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uF5MmL4ndC .modal-body {
    padding: 1rem;
  }
}
.cid-uF5MmL4ndC .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uF5MmL4ndC .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uF5MmL4ndC .modal-footer {
    padding: 1rem;
  }
}
.cid-uF5MmL4ndC .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uF5MmL4ndC .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uF5MmL4ndC .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uF5MmL4ndC .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uF5MmL4ndC .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uF5MmL4ndC .modal-lg,
  .cid-uF5MmL4ndC .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uF5MmL4ndC .modal-xl {
    max-width: 1140px;
  }
}
.cid-uF5MmL4ndC .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uF5MmL4ndC .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uF5MmL4ndC .form-group {
  margin-bottom: 1rem;
}
.cid-uF5MmL4ndC .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uF5MmL4ndC .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uF5MmL4ndC .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uF5MmL4ndC .mbr-section-btn {
  margin: 0;
}
.cid-uF5MmL4ndC .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFmzU4wn0a.popup-builder {
  background-color: #ffffff;
}
.cid-uFmzU4wn0a.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFmzU4wn0a.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFmzU4wn0a .modal-content,
.cid-uFmzU4wn0a .modal-dialog {
  height: auto;
}
.cid-uFmzU4wn0a .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFmzU4wn0a .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFmzU4wn0a .form-wrapper .mbr-form .form-group,
  .cid-uFmzU4wn0a .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFmzU4wn0a .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFmzU4wn0a .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFmzU4wn0a .mbr-text {
  text-align: center;
}
.cid-uFmzU4wn0a .pt-0 {
  padding-top: 0 !important;
}
.cid-uFmzU4wn0a .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFmzU4wn0a .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFmzU4wn0a .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFmzU4wn0a .modal-open {
  overflow: hidden;
}
.cid-uFmzU4wn0a .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFmzU4wn0a .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFmzU4wn0a .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFmzU4wn0a .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFmzU4wn0a .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFmzU4wn0a .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFmzU4wn0a .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFmzU4wn0a .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-uFmzU4wn0a .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFmzU4wn0a .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFmzU4wn0a .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFmzU4wn0a .modal-backdrop.show {
  opacity: .5;
}
.cid-uFmzU4wn0a .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFmzU4wn0a .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFmzU4wn0a .modal-header {
    padding: 1rem;
  }
}
.cid-uFmzU4wn0a .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFmzU4wn0a .modal-header .close svg {
  fill: #353535;
}
.cid-uFmzU4wn0a .modal-header .close:hover {
  opacity: 1;
}
.cid-uFmzU4wn0a .modal-header .close:focus {
  outline: none;
}
.cid-uFmzU4wn0a .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #1c546c;
}
.cid-uFmzU4wn0a .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFmzU4wn0a .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFmzU4wn0a .modal-body {
    padding: 1rem;
  }
}
.cid-uFmzU4wn0a .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFmzU4wn0a .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFmzU4wn0a .modal-footer {
    padding: 1rem;
  }
}
.cid-uFmzU4wn0a .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFmzU4wn0a .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFmzU4wn0a .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFmzU4wn0a .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFmzU4wn0a .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFmzU4wn0a .modal-lg,
  .cid-uFmzU4wn0a .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFmzU4wn0a .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFmzU4wn0a .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFmzU4wn0a .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFmzU4wn0a .form-group {
  margin-bottom: 1rem;
}
.cid-uFmzU4wn0a .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFmzU4wn0a .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFmzU4wn0a .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFmzU4wn0a .mbr-section-btn {
  margin: 0;
}
.cid-uFmzU4wn0a .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFnky0qZkD.popup-builder {
  background-color: #ffffff;
}
.cid-uFnky0qZkD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFnky0qZkD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFnky0qZkD .modal-content,
.cid-uFnky0qZkD .modal-dialog {
  height: auto;
}
.cid-uFnky0qZkD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFnky0qZkD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFnky0qZkD .form-wrapper .mbr-form .form-group,
  .cid-uFnky0qZkD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFnky0qZkD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFnky0qZkD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFnky0qZkD .mbr-text {
  text-align: center;
}
.cid-uFnky0qZkD .pt-0 {
  padding-top: 0 !important;
}
.cid-uFnky0qZkD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFnky0qZkD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFnky0qZkD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFnky0qZkD .modal-open {
  overflow: hidden;
}
.cid-uFnky0qZkD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFnky0qZkD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFnky0qZkD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFnky0qZkD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFnky0qZkD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFnky0qZkD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFnky0qZkD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFnky0qZkD .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-uFnky0qZkD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFnky0qZkD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFnky0qZkD .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFnky0qZkD .modal-backdrop.show {
  opacity: .5;
}
.cid-uFnky0qZkD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFnky0qZkD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnky0qZkD .modal-header {
    padding: 1rem;
  }
}
.cid-uFnky0qZkD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFnky0qZkD .modal-header .close svg {
  fill: #353535;
}
.cid-uFnky0qZkD .modal-header .close:hover {
  opacity: 1;
}
.cid-uFnky0qZkD .modal-header .close:focus {
  outline: none;
}
.cid-uFnky0qZkD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #1c546c;
}
.cid-uFnky0qZkD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFnky0qZkD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnky0qZkD .modal-body {
    padding: 1rem;
  }
}
.cid-uFnky0qZkD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFnky0qZkD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnky0qZkD .modal-footer {
    padding: 1rem;
  }
}
.cid-uFnky0qZkD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFnky0qZkD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFnky0qZkD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFnky0qZkD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFnky0qZkD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFnky0qZkD .modal-lg,
  .cid-uFnky0qZkD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFnky0qZkD .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFnky0qZkD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFnky0qZkD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFnky0qZkD .form-group {
  margin-bottom: 1rem;
}
.cid-uFnky0qZkD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFnky0qZkD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFnky0qZkD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFnky0qZkD .mbr-section-btn {
  margin: 0;
}
.cid-uFnky0qZkD .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFnIikNSk4.popup-builder {
  background-color: #ffffff;
}
.cid-uFnIikNSk4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFnIikNSk4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFnIikNSk4 .modal-content,
.cid-uFnIikNSk4 .modal-dialog {
  height: auto;
}
.cid-uFnIikNSk4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFnIikNSk4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFnIikNSk4 .form-wrapper .mbr-form .form-group,
  .cid-uFnIikNSk4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFnIikNSk4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFnIikNSk4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFnIikNSk4 .mbr-text {
  text-align: center;
}
.cid-uFnIikNSk4 .pt-0 {
  padding-top: 0 !important;
}
.cid-uFnIikNSk4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFnIikNSk4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFnIikNSk4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFnIikNSk4 .modal-open {
  overflow: hidden;
}
.cid-uFnIikNSk4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFnIikNSk4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFnIikNSk4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFnIikNSk4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFnIikNSk4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFnIikNSk4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFnIikNSk4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFnIikNSk4 .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-uFnIikNSk4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFnIikNSk4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFnIikNSk4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFnIikNSk4 .modal-backdrop.show {
  opacity: .5;
}
.cid-uFnIikNSk4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFnIikNSk4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnIikNSk4 .modal-header {
    padding: 1rem;
  }
}
.cid-uFnIikNSk4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFnIikNSk4 .modal-header .close svg {
  fill: #353535;
}
.cid-uFnIikNSk4 .modal-header .close:hover {
  opacity: 1;
}
.cid-uFnIikNSk4 .modal-header .close:focus {
  outline: none;
}
.cid-uFnIikNSk4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #1c546c;
}
.cid-uFnIikNSk4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFnIikNSk4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnIikNSk4 .modal-body {
    padding: 1rem;
  }
}
.cid-uFnIikNSk4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFnIikNSk4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnIikNSk4 .modal-footer {
    padding: 1rem;
  }
}
.cid-uFnIikNSk4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFnIikNSk4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFnIikNSk4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFnIikNSk4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFnIikNSk4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFnIikNSk4 .modal-lg,
  .cid-uFnIikNSk4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFnIikNSk4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFnIikNSk4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFnIikNSk4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFnIikNSk4 .form-group {
  margin-bottom: 1rem;
}
.cid-uFnIikNSk4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFnIikNSk4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFnIikNSk4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFnIikNSk4 .mbr-section-btn {
  margin: 0;
}
.cid-uFnIikNSk4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFnNLJEHZ6.popup-builder {
  background-color: #ffffff;
}
.cid-uFnNLJEHZ6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFnNLJEHZ6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFnNLJEHZ6 .modal-content,
.cid-uFnNLJEHZ6 .modal-dialog {
  height: auto;
}
.cid-uFnNLJEHZ6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFnNLJEHZ6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFnNLJEHZ6 .form-wrapper .mbr-form .form-group,
  .cid-uFnNLJEHZ6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFnNLJEHZ6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFnNLJEHZ6 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFnNLJEHZ6 .mbr-text {
  text-align: center;
}
.cid-uFnNLJEHZ6 .pt-0 {
  padding-top: 0 !important;
}
.cid-uFnNLJEHZ6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFnNLJEHZ6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFnNLJEHZ6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFnNLJEHZ6 .modal-open {
  overflow: hidden;
}
.cid-uFnNLJEHZ6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFnNLJEHZ6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFnNLJEHZ6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFnNLJEHZ6 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFnNLJEHZ6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFnNLJEHZ6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFnNLJEHZ6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFnNLJEHZ6 .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-uFnNLJEHZ6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFnNLJEHZ6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFnNLJEHZ6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFnNLJEHZ6 .modal-backdrop.show {
  opacity: .5;
}
.cid-uFnNLJEHZ6 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFnNLJEHZ6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnNLJEHZ6 .modal-header {
    padding: 1rem;
  }
}
.cid-uFnNLJEHZ6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFnNLJEHZ6 .modal-header .close svg {
  fill: #353535;
}
.cid-uFnNLJEHZ6 .modal-header .close:hover {
  opacity: 1;
}
.cid-uFnNLJEHZ6 .modal-header .close:focus {
  outline: none;
}
.cid-uFnNLJEHZ6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #1c546c;
}
.cid-uFnNLJEHZ6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFnNLJEHZ6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnNLJEHZ6 .modal-body {
    padding: 1rem;
  }
}
.cid-uFnNLJEHZ6 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFnNLJEHZ6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnNLJEHZ6 .modal-footer {
    padding: 1rem;
  }
}
.cid-uFnNLJEHZ6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFnNLJEHZ6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFnNLJEHZ6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFnNLJEHZ6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFnNLJEHZ6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFnNLJEHZ6 .modal-lg,
  .cid-uFnNLJEHZ6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFnNLJEHZ6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFnNLJEHZ6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFnNLJEHZ6 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFnNLJEHZ6 .form-group {
  margin-bottom: 1rem;
}
.cid-uFnNLJEHZ6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFnNLJEHZ6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFnNLJEHZ6 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFnNLJEHZ6 .mbr-section-btn {
  margin: 0;
}
.cid-uFnNLJEHZ6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uFnTtdvscS.popup-builder {
  background-color: #ffffff;
}
.cid-uFnTtdvscS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uFnTtdvscS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uFnTtdvscS .modal-content,
.cid-uFnTtdvscS .modal-dialog {
  height: auto;
}
.cid-uFnTtdvscS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uFnTtdvscS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uFnTtdvscS .form-wrapper .mbr-form .form-group,
  .cid-uFnTtdvscS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uFnTtdvscS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uFnTtdvscS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uFnTtdvscS .mbr-text {
  text-align: center;
}
.cid-uFnTtdvscS .pt-0 {
  padding-top: 0 !important;
}
.cid-uFnTtdvscS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uFnTtdvscS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uFnTtdvscS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uFnTtdvscS .modal-open {
  overflow: hidden;
}
.cid-uFnTtdvscS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uFnTtdvscS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uFnTtdvscS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uFnTtdvscS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uFnTtdvscS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uFnTtdvscS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uFnTtdvscS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uFnTtdvscS .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-uFnTtdvscS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uFnTtdvscS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uFnTtdvscS .modal-backdrop.fade {
  opacity: 0;
}
.cid-uFnTtdvscS .modal-backdrop.show {
  opacity: .5;
}
.cid-uFnTtdvscS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uFnTtdvscS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnTtdvscS .modal-header {
    padding: 1rem;
  }
}
.cid-uFnTtdvscS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uFnTtdvscS .modal-header .close svg {
  fill: #353535;
}
.cid-uFnTtdvscS .modal-header .close:hover {
  opacity: 1;
}
.cid-uFnTtdvscS .modal-header .close:focus {
  outline: none;
}
.cid-uFnTtdvscS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #1c546c;
}
.cid-uFnTtdvscS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uFnTtdvscS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnTtdvscS .modal-body {
    padding: 1rem;
  }
}
.cid-uFnTtdvscS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uFnTtdvscS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFnTtdvscS .modal-footer {
    padding: 1rem;
  }
}
.cid-uFnTtdvscS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uFnTtdvscS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uFnTtdvscS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uFnTtdvscS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uFnTtdvscS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uFnTtdvscS .modal-lg,
  .cid-uFnTtdvscS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uFnTtdvscS .modal-xl {
    max-width: 1140px;
  }
}
.cid-uFnTtdvscS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uFnTtdvscS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uFnTtdvscS .form-group {
  margin-bottom: 1rem;
}
.cid-uFnTtdvscS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uFnTtdvscS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uFnTtdvscS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uFnTtdvscS .mbr-section-btn {
  margin: 0;
}
.cid-uFnTtdvscS .mbr-section-btn .btn {
  margin: 0;
}
.cid-uEloEMrekn.popup-builder {
  background-color: #ffffff;
}
.cid-uEloEMrekn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uEloEMrekn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uEloEMrekn .modal-content,
.cid-uEloEMrekn .modal-dialog {
  height: auto;
}
.cid-uEloEMrekn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uEloEMrekn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uEloEMrekn .form-wrapper .mbr-form .form-group,
  .cid-uEloEMrekn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uEloEMrekn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uEloEMrekn .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uEloEMrekn .mbr-text {
  text-align: left;
  color: #005470;
}
.cid-uEloEMrekn .pt-0 {
  padding-top: 0 !important;
}
.cid-uEloEMrekn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uEloEMrekn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uEloEMrekn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uEloEMrekn .modal-open {
  overflow: hidden;
}
.cid-uEloEMrekn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uEloEMrekn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uEloEMrekn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uEloEMrekn .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uEloEMrekn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uEloEMrekn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uEloEMrekn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uEloEMrekn .modal-content {
  background: #efefef;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uEloEMrekn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uEloEMrekn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uEloEMrekn .modal-backdrop.fade {
  opacity: 0;
}
.cid-uEloEMrekn .modal-backdrop.show {
  opacity: .5;
}
.cid-uEloEMrekn .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uEloEMrekn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uEloEMrekn .modal-header {
    padding: 1rem;
  }
}
.cid-uEloEMrekn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uEloEMrekn .modal-header .close svg {
  fill: #353535;
}
.cid-uEloEMrekn .modal-header .close:hover {
  opacity: 1;
}
.cid-uEloEMrekn .modal-header .close:focus {
  outline: none;
}
.cid-uEloEMrekn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
  color: #1c546c;
}
.cid-uEloEMrekn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uEloEMrekn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEloEMrekn .modal-body {
    padding: 1rem;
  }
}
.cid-uEloEMrekn .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEloEMrekn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEloEMrekn .modal-footer {
    padding: 1rem;
  }
}
.cid-uEloEMrekn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uEloEMrekn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uEloEMrekn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uEloEMrekn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uEloEMrekn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uEloEMrekn .modal-lg,
  .cid-uEloEMrekn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uEloEMrekn .modal-xl {
    max-width: 1140px;
  }
}
.cid-uEloEMrekn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uEloEMrekn .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uEloEMrekn .form-group {
  margin-bottom: 1rem;
}
.cid-uEloEMrekn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uEloEMrekn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uEloEMrekn .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uEloEMrekn .mbr-section-btn {
  margin: 0;
}
.cid-uEloEMrekn .mbr-section-btn .btn {
  margin: 0;
}
.cid-uEyvYvn19S.popup-builder {
  background-color: #ffffff;
}
.cid-uEyvYvn19S.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uEyvYvn19S.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uEyvYvn19S .modal-content,
.cid-uEyvYvn19S .modal-dialog {
  height: auto;
}
.cid-uEyvYvn19S .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uEyvYvn19S .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uEyvYvn19S .form-wrapper .mbr-form .form-group,
  .cid-uEyvYvn19S .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uEyvYvn19S .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uEyvYvn19S .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uEyvYvn19S .mbr-text {
  text-align: center;
  color: #1c546c;
}
.cid-uEyvYvn19S .pt-0 {
  padding-top: 0 !important;
}
.cid-uEyvYvn19S .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uEyvYvn19S .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uEyvYvn19S .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uEyvYvn19S .modal-open {
  overflow: hidden;
}
.cid-uEyvYvn19S .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uEyvYvn19S .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uEyvYvn19S .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uEyvYvn19S .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uEyvYvn19S .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uEyvYvn19S .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uEyvYvn19S .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uEyvYvn19S .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-uEyvYvn19S .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uEyvYvn19S .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uEyvYvn19S .modal-backdrop.fade {
  opacity: 0;
}
.cid-uEyvYvn19S .modal-backdrop.show {
  opacity: .5;
}
.cid-uEyvYvn19S .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uEyvYvn19S .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uEyvYvn19S .modal-header {
    padding: 1rem;
  }
}
.cid-uEyvYvn19S .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uEyvYvn19S .modal-header .close svg {
  fill: #353535;
}
.cid-uEyvYvn19S .modal-header .close:hover {
  opacity: 1;
}
.cid-uEyvYvn19S .modal-header .close:focus {
  outline: none;
}
.cid-uEyvYvn19S .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #1c546c;
}
.cid-uEyvYvn19S .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uEyvYvn19S .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEyvYvn19S .modal-body {
    padding: 1rem;
  }
}
.cid-uEyvYvn19S .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uEyvYvn19S .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEyvYvn19S .modal-footer {
    padding: 1rem;
  }
}
.cid-uEyvYvn19S .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uEyvYvn19S .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uEyvYvn19S .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uEyvYvn19S .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uEyvYvn19S .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uEyvYvn19S .modal-lg,
  .cid-uEyvYvn19S .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uEyvYvn19S .modal-xl {
    max-width: 1140px;
  }
}
.cid-uEyvYvn19S .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uEyvYvn19S .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uEyvYvn19S .form-group {
  margin-bottom: 1rem;
}
.cid-uEyvYvn19S .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uEyvYvn19S .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uEyvYvn19S .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uEyvYvn19S .mbr-section-btn {
  margin: 0;
}
.cid-uEyvYvn19S .mbr-section-btn .btn {
  margin: 0;
}
.cid-uECFcF359J.popup-builder {
  background-color: #ffffff;
}
.cid-uECFcF359J.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uECFcF359J.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uECFcF359J .modal-content,
.cid-uECFcF359J .modal-dialog {
  height: auto;
}
.cid-uECFcF359J .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uECFcF359J .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uECFcF359J .form-wrapper .mbr-form .form-group,
  .cid-uECFcF359J .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uECFcF359J .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uECFcF359J .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uECFcF359J .mbr-text {
  text-align: center;
}
.cid-uECFcF359J .pt-0 {
  padding-top: 0 !important;
}
.cid-uECFcF359J .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uECFcF359J .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uECFcF359J .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uECFcF359J .modal-open {
  overflow: hidden;
}
.cid-uECFcF359J .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uECFcF359J .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uECFcF359J .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uECFcF359J .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uECFcF359J .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uECFcF359J .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uECFcF359J .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uECFcF359J .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-uECFcF359J .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uECFcF359J .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uECFcF359J .modal-backdrop.fade {
  opacity: 0;
}
.cid-uECFcF359J .modal-backdrop.show {
  opacity: .5;
}
.cid-uECFcF359J .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uECFcF359J .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uECFcF359J .modal-header {
    padding: 1rem;
  }
}
.cid-uECFcF359J .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uECFcF359J .modal-header .close svg {
  fill: #353535;
}
.cid-uECFcF359J .modal-header .close:hover {
  opacity: 1;
}
.cid-uECFcF359J .modal-header .close:focus {
  outline: none;
}
.cid-uECFcF359J .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #1c546c;
}
.cid-uECFcF359J .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uECFcF359J .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uECFcF359J .modal-body {
    padding: 1rem;
  }
}
.cid-uECFcF359J .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uECFcF359J .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uECFcF359J .modal-footer {
    padding: 1rem;
  }
}
.cid-uECFcF359J .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uECFcF359J .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uECFcF359J .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uECFcF359J .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uECFcF359J .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uECFcF359J .modal-lg,
  .cid-uECFcF359J .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uECFcF359J .modal-xl {
    max-width: 1140px;
  }
}
.cid-uECFcF359J .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uECFcF359J .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uECFcF359J .form-group {
  margin-bottom: 1rem;
}
.cid-uECFcF359J .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uECFcF359J .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uECFcF359J .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uECFcF359J .mbr-section-btn {
  margin: 0;
}
.cid-uECFcF359J .mbr-section-btn .btn {
  margin: 0;
}
.cid-uD6gLXlR0U.popup-builder {
  background-color: #ffffff;
}
.cid-uD6gLXlR0U.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uD6gLXlR0U.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uD6gLXlR0U .modal-content,
.cid-uD6gLXlR0U .modal-dialog {
  height: auto;
}
.cid-uD6gLXlR0U .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uD6gLXlR0U .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uD6gLXlR0U .form-wrapper .mbr-form .form-group,
  .cid-uD6gLXlR0U .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uD6gLXlR0U .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uD6gLXlR0U .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uD6gLXlR0U .mbr-text {
  text-align: center;
}
.cid-uD6gLXlR0U .pt-0 {
  padding-top: 0 !important;
}
.cid-uD6gLXlR0U .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uD6gLXlR0U .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uD6gLXlR0U .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uD6gLXlR0U .modal-open {
  overflow: hidden;
}
.cid-uD6gLXlR0U .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uD6gLXlR0U .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uD6gLXlR0U .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uD6gLXlR0U .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uD6gLXlR0U .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uD6gLXlR0U .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uD6gLXlR0U .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uD6gLXlR0U .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-uD6gLXlR0U .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uD6gLXlR0U .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uD6gLXlR0U .modal-backdrop.fade {
  opacity: 0;
}
.cid-uD6gLXlR0U .modal-backdrop.show {
  opacity: .5;
}
.cid-uD6gLXlR0U .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uD6gLXlR0U .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uD6gLXlR0U .modal-header {
    padding: 1rem;
  }
}
.cid-uD6gLXlR0U .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uD6gLXlR0U .modal-header .close svg {
  fill: #353535;
}
.cid-uD6gLXlR0U .modal-header .close:hover {
  opacity: 1;
}
.cid-uD6gLXlR0U .modal-header .close:focus {
  outline: none;
}
.cid-uD6gLXlR0U .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uD6gLXlR0U .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uD6gLXlR0U .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD6gLXlR0U .modal-body {
    padding: 1rem;
  }
}
.cid-uD6gLXlR0U .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uD6gLXlR0U .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD6gLXlR0U .modal-footer {
    padding: 1rem;
  }
}
.cid-uD6gLXlR0U .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uD6gLXlR0U .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uD6gLXlR0U .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uD6gLXlR0U .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uD6gLXlR0U .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uD6gLXlR0U .modal-lg,
  .cid-uD6gLXlR0U .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uD6gLXlR0U .modal-xl {
    max-width: 1140px;
  }
}
.cid-uD6gLXlR0U .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uD6gLXlR0U .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uD6gLXlR0U .form-group {
  margin-bottom: 1rem;
}
.cid-uD6gLXlR0U .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uD6gLXlR0U .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uD6gLXlR0U .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uD6gLXlR0U .mbr-section-btn {
  margin: 0;
}
.cid-uD6gLXlR0U .mbr-section-btn .btn {
  margin: 0;
}
.cid-uD6husAgl7.popup-builder {
  background-color: #ffffff;
}
.cid-uD6husAgl7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uD6husAgl7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uD6husAgl7 .modal-content,
.cid-uD6husAgl7 .modal-dialog {
  height: auto;
}
.cid-uD6husAgl7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uD6husAgl7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uD6husAgl7 .form-wrapper .mbr-form .form-group,
  .cid-uD6husAgl7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uD6husAgl7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uD6husAgl7 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uD6husAgl7 .mbr-text {
  text-align: center;
}
.cid-uD6husAgl7 .pt-0 {
  padding-top: 0 !important;
}
.cid-uD6husAgl7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uD6husAgl7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uD6husAgl7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uD6husAgl7 .modal-open {
  overflow: hidden;
}
.cid-uD6husAgl7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uD6husAgl7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uD6husAgl7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uD6husAgl7 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uD6husAgl7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uD6husAgl7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uD6husAgl7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uD6husAgl7 .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-uD6husAgl7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uD6husAgl7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uD6husAgl7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uD6husAgl7 .modal-backdrop.show {
  opacity: .5;
}
.cid-uD6husAgl7 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uD6husAgl7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uD6husAgl7 .modal-header {
    padding: 1rem;
  }
}
.cid-uD6husAgl7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uD6husAgl7 .modal-header .close svg {
  fill: #353535;
}
.cid-uD6husAgl7 .modal-header .close:hover {
  opacity: 1;
}
.cid-uD6husAgl7 .modal-header .close:focus {
  outline: none;
}
.cid-uD6husAgl7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uD6husAgl7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uD6husAgl7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD6husAgl7 .modal-body {
    padding: 1rem;
  }
}
.cid-uD6husAgl7 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uD6husAgl7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD6husAgl7 .modal-footer {
    padding: 1rem;
  }
}
.cid-uD6husAgl7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uD6husAgl7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uD6husAgl7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uD6husAgl7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uD6husAgl7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uD6husAgl7 .modal-lg,
  .cid-uD6husAgl7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uD6husAgl7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uD6husAgl7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uD6husAgl7 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uD6husAgl7 .form-group {
  margin-bottom: 1rem;
}
.cid-uD6husAgl7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uD6husAgl7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uD6husAgl7 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uD6husAgl7 .mbr-section-btn {
  margin: 0;
}
.cid-uD6husAgl7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uD748Q5mFb.popup-builder {
  background-color: #ffffff;
}
.cid-uD748Q5mFb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uD748Q5mFb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uD748Q5mFb .modal-content,
.cid-uD748Q5mFb .modal-dialog {
  height: auto;
}
.cid-uD748Q5mFb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uD748Q5mFb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uD748Q5mFb .form-wrapper .mbr-form .form-group,
  .cid-uD748Q5mFb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uD748Q5mFb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uD748Q5mFb .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uD748Q5mFb .mbr-text {
  text-align: center;
}
.cid-uD748Q5mFb .pt-0 {
  padding-top: 0 !important;
}
.cid-uD748Q5mFb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uD748Q5mFb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uD748Q5mFb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uD748Q5mFb .modal-open {
  overflow: hidden;
}
.cid-uD748Q5mFb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uD748Q5mFb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uD748Q5mFb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uD748Q5mFb .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uD748Q5mFb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uD748Q5mFb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uD748Q5mFb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uD748Q5mFb .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-uD748Q5mFb .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uD748Q5mFb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uD748Q5mFb .modal-backdrop.fade {
  opacity: 0;
}
.cid-uD748Q5mFb .modal-backdrop.show {
  opacity: .5;
}
.cid-uD748Q5mFb .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uD748Q5mFb .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uD748Q5mFb .modal-header {
    padding: 1rem;
  }
}
.cid-uD748Q5mFb .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uD748Q5mFb .modal-header .close svg {
  fill: #353535;
}
.cid-uD748Q5mFb .modal-header .close:hover {
  opacity: 1;
}
.cid-uD748Q5mFb .modal-header .close:focus {
  outline: none;
}
.cid-uD748Q5mFb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uD748Q5mFb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uD748Q5mFb .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD748Q5mFb .modal-body {
    padding: 1rem;
  }
}
.cid-uD748Q5mFb .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uD748Q5mFb .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uD748Q5mFb .modal-footer {
    padding: 1rem;
  }
}
.cid-uD748Q5mFb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uD748Q5mFb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uD748Q5mFb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uD748Q5mFb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uD748Q5mFb .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uD748Q5mFb .modal-lg,
  .cid-uD748Q5mFb .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uD748Q5mFb .modal-xl {
    max-width: 1140px;
  }
}
.cid-uD748Q5mFb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uD748Q5mFb .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uD748Q5mFb .form-group {
  margin-bottom: 1rem;
}
.cid-uD748Q5mFb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uD748Q5mFb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uD748Q5mFb .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uD748Q5mFb .mbr-section-btn {
  margin: 0;
}
.cid-uD748Q5mFb .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG7jBtsBTQ.popup-builder {
  background-color: #ffffff;
}
.cid-uG7jBtsBTQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG7jBtsBTQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG7jBtsBTQ .modal-content,
.cid-uG7jBtsBTQ .modal-dialog {
  height: auto;
}
.cid-uG7jBtsBTQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG7jBtsBTQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG7jBtsBTQ .form-wrapper .mbr-form .form-group,
  .cid-uG7jBtsBTQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG7jBtsBTQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG7jBtsBTQ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG7jBtsBTQ .mbr-text {
  text-align: center;
}
.cid-uG7jBtsBTQ .pt-0 {
  padding-top: 0 !important;
}
.cid-uG7jBtsBTQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG7jBtsBTQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG7jBtsBTQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG7jBtsBTQ .modal-open {
  overflow: hidden;
}
.cid-uG7jBtsBTQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG7jBtsBTQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG7jBtsBTQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG7jBtsBTQ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG7jBtsBTQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG7jBtsBTQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG7jBtsBTQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG7jBtsBTQ .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-uG7jBtsBTQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG7jBtsBTQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG7jBtsBTQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG7jBtsBTQ .modal-backdrop.show {
  opacity: .5;
}
.cid-uG7jBtsBTQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG7jBtsBTQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG7jBtsBTQ .modal-header {
    padding: 1rem;
  }
}
.cid-uG7jBtsBTQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG7jBtsBTQ .modal-header .close svg {
  fill: #353535;
}
.cid-uG7jBtsBTQ .modal-header .close:hover {
  opacity: 1;
}
.cid-uG7jBtsBTQ .modal-header .close:focus {
  outline: none;
}
.cid-uG7jBtsBTQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uG7jBtsBTQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG7jBtsBTQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG7jBtsBTQ .modal-body {
    padding: 1rem;
  }
}
.cid-uG7jBtsBTQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG7jBtsBTQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG7jBtsBTQ .modal-footer {
    padding: 1rem;
  }
}
.cid-uG7jBtsBTQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG7jBtsBTQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG7jBtsBTQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG7jBtsBTQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG7jBtsBTQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG7jBtsBTQ .modal-lg,
  .cid-uG7jBtsBTQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG7jBtsBTQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG7jBtsBTQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG7jBtsBTQ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG7jBtsBTQ .form-group {
  margin-bottom: 1rem;
}
.cid-uG7jBtsBTQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG7jBtsBTQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG7jBtsBTQ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG7jBtsBTQ .mbr-section-btn {
  margin: 0;
}
.cid-uG7jBtsBTQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG7n7x5kTZ.popup-builder {
  background-color: #ffffff;
}
.cid-uG7n7x5kTZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG7n7x5kTZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG7n7x5kTZ .modal-content,
.cid-uG7n7x5kTZ .modal-dialog {
  height: auto;
}
.cid-uG7n7x5kTZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG7n7x5kTZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG7n7x5kTZ .form-wrapper .mbr-form .form-group,
  .cid-uG7n7x5kTZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG7n7x5kTZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG7n7x5kTZ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG7n7x5kTZ .mbr-text {
  text-align: center;
}
.cid-uG7n7x5kTZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uG7n7x5kTZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG7n7x5kTZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG7n7x5kTZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG7n7x5kTZ .modal-open {
  overflow: hidden;
}
.cid-uG7n7x5kTZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG7n7x5kTZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG7n7x5kTZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG7n7x5kTZ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG7n7x5kTZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG7n7x5kTZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG7n7x5kTZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG7n7x5kTZ .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-uG7n7x5kTZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG7n7x5kTZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG7n7x5kTZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG7n7x5kTZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uG7n7x5kTZ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG7n7x5kTZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG7n7x5kTZ .modal-header {
    padding: 1rem;
  }
}
.cid-uG7n7x5kTZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG7n7x5kTZ .modal-header .close svg {
  fill: #353535;
}
.cid-uG7n7x5kTZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uG7n7x5kTZ .modal-header .close:focus {
  outline: none;
}
.cid-uG7n7x5kTZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uG7n7x5kTZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG7n7x5kTZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG7n7x5kTZ .modal-body {
    padding: 1rem;
  }
}
.cid-uG7n7x5kTZ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG7n7x5kTZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG7n7x5kTZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uG7n7x5kTZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG7n7x5kTZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG7n7x5kTZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG7n7x5kTZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG7n7x5kTZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG7n7x5kTZ .modal-lg,
  .cid-uG7n7x5kTZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG7n7x5kTZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG7n7x5kTZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG7n7x5kTZ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG7n7x5kTZ .form-group {
  margin-bottom: 1rem;
}
.cid-uG7n7x5kTZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG7n7x5kTZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG7n7x5kTZ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG7n7x5kTZ .mbr-section-btn {
  margin: 0;
}
.cid-uG7n7x5kTZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uG7n8iN2Lo.popup-builder {
  background-color: #ffffff;
}
.cid-uG7n8iN2Lo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uG7n8iN2Lo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uG7n8iN2Lo .modal-content,
.cid-uG7n8iN2Lo .modal-dialog {
  height: auto;
}
.cid-uG7n8iN2Lo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uG7n8iN2Lo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uG7n8iN2Lo .form-wrapper .mbr-form .form-group,
  .cid-uG7n8iN2Lo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uG7n8iN2Lo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uG7n8iN2Lo .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uG7n8iN2Lo .mbr-text {
  text-align: center;
}
.cid-uG7n8iN2Lo .pt-0 {
  padding-top: 0 !important;
}
.cid-uG7n8iN2Lo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uG7n8iN2Lo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uG7n8iN2Lo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uG7n8iN2Lo .modal-open {
  overflow: hidden;
}
.cid-uG7n8iN2Lo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uG7n8iN2Lo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uG7n8iN2Lo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uG7n8iN2Lo .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uG7n8iN2Lo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uG7n8iN2Lo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uG7n8iN2Lo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uG7n8iN2Lo .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-uG7n8iN2Lo .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uG7n8iN2Lo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uG7n8iN2Lo .modal-backdrop.fade {
  opacity: 0;
}
.cid-uG7n8iN2Lo .modal-backdrop.show {
  opacity: .5;
}
.cid-uG7n8iN2Lo .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uG7n8iN2Lo .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uG7n8iN2Lo .modal-header {
    padding: 1rem;
  }
}
.cid-uG7n8iN2Lo .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uG7n8iN2Lo .modal-header .close svg {
  fill: #353535;
}
.cid-uG7n8iN2Lo .modal-header .close:hover {
  opacity: 1;
}
.cid-uG7n8iN2Lo .modal-header .close:focus {
  outline: none;
}
.cid-uG7n8iN2Lo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uG7n8iN2Lo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uG7n8iN2Lo .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG7n8iN2Lo .modal-body {
    padding: 1rem;
  }
}
.cid-uG7n8iN2Lo .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uG7n8iN2Lo .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG7n8iN2Lo .modal-footer {
    padding: 1rem;
  }
}
.cid-uG7n8iN2Lo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uG7n8iN2Lo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uG7n8iN2Lo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uG7n8iN2Lo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uG7n8iN2Lo .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uG7n8iN2Lo .modal-lg,
  .cid-uG7n8iN2Lo .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uG7n8iN2Lo .modal-xl {
    max-width: 1140px;
  }
}
.cid-uG7n8iN2Lo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uG7n8iN2Lo .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uG7n8iN2Lo .form-group {
  margin-bottom: 1rem;
}
.cid-uG7n8iN2Lo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uG7n8iN2Lo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uG7n8iN2Lo .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uG7n8iN2Lo .mbr-section-btn {
  margin: 0;
}
.cid-uG7n8iN2Lo .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGM87bnSVn.popup-builder {
  background-color: #ffffff;
}
.cid-uGM87bnSVn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uGM87bnSVn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uGM87bnSVn .modal-content,
.cid-uGM87bnSVn .modal-dialog {
  height: auto;
}
.cid-uGM87bnSVn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uGM87bnSVn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uGM87bnSVn .form-wrapper .mbr-form .form-group,
  .cid-uGM87bnSVn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uGM87bnSVn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uGM87bnSVn .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGM87bnSVn .mbr-text {
  text-align: center;
}
.cid-uGM87bnSVn .pt-0 {
  padding-top: 0 !important;
}
.cid-uGM87bnSVn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uGM87bnSVn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uGM87bnSVn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uGM87bnSVn .modal-open {
  overflow: hidden;
}
.cid-uGM87bnSVn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uGM87bnSVn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uGM87bnSVn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uGM87bnSVn .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uGM87bnSVn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uGM87bnSVn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uGM87bnSVn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uGM87bnSVn .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-uGM87bnSVn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uGM87bnSVn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uGM87bnSVn .modal-backdrop.fade {
  opacity: 0;
}
.cid-uGM87bnSVn .modal-backdrop.show {
  opacity: .5;
}
.cid-uGM87bnSVn .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uGM87bnSVn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGM87bnSVn .modal-header {
    padding: 1rem;
  }
}
.cid-uGM87bnSVn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uGM87bnSVn .modal-header .close svg {
  fill: #353535;
}
.cid-uGM87bnSVn .modal-header .close:hover {
  opacity: 1;
}
.cid-uGM87bnSVn .modal-header .close:focus {
  outline: none;
}
.cid-uGM87bnSVn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uGM87bnSVn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uGM87bnSVn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGM87bnSVn .modal-body {
    padding: 1rem;
  }
}
.cid-uGM87bnSVn .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uGM87bnSVn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGM87bnSVn .modal-footer {
    padding: 1rem;
  }
}
.cid-uGM87bnSVn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uGM87bnSVn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uGM87bnSVn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uGM87bnSVn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uGM87bnSVn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uGM87bnSVn .modal-lg,
  .cid-uGM87bnSVn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uGM87bnSVn .modal-xl {
    max-width: 1140px;
  }
}
.cid-uGM87bnSVn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uGM87bnSVn .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uGM87bnSVn .form-group {
  margin-bottom: 1rem;
}
.cid-uGM87bnSVn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uGM87bnSVn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGM87bnSVn .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uGM87bnSVn .mbr-section-btn {
  margin: 0;
}
.cid-uGM87bnSVn .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGMbuuFere.popup-builder {
  background-color: #ffffff;
}
.cid-uGMbuuFere.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uGMbuuFere.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uGMbuuFere .modal-content,
.cid-uGMbuuFere .modal-dialog {
  height: auto;
}
.cid-uGMbuuFere .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uGMbuuFere .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uGMbuuFere .form-wrapper .mbr-form .form-group,
  .cid-uGMbuuFere .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uGMbuuFere .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uGMbuuFere .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGMbuuFere .mbr-text {
  text-align: center;
}
.cid-uGMbuuFere .pt-0 {
  padding-top: 0 !important;
}
.cid-uGMbuuFere .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uGMbuuFere .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uGMbuuFere .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uGMbuuFere .modal-open {
  overflow: hidden;
}
.cid-uGMbuuFere .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uGMbuuFere .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uGMbuuFere .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uGMbuuFere .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uGMbuuFere .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uGMbuuFere .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uGMbuuFere .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uGMbuuFere .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-uGMbuuFere .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uGMbuuFere .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uGMbuuFere .modal-backdrop.fade {
  opacity: 0;
}
.cid-uGMbuuFere .modal-backdrop.show {
  opacity: .5;
}
.cid-uGMbuuFere .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uGMbuuFere .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMbuuFere .modal-header {
    padding: 1rem;
  }
}
.cid-uGMbuuFere .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uGMbuuFere .modal-header .close svg {
  fill: #353535;
}
.cid-uGMbuuFere .modal-header .close:hover {
  opacity: 1;
}
.cid-uGMbuuFere .modal-header .close:focus {
  outline: none;
}
.cid-uGMbuuFere .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uGMbuuFere .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uGMbuuFere .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMbuuFere .modal-body {
    padding: 1rem;
  }
}
.cid-uGMbuuFere .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uGMbuuFere .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMbuuFere .modal-footer {
    padding: 1rem;
  }
}
.cid-uGMbuuFere .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uGMbuuFere .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uGMbuuFere .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uGMbuuFere .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uGMbuuFere .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uGMbuuFere .modal-lg,
  .cid-uGMbuuFere .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uGMbuuFere .modal-xl {
    max-width: 1140px;
  }
}
.cid-uGMbuuFere .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uGMbuuFere .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uGMbuuFere .form-group {
  margin-bottom: 1rem;
}
.cid-uGMbuuFere .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uGMbuuFere .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGMbuuFere .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uGMbuuFere .mbr-section-btn {
  margin: 0;
}
.cid-uGMbuuFere .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGMg1lFtyV.popup-builder {
  background-color: #ffffff;
}
.cid-uGMg1lFtyV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uGMg1lFtyV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uGMg1lFtyV .modal-content,
.cid-uGMg1lFtyV .modal-dialog {
  height: auto;
}
.cid-uGMg1lFtyV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uGMg1lFtyV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uGMg1lFtyV .form-wrapper .mbr-form .form-group,
  .cid-uGMg1lFtyV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uGMg1lFtyV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uGMg1lFtyV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGMg1lFtyV .mbr-text {
  text-align: center;
}
.cid-uGMg1lFtyV .pt-0 {
  padding-top: 0 !important;
}
.cid-uGMg1lFtyV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uGMg1lFtyV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uGMg1lFtyV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uGMg1lFtyV .modal-open {
  overflow: hidden;
}
.cid-uGMg1lFtyV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uGMg1lFtyV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uGMg1lFtyV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uGMg1lFtyV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uGMg1lFtyV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uGMg1lFtyV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uGMg1lFtyV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uGMg1lFtyV .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-uGMg1lFtyV .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uGMg1lFtyV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uGMg1lFtyV .modal-backdrop.fade {
  opacity: 0;
}
.cid-uGMg1lFtyV .modal-backdrop.show {
  opacity: .5;
}
.cid-uGMg1lFtyV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uGMg1lFtyV .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMg1lFtyV .modal-header {
    padding: 1rem;
  }
}
.cid-uGMg1lFtyV .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uGMg1lFtyV .modal-header .close svg {
  fill: #353535;
}
.cid-uGMg1lFtyV .modal-header .close:hover {
  opacity: 1;
}
.cid-uGMg1lFtyV .modal-header .close:focus {
  outline: none;
}
.cid-uGMg1lFtyV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uGMg1lFtyV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uGMg1lFtyV .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMg1lFtyV .modal-body {
    padding: 1rem;
  }
}
.cid-uGMg1lFtyV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uGMg1lFtyV .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMg1lFtyV .modal-footer {
    padding: 1rem;
  }
}
.cid-uGMg1lFtyV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uGMg1lFtyV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uGMg1lFtyV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uGMg1lFtyV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uGMg1lFtyV .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uGMg1lFtyV .modal-lg,
  .cid-uGMg1lFtyV .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uGMg1lFtyV .modal-xl {
    max-width: 1140px;
  }
}
.cid-uGMg1lFtyV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uGMg1lFtyV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uGMg1lFtyV .form-group {
  margin-bottom: 1rem;
}
.cid-uGMg1lFtyV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uGMg1lFtyV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGMg1lFtyV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uGMg1lFtyV .mbr-section-btn {
  margin: 0;
}
.cid-uGMg1lFtyV .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGMNxASdF4.popup-builder {
  background-color: #ffffff;
}
.cid-uGMNxASdF4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uGMNxASdF4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uGMNxASdF4 .modal-content,
.cid-uGMNxASdF4 .modal-dialog {
  height: auto;
}
.cid-uGMNxASdF4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uGMNxASdF4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uGMNxASdF4 .form-wrapper .mbr-form .form-group,
  .cid-uGMNxASdF4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uGMNxASdF4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uGMNxASdF4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGMNxASdF4 .mbr-text {
  text-align: center;
}
.cid-uGMNxASdF4 .pt-0 {
  padding-top: 0 !important;
}
.cid-uGMNxASdF4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uGMNxASdF4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uGMNxASdF4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uGMNxASdF4 .modal-open {
  overflow: hidden;
}
.cid-uGMNxASdF4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uGMNxASdF4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uGMNxASdF4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uGMNxASdF4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uGMNxASdF4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uGMNxASdF4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uGMNxASdF4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uGMNxASdF4 .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-uGMNxASdF4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uGMNxASdF4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uGMNxASdF4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uGMNxASdF4 .modal-backdrop.show {
  opacity: .5;
}
.cid-uGMNxASdF4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uGMNxASdF4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMNxASdF4 .modal-header {
    padding: 1rem;
  }
}
.cid-uGMNxASdF4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uGMNxASdF4 .modal-header .close svg {
  fill: #353535;
}
.cid-uGMNxASdF4 .modal-header .close:hover {
  opacity: 1;
}
.cid-uGMNxASdF4 .modal-header .close:focus {
  outline: none;
}
.cid-uGMNxASdF4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uGMNxASdF4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uGMNxASdF4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMNxASdF4 .modal-body {
    padding: 1rem;
  }
}
.cid-uGMNxASdF4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uGMNxASdF4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMNxASdF4 .modal-footer {
    padding: 1rem;
  }
}
.cid-uGMNxASdF4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uGMNxASdF4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uGMNxASdF4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uGMNxASdF4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uGMNxASdF4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uGMNxASdF4 .modal-lg,
  .cid-uGMNxASdF4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uGMNxASdF4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uGMNxASdF4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uGMNxASdF4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uGMNxASdF4 .form-group {
  margin-bottom: 1rem;
}
.cid-uGMNxASdF4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uGMNxASdF4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGMNxASdF4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uGMNxASdF4 .mbr-section-btn {
  margin: 0;
}
.cid-uGMNxASdF4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uGMNVTlGum.popup-builder {
  background-color: #ffffff;
}
.cid-uGMNVTlGum.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uGMNVTlGum.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uGMNVTlGum .modal-content,
.cid-uGMNVTlGum .modal-dialog {
  height: auto;
}
.cid-uGMNVTlGum .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uGMNVTlGum .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uGMNVTlGum .form-wrapper .mbr-form .form-group,
  .cid-uGMNVTlGum .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uGMNVTlGum .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uGMNVTlGum .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGMNVTlGum .mbr-text {
  text-align: center;
}
.cid-uGMNVTlGum .pt-0 {
  padding-top: 0 !important;
}
.cid-uGMNVTlGum .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uGMNVTlGum .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uGMNVTlGum .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uGMNVTlGum .modal-open {
  overflow: hidden;
}
.cid-uGMNVTlGum .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uGMNVTlGum .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uGMNVTlGum .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uGMNVTlGum .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uGMNVTlGum .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uGMNVTlGum .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uGMNVTlGum .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uGMNVTlGum .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-uGMNVTlGum .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uGMNVTlGum .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uGMNVTlGum .modal-backdrop.fade {
  opacity: 0;
}
.cid-uGMNVTlGum .modal-backdrop.show {
  opacity: .5;
}
.cid-uGMNVTlGum .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uGMNVTlGum .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMNVTlGum .modal-header {
    padding: 1rem;
  }
}
.cid-uGMNVTlGum .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uGMNVTlGum .modal-header .close svg {
  fill: #353535;
}
.cid-uGMNVTlGum .modal-header .close:hover {
  opacity: 1;
}
.cid-uGMNVTlGum .modal-header .close:focus {
  outline: none;
}
.cid-uGMNVTlGum .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-uGMNVTlGum .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uGMNVTlGum .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMNVTlGum .modal-body {
    padding: 1rem;
  }
}
.cid-uGMNVTlGum .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uGMNVTlGum .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGMNVTlGum .modal-footer {
    padding: 1rem;
  }
}
.cid-uGMNVTlGum .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uGMNVTlGum .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uGMNVTlGum .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uGMNVTlGum .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uGMNVTlGum .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uGMNVTlGum .modal-lg,
  .cid-uGMNVTlGum .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uGMNVTlGum .modal-xl {
    max-width: 1140px;
  }
}
.cid-uGMNVTlGum .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uGMNVTlGum .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uGMNVTlGum .form-group {
  margin-bottom: 1rem;
}
.cid-uGMNVTlGum .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uGMNVTlGum .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uGMNVTlGum .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uGMNVTlGum .mbr-section-btn {
  margin: 0;
}
.cid-uGMNVTlGum .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJqXDKiUwj.popup-builder {
  background-color: #ffffff;
}
.cid-uJqXDKiUwj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJqXDKiUwj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJqXDKiUwj .modal-content,
.cid-uJqXDKiUwj .modal-dialog {
  height: auto;
}
.cid-uJqXDKiUwj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJqXDKiUwj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJqXDKiUwj .form-wrapper .mbr-form .form-group,
  .cid-uJqXDKiUwj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJqXDKiUwj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJqXDKiUwj .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJqXDKiUwj .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uJqXDKiUwj .pt-0 {
  padding-top: 0 !important;
}
.cid-uJqXDKiUwj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJqXDKiUwj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJqXDKiUwj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJqXDKiUwj .modal-open {
  overflow: hidden;
}
.cid-uJqXDKiUwj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJqXDKiUwj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJqXDKiUwj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJqXDKiUwj .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJqXDKiUwj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJqXDKiUwj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJqXDKiUwj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJqXDKiUwj .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-uJqXDKiUwj .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJqXDKiUwj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJqXDKiUwj .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJqXDKiUwj .modal-backdrop.show {
  opacity: .5;
}
.cid-uJqXDKiUwj .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJqXDKiUwj .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqXDKiUwj .modal-header {
    padding: 1rem;
  }
}
.cid-uJqXDKiUwj .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJqXDKiUwj .modal-header .close svg {
  fill: #ffffff;
}
.cid-uJqXDKiUwj .modal-header .close:hover {
  opacity: 1;
}
.cid-uJqXDKiUwj .modal-header .close:focus {
  outline: none;
}
.cid-uJqXDKiUwj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJqXDKiUwj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJqXDKiUwj .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqXDKiUwj .modal-body {
    padding: 1rem;
  }
}
.cid-uJqXDKiUwj .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJqXDKiUwj .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqXDKiUwj .modal-footer {
    padding: 1rem;
  }
}
.cid-uJqXDKiUwj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJqXDKiUwj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJqXDKiUwj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJqXDKiUwj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJqXDKiUwj .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJqXDKiUwj .modal-lg,
  .cid-uJqXDKiUwj .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJqXDKiUwj .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJqXDKiUwj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJqXDKiUwj .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJqXDKiUwj .form-group {
  margin-bottom: 1rem;
}
.cid-uJqXDKiUwj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJqXDKiUwj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJqXDKiUwj .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJqXDKiUwj .mbr-section-btn {
  margin: 0;
}
.cid-uJqXDKiUwj .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJqY16IWKL.popup-builder {
  background-color: #ffffff;
}
.cid-uJqY16IWKL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJqY16IWKL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJqY16IWKL .modal-content,
.cid-uJqY16IWKL .modal-dialog {
  height: auto;
}
.cid-uJqY16IWKL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJqY16IWKL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJqY16IWKL .form-wrapper .mbr-form .form-group,
  .cid-uJqY16IWKL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJqY16IWKL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJqY16IWKL .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJqY16IWKL .mbr-text {
  text-align: center;
}
.cid-uJqY16IWKL .pt-0 {
  padding-top: 0 !important;
}
.cid-uJqY16IWKL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJqY16IWKL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJqY16IWKL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJqY16IWKL .modal-open {
  overflow: hidden;
}
.cid-uJqY16IWKL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJqY16IWKL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJqY16IWKL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJqY16IWKL .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJqY16IWKL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJqY16IWKL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJqY16IWKL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJqY16IWKL .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-uJqY16IWKL .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJqY16IWKL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJqY16IWKL .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJqY16IWKL .modal-backdrop.show {
  opacity: .5;
}
.cid-uJqY16IWKL .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJqY16IWKL .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY16IWKL .modal-header {
    padding: 1rem;
  }
}
.cid-uJqY16IWKL .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJqY16IWKL .modal-header .close svg {
  fill: #ffffff;
}
.cid-uJqY16IWKL .modal-header .close:hover {
  opacity: 1;
}
.cid-uJqY16IWKL .modal-header .close:focus {
  outline: none;
}
.cid-uJqY16IWKL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJqY16IWKL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJqY16IWKL .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY16IWKL .modal-body {
    padding: 1rem;
  }
}
.cid-uJqY16IWKL .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJqY16IWKL .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY16IWKL .modal-footer {
    padding: 1rem;
  }
}
.cid-uJqY16IWKL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJqY16IWKL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJqY16IWKL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJqY16IWKL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJqY16IWKL .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJqY16IWKL .modal-lg,
  .cid-uJqY16IWKL .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJqY16IWKL .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJqY16IWKL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJqY16IWKL .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJqY16IWKL .form-group {
  margin-bottom: 1rem;
}
.cid-uJqY16IWKL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJqY16IWKL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJqY16IWKL .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJqY16IWKL .mbr-section-btn {
  margin: 0;
}
.cid-uJqY16IWKL .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJqY1YB3FZ.popup-builder {
  background-color: #ffffff;
}
.cid-uJqY1YB3FZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJqY1YB3FZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJqY1YB3FZ .modal-content,
.cid-uJqY1YB3FZ .modal-dialog {
  height: auto;
}
.cid-uJqY1YB3FZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJqY1YB3FZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJqY1YB3FZ .form-wrapper .mbr-form .form-group,
  .cid-uJqY1YB3FZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJqY1YB3FZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJqY1YB3FZ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJqY1YB3FZ .mbr-text {
  text-align: center;
}
.cid-uJqY1YB3FZ .pt-0 {
  padding-top: 0 !important;
}
.cid-uJqY1YB3FZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJqY1YB3FZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJqY1YB3FZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJqY1YB3FZ .modal-open {
  overflow: hidden;
}
.cid-uJqY1YB3FZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJqY1YB3FZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJqY1YB3FZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJqY1YB3FZ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJqY1YB3FZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJqY1YB3FZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJqY1YB3FZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJqY1YB3FZ .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-uJqY1YB3FZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJqY1YB3FZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJqY1YB3FZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJqY1YB3FZ .modal-backdrop.show {
  opacity: .5;
}
.cid-uJqY1YB3FZ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJqY1YB3FZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY1YB3FZ .modal-header {
    padding: 1rem;
  }
}
.cid-uJqY1YB3FZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJqY1YB3FZ .modal-header .close svg {
  fill: #ffffff;
}
.cid-uJqY1YB3FZ .modal-header .close:hover {
  opacity: 1;
}
.cid-uJqY1YB3FZ .modal-header .close:focus {
  outline: none;
}
.cid-uJqY1YB3FZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJqY1YB3FZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJqY1YB3FZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY1YB3FZ .modal-body {
    padding: 1rem;
  }
}
.cid-uJqY1YB3FZ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJqY1YB3FZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY1YB3FZ .modal-footer {
    padding: 1rem;
  }
}
.cid-uJqY1YB3FZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJqY1YB3FZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJqY1YB3FZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJqY1YB3FZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJqY1YB3FZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJqY1YB3FZ .modal-lg,
  .cid-uJqY1YB3FZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJqY1YB3FZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJqY1YB3FZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJqY1YB3FZ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJqY1YB3FZ .form-group {
  margin-bottom: 1rem;
}
.cid-uJqY1YB3FZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJqY1YB3FZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJqY1YB3FZ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJqY1YB3FZ .mbr-section-btn {
  margin: 0;
}
.cid-uJqY1YB3FZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJqY2Ux0OE.popup-builder {
  background-color: #ffffff;
}
.cid-uJqY2Ux0OE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJqY2Ux0OE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJqY2Ux0OE .modal-content,
.cid-uJqY2Ux0OE .modal-dialog {
  height: auto;
}
.cid-uJqY2Ux0OE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJqY2Ux0OE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJqY2Ux0OE .form-wrapper .mbr-form .form-group,
  .cid-uJqY2Ux0OE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJqY2Ux0OE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJqY2Ux0OE .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJqY2Ux0OE .mbr-text {
  text-align: center;
}
.cid-uJqY2Ux0OE .pt-0 {
  padding-top: 0 !important;
}
.cid-uJqY2Ux0OE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJqY2Ux0OE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJqY2Ux0OE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJqY2Ux0OE .modal-open {
  overflow: hidden;
}
.cid-uJqY2Ux0OE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJqY2Ux0OE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJqY2Ux0OE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJqY2Ux0OE .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJqY2Ux0OE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJqY2Ux0OE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJqY2Ux0OE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJqY2Ux0OE .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-uJqY2Ux0OE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJqY2Ux0OE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJqY2Ux0OE .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJqY2Ux0OE .modal-backdrop.show {
  opacity: .5;
}
.cid-uJqY2Ux0OE .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJqY2Ux0OE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY2Ux0OE .modal-header {
    padding: 1rem;
  }
}
.cid-uJqY2Ux0OE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJqY2Ux0OE .modal-header .close svg {
  fill: #ffffff;
}
.cid-uJqY2Ux0OE .modal-header .close:hover {
  opacity: 1;
}
.cid-uJqY2Ux0OE .modal-header .close:focus {
  outline: none;
}
.cid-uJqY2Ux0OE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJqY2Ux0OE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJqY2Ux0OE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY2Ux0OE .modal-body {
    padding: 1rem;
  }
}
.cid-uJqY2Ux0OE .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJqY2Ux0OE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY2Ux0OE .modal-footer {
    padding: 1rem;
  }
}
.cid-uJqY2Ux0OE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJqY2Ux0OE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJqY2Ux0OE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJqY2Ux0OE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJqY2Ux0OE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJqY2Ux0OE .modal-lg,
  .cid-uJqY2Ux0OE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJqY2Ux0OE .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJqY2Ux0OE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJqY2Ux0OE .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJqY2Ux0OE .form-group {
  margin-bottom: 1rem;
}
.cid-uJqY2Ux0OE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJqY2Ux0OE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJqY2Ux0OE .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJqY2Ux0OE .mbr-section-btn {
  margin: 0;
}
.cid-uJqY2Ux0OE .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJqY413Qjf.popup-builder {
  background-color: #ffffff;
}
.cid-uJqY413Qjf.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJqY413Qjf.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJqY413Qjf .modal-content,
.cid-uJqY413Qjf .modal-dialog {
  height: auto;
}
.cid-uJqY413Qjf .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJqY413Qjf .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJqY413Qjf .form-wrapper .mbr-form .form-group,
  .cid-uJqY413Qjf .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJqY413Qjf .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJqY413Qjf .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJqY413Qjf .mbr-text {
  text-align: center;
}
.cid-uJqY413Qjf .pt-0 {
  padding-top: 0 !important;
}
.cid-uJqY413Qjf .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJqY413Qjf .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJqY413Qjf .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJqY413Qjf .modal-open {
  overflow: hidden;
}
.cid-uJqY413Qjf .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJqY413Qjf .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJqY413Qjf .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJqY413Qjf .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJqY413Qjf .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJqY413Qjf .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJqY413Qjf .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJqY413Qjf .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-uJqY413Qjf .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJqY413Qjf .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJqY413Qjf .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJqY413Qjf .modal-backdrop.show {
  opacity: .5;
}
.cid-uJqY413Qjf .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJqY413Qjf .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY413Qjf .modal-header {
    padding: 1rem;
  }
}
.cid-uJqY413Qjf .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJqY413Qjf .modal-header .close svg {
  fill: #ffffff;
}
.cid-uJqY413Qjf .modal-header .close:hover {
  opacity: 1;
}
.cid-uJqY413Qjf .modal-header .close:focus {
  outline: none;
}
.cid-uJqY413Qjf .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJqY413Qjf .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJqY413Qjf .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY413Qjf .modal-body {
    padding: 1rem;
  }
}
.cid-uJqY413Qjf .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJqY413Qjf .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY413Qjf .modal-footer {
    padding: 1rem;
  }
}
.cid-uJqY413Qjf .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJqY413Qjf .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJqY413Qjf .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJqY413Qjf .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJqY413Qjf .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJqY413Qjf .modal-lg,
  .cid-uJqY413Qjf .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJqY413Qjf .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJqY413Qjf .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJqY413Qjf .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJqY413Qjf .form-group {
  margin-bottom: 1rem;
}
.cid-uJqY413Qjf .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJqY413Qjf .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJqY413Qjf .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJqY413Qjf .mbr-section-btn {
  margin: 0;
}
.cid-uJqY413Qjf .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJqY4JBSFA.popup-builder {
  background-color: #ffffff;
}
.cid-uJqY4JBSFA.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJqY4JBSFA.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJqY4JBSFA .modal-content,
.cid-uJqY4JBSFA .modal-dialog {
  height: auto;
}
.cid-uJqY4JBSFA .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJqY4JBSFA .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJqY4JBSFA .form-wrapper .mbr-form .form-group,
  .cid-uJqY4JBSFA .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJqY4JBSFA .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJqY4JBSFA .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJqY4JBSFA .mbr-text {
  text-align: center;
}
.cid-uJqY4JBSFA .pt-0 {
  padding-top: 0 !important;
}
.cid-uJqY4JBSFA .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJqY4JBSFA .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJqY4JBSFA .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJqY4JBSFA .modal-open {
  overflow: hidden;
}
.cid-uJqY4JBSFA .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJqY4JBSFA .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJqY4JBSFA .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJqY4JBSFA .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJqY4JBSFA .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJqY4JBSFA .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJqY4JBSFA .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJqY4JBSFA .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-uJqY4JBSFA .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJqY4JBSFA .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJqY4JBSFA .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJqY4JBSFA .modal-backdrop.show {
  opacity: .5;
}
.cid-uJqY4JBSFA .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJqY4JBSFA .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY4JBSFA .modal-header {
    padding: 1rem;
  }
}
.cid-uJqY4JBSFA .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJqY4JBSFA .modal-header .close svg {
  fill: #ffffff;
}
.cid-uJqY4JBSFA .modal-header .close:hover {
  opacity: 1;
}
.cid-uJqY4JBSFA .modal-header .close:focus {
  outline: none;
}
.cid-uJqY4JBSFA .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJqY4JBSFA .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJqY4JBSFA .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY4JBSFA .modal-body {
    padding: 1rem;
  }
}
.cid-uJqY4JBSFA .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJqY4JBSFA .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJqY4JBSFA .modal-footer {
    padding: 1rem;
  }
}
.cid-uJqY4JBSFA .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJqY4JBSFA .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJqY4JBSFA .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJqY4JBSFA .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJqY4JBSFA .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJqY4JBSFA .modal-lg,
  .cid-uJqY4JBSFA .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJqY4JBSFA .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJqY4JBSFA .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJqY4JBSFA .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJqY4JBSFA .form-group {
  margin-bottom: 1rem;
}
.cid-uJqY4JBSFA .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJqY4JBSFA .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJqY4JBSFA .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJqY4JBSFA .mbr-section-btn {
  margin: 0;
}
.cid-uJqY4JBSFA .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJrferrilO.popup-builder {
  background-color: #ffffff;
}
.cid-uJrferrilO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJrferrilO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJrferrilO .modal-content,
.cid-uJrferrilO .modal-dialog {
  height: auto;
}
.cid-uJrferrilO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJrferrilO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJrferrilO .form-wrapper .mbr-form .form-group,
  .cid-uJrferrilO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJrferrilO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJrferrilO .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJrferrilO .mbr-text {
  text-align: center;
}
.cid-uJrferrilO .pt-0 {
  padding-top: 0 !important;
}
.cid-uJrferrilO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJrferrilO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJrferrilO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJrferrilO .modal-open {
  overflow: hidden;
}
.cid-uJrferrilO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJrferrilO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJrferrilO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJrferrilO .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJrferrilO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJrferrilO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJrferrilO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJrferrilO .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-uJrferrilO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJrferrilO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJrferrilO .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJrferrilO .modal-backdrop.show {
  opacity: .5;
}
.cid-uJrferrilO .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJrferrilO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJrferrilO .modal-header {
    padding: 1rem;
  }
}
.cid-uJrferrilO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJrferrilO .modal-header .close svg {
  fill: #ffffff;
}
.cid-uJrferrilO .modal-header .close:hover {
  opacity: 1;
}
.cid-uJrferrilO .modal-header .close:focus {
  outline: none;
}
.cid-uJrferrilO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJrferrilO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJrferrilO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJrferrilO .modal-body {
    padding: 1rem;
  }
}
.cid-uJrferrilO .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJrferrilO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJrferrilO .modal-footer {
    padding: 1rem;
  }
}
.cid-uJrferrilO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJrferrilO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJrferrilO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJrferrilO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJrferrilO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJrferrilO .modal-lg,
  .cid-uJrferrilO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJrferrilO .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJrferrilO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJrferrilO .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJrferrilO .form-group {
  margin-bottom: 1rem;
}
.cid-uJrferrilO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJrferrilO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJrferrilO .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJrferrilO .mbr-section-btn {
  margin: 0;
}
.cid-uJrferrilO .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJOi4W3WbS.popup-builder {
  background-color: #ffffff;
}
.cid-uJOi4W3WbS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uJOi4W3WbS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uJOi4W3WbS .modal-content,
.cid-uJOi4W3WbS .modal-dialog {
  height: auto;
}
.cid-uJOi4W3WbS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uJOi4W3WbS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uJOi4W3WbS .form-wrapper .mbr-form .form-group,
  .cid-uJOi4W3WbS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uJOi4W3WbS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uJOi4W3WbS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJOi4W3WbS .mbr-text {
  text-align: center;
}
.cid-uJOi4W3WbS .pt-0 {
  padding-top: 0 !important;
}
.cid-uJOi4W3WbS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uJOi4W3WbS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uJOi4W3WbS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uJOi4W3WbS .modal-open {
  overflow: hidden;
}
.cid-uJOi4W3WbS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uJOi4W3WbS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uJOi4W3WbS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uJOi4W3WbS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uJOi4W3WbS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uJOi4W3WbS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uJOi4W3WbS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uJOi4W3WbS .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-uJOi4W3WbS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uJOi4W3WbS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uJOi4W3WbS .modal-backdrop.fade {
  opacity: 0;
}
.cid-uJOi4W3WbS .modal-backdrop.show {
  opacity: .5;
}
.cid-uJOi4W3WbS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uJOi4W3WbS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJOi4W3WbS .modal-header {
    padding: 1rem;
  }
}
.cid-uJOi4W3WbS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uJOi4W3WbS .modal-header .close svg {
  fill: #ffffff;
}
.cid-uJOi4W3WbS .modal-header .close:hover {
  opacity: 1;
}
.cid-uJOi4W3WbS .modal-header .close:focus {
  outline: none;
}
.cid-uJOi4W3WbS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-uJOi4W3WbS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uJOi4W3WbS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJOi4W3WbS .modal-body {
    padding: 1rem;
  }
}
.cid-uJOi4W3WbS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uJOi4W3WbS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJOi4W3WbS .modal-footer {
    padding: 1rem;
  }
}
.cid-uJOi4W3WbS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uJOi4W3WbS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uJOi4W3WbS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uJOi4W3WbS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uJOi4W3WbS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uJOi4W3WbS .modal-lg,
  .cid-uJOi4W3WbS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uJOi4W3WbS .modal-xl {
    max-width: 1140px;
  }
}
.cid-uJOi4W3WbS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uJOi4W3WbS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uJOi4W3WbS .form-group {
  margin-bottom: 1rem;
}
.cid-uJOi4W3WbS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uJOi4W3WbS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uJOi4W3WbS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uJOi4W3WbS .mbr-section-btn {
  margin: 0;
}
.cid-uJOi4W3WbS .mbr-section-btn .btn {
  margin: 0;
}
