.btn {
  border-width: 2px;
}

body {
  font-family: 'Lato', sans-serif;
}

.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}

.display-1>.mbr-iconfont {
  font-size: 5.75rem;
}

.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}

.display-2>.mbr-iconfont {
  font-size: 4rem;
}

.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

.display-4>.mbr-iconfont {
  font-size: 1.375rem;
}

.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}

.display-5>.mbr-iconfont {
  font-size: 2.25rem;
}

.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

.display-7>.mbr-iconfont {
  font-size: 1.125rem;
}

/* ---- 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.68rem;
  }
}

@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc(2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-2 {
    font-size: 2.56rem;
    font-size: calc(1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-4 {
    font-size: 0.88rem;
    font-size: calc(1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-5 {
    font-size: 1.44rem;
    font-size: calc(1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }

  .display-7 {
    font-size: 0.72rem;
    font-size: calc(0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc(1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}

/* Buttons */
.btn {
  padding: 0.6rem 2rem;
  border-radius: 0px;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}

.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}

.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}

.bg-primary {
  background-color: #ed2a08 !important;
}

.bg-success {
  background-color: #40b0bf !important;
}

.bg-info {
  background-color: #47b5ed !important;
}

.bg-warning {
  background-color: #9bffff !important;
}

.bg-danger {
  background-color: #ff9966 !important;
}

.btn-primary,
.btn-primary:active {
  background-color: #ed2a08 !important;
  border-color: #ed2a08 !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ed2a08 !important;
  border-color: #ed2a08 !important;
  box-shadow: #ed2a08 2px 2px 20px 0px;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #991b05 !important;
  border-color: #991b05 !important;
}

.btn-secondary,
.btn-secondary:active {
  background-color: #ed2a08 !important;
  border-color: #ed2a08 !important;
  color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ed2a08 !important;
  border-color: #ed2a08 !important;
  box-shadow: #ed2a08 2px 2px 20px 0px;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #991b05 !important;
  border-color: #991b05 !important;
}

.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  box-shadow: #47b5ed 2px 2px 20px 0px;
}

.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}

.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  box-shadow: #40b0bf 2px 2px 20px 0px;
}

.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}

.btn-warning,
.btn-warning:active {
  background-color: #9bffff !important;
  border-color: #9bffff !important;
  color: #ffffff !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9bffff !important;
  border-color: #9bffff !important;
  box-shadow: #9bffff 2px 2px 20px 0px;
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #44ffff !important;
  border-color: #44ffff !important;
}

.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  box-shadow: #ff9966 2px 2px 20px 0px;
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}

.btn-white {
  color: #ed2a08 !important;
  background-color: white;
}

.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: white 2px 2px 20px 0px;
}

.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}

.btn-white:hover,
.btn-white:active {
  color: #ed2a08 !important;
  box-shadow: #ed2a08 2px 2px 20px 0px;
}

.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: #232323 2px 2px 20px 0px;
}

.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}

.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ed2a08;
  color: #ed2a08;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #991b05 !important;
  background-color: transparent !important;
  border-color: #991b05 !important;
  box-shadow: none !important;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ed2a08 !important;
  border-color: #ed2a08 !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ed2a08;
  color: #ed2a08;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #991b05 !important;
  background-color: transparent !important;
  border-color: #991b05 !important;
  box-shadow: none !important;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ed2a08 !important;
  border-color: #ed2a08 !important;
}

.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}

.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: #2a747e !important;
  box-shadow: none !important;
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}

.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #9bffff;
  color: #9bffff;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #44ffff !important;
  background-color: transparent !important;
  border-color: #44ffff !important;
  box-shadow: none !important;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #009b9b !important;
  background-color: #9bffff !important;
  border-color: #9bffff !important;
}

.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  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: #ff5f0f !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #ed2a08 !important;
}

.text-secondary {
  color: #ed2a08 !important;
}

.text-success {
  color: #40b0bf !important;
}

.text-info {
  color: #47b5ed !important;
}

.text-warning {
  color: #9bffff !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: #8a1905 !important;
}

a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #8a1905 !important;
}

a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}

a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}

a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #35ffff !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: #fafafa !important;
}

a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}

a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}

.nav-tabs .nav-link.active {
  color: #ed2a08;
}

.nav-tabs .nav-link:not(.active) {
  color: #232323;
}

.alert-success {
  background-color: #70c770;
}

.alert-info {
  background-color: #47b5ed;
}

.alert-warning {
  background-color: #9bffff;
}

.alert-danger {
  background-color: #ff9966;
}

.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}

.mbr-gallery-filter li a {
  border-radius: 100px !important;
}

.mbr-gallery-filter li.active .btn {
  background-color: #ed2a08;
  border-color: #ed2a08;
  color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}

.nav-tabs .nav-link {
  border-radius: 100px !important;
}

a,
a:hover {
  color: #ed2a08;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdccc4;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}

.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}

.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}

/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}

.form-control {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}

.form-control>.mbr-iconfont {
  font-size: 1.375rem;
}

.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ed2a08 !important;
}

.form-control:-webkit-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}

.form-control:-webkit-input-placeholder>.mbr-iconfont {
  font-size: 1.375rem;
}

blockquote {
  border-color: #ed2a08;
}

/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}

.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}

.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}

.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ed2a08;
  color: #ffffff;
}

.jq-number__spin {
  transition: 0.25s ease;
}

.jq-number__spin:hover {
  border-color: #ed2a08;
}

.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: #ed2a08;
  border-bottom-color: #ed2a08;
}

.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: #ed2a08 !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: #ed2a08 !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='%23ed2a08' %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-teixh6kuDk {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #353535;
}

.cid-teixh6kuDk .mbr-text {
  color: #767676;
}

.cid-teixh6kuDk .card-box {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .cid-teixh6kuDk .card-box {
    flex-direction: column;
  }
}

.cid-teixh6kuDk .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}

.cid-teixh6kuDk .mbr-section-subtitle {
  color: #767676;
}

.cid-teixh6kuDk .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}

@media (max-width: 767px) {
  .cid-teixh6kuDk .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}

.cid-teixh6kuDk .title .card-title {
  z-index: 1;
}

.cid-teixh6kuDk h4 {
  margin: 0;
}

.cid-teixh6kuDk .num {
  color: #000000;
}

.cid-teixh6kuDk .num-green {
  color: #27ee28;
}

@media (max-width: 992px) {
  .cid-teixh6kuDk .card {
    margin-bottom: 1.5rem;
  }
}

.cid-teixh6kuDk .card-title,
.cid-teixh6kuDk .card-img {
  color: #ffffff;
  text-align: left;
}

.cid-teixh6kuDk .card-title-green {
  color: #27ee28;
  text-align: left;
}

.cid-teixh6kuDk .num,
.cid-teixh6kuDk .line {
  color: #ffffff;
  text-align: left;
}

.cid-teixh6kuDk .mbr-fallback-image.disabled {
  display: none;
}

.cid-teixh6kuDk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-teixh6kuDk .mbr-section-title,
.cid-teixh6kuDk .card-box {
  color: #ffffff;
  text-align: left;
}

.cid-teixhLzoDq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}

.cid-teixhLzoDq .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ff3411;
  margin-bottom: 1rem;
}

.cid-teixhLzoDq .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #0d0c22;
}

.cid-teixhLzoDq .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}

.cid-teixhLzoDq .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

.cid-teixhLzoDq .card-wrapper:hover {
  background: #f4f4f4;
}

.cid-teixhLzoDq .card-title,
.cid-teixhLzoDq .card-box {
  color: #000000;
}

.cid-teixhLzoDq .main-title,
.cid-teixhLzoDq .title-col {
  text-align: left;
  color: #353535;
}

.cid-teixhLzoDq .card-text {
  color: #727272;
}

.cid-teixj7cNJb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/handphoneapp-1698x1001.png");
}

.cid-teixj7cNJb .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}

.cid-teixj7cNJb .scroll {
  overflow-x: auto;
  padding: 0;
}

.cid-teixj7cNJb .table-wrapper {
  margin: 0 auto;
}

.cid-teixj7cNJb table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.cid-teixj7cNJb table th {
  padding: 1rem .75rem;
  transition: all .2s;
  text-align: center;
  background-color: #353535;
  color: white;
  vertical-align: middle;
}

.cid-teixj7cNJb table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
}

.cid-teixj7cNJb table.table {
  background: #f4f4f4;
}

.cid-teixj7cNJb .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}

.cid-teixj7cNJb .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}

.cid-teixj7cNJb .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}

.cid-teixj7cNJb .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}

.cid-teixj7cNJb .dataTables_wrapper {
  display: block;
}

.cid-teixj7cNJb .dataTables_wrapper .search {
  margin-bottom: .5rem;
}

.cid-teixj7cNJb .dataTables_wrapper .table {
  overflow-x: auto;
}

.cid-teixj7cNJb .head-item:after,
.cid-teixj7cNJb .head-item:before {
  bottom: 1.6em !important;
}

@media (max-width: 1300px) {
  .cid-teixj7cNJb .dataTables_filter {
    text-align: center;
  }

  .cid-teixj7cNJb .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .cid-teixj7cNJb .table-wrapper {
    width: 100% !important;
  }

  .cid-teixj7cNJb table th,
  .cid-teixj7cNJb table td {
    padding: .1rem;
  }
}

.cid-teixj7cNJb .mbr-section-title,
.cid-teixj7cNJb .underline {
  text-align: left;
}

.cid-teixj7cNJb .body-item {
  color: #000000;
}

.cid-teixj7cNJb .body-itemred {
  color: #ed2a08;
}

.cid-teixj7cNJb .body-itemgreen {
  color: #0dad0e;
}

.cid-teixj7cNJb .head-item {
  color: #ffffff;
}

.cid-teixj7cNJb .info {
  color: #353535;
}

.cid-teixj7cNJb LABEL {
  color: #000000;
  text-align: right;
}

.cid-teixjJopyl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}

.cid-teixjJopyl .item-img {
  position: relative;
}

.cid-teixjJopyl .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}

.cid-teixjJopyl .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}

.cid-teixjJopyl .btn-tag:hover,
.cid-teixjJopyl .btn-tag:focus {
  box-shadow: none;
}

.cid-teixjJopyl img,
.cid-teixjJopyl .item-img {
  width: 100%;
  margin-bottom: 1rem;
}

.cid-teixjJopyl .item:focus,
.cid-teixjJopyl span:focus {
  outline: none;
}

.cid-teixjJopyl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}

.cid-teixjJopyl .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}

.cid-teixjJopyl .mbr-section-btn {
  margin-top: auto !important;
}

.cid-teixjJopyl .mbr-section-title {
  color: #353535;
  text-align: left;
}

.cid-teixjJopyl .mbr-text,
.cid-teixjJopyl .mbr-section-btn {
  color: #ffffff;
}

.cid-teixjJopyl .item-title {
  color: #353535;
}

.cid-teixjJopyl .item-subtitle {
  color: #ffffff;
}

.cid-teixjJopyl P {
  color: #353535;
}

.cid-teiUIM7Ojb .google-map {
  height: 25rem;
  position: relative;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}

.cid-teiUIM7Ojb .google-map iframe {
  height: 100%;
  width: 100%;
}

.cid-teiUIM7Ojb .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}

.cid-teiUIM7Ojb .google-map[data-state] {
  background: #e9e5dc;
}

.cid-teiUIM7Ojb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}

.cid-tej9INTkqh {
  z-index: 1000;
  width: 100%;
}

.cid-tej9INTkqh .btn {
  padding: 0.3rem 2rem;
}

.cid-tej9INTkqh .nav-link {
  position: relative;
}

.cid-tej9INTkqh .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #ed2a08;
}

.cid-tej9INTkqh .nav-link:hover:before {
  width: 100%;
}

.cid-tej9INTkqh nav.navbar {
  position: fixed;
}

.cid-tej9INTkqh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tej9INTkqh .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tej9INTkqh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}

.cid-tej9INTkqh .dropdown-item:hover,
.cid-tej9INTkqh .dropdown-item:focus {
  background: #ed2a08 !important;
  color: white !important;
}

.cid-tej9INTkqh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.cid-tej9INTkqh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cid-tej9INTkqh .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}

.cid-tej9INTkqh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}

.cid-tej9INTkqh .container {
  display: flex;
  margin: auto;
}

.cid-tej9INTkqh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}

.cid-tej9INTkqh .dropdown-menu,
.cid-tej9INTkqh .navbar.opened {
  background: #ffffff !important;
}

.cid-tej9INTkqh .nav-item:focus,
.cid-tej9INTkqh .nav-link:focus {
  outline: none;
}

.cid-tej9INTkqh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}

.cid-tej9INTkqh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tej9INTkqh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}

.cid-tej9INTkqh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tej9INTkqh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}

.cid-tej9INTkqh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}

.cid-tej9INTkqh .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}

.cid-tej9INTkqh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}

.cid-tej9INTkqh .navbar.opened {
  transition: all 0.3s;
}

.cid-tej9INTkqh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}

.cid-tej9INTkqh .navbar .navbar-logo img {
  width: auto;
}

.cid-tej9INTkqh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}

.cid-tej9INTkqh .navbar.collapsed {
  justify-content: center;
}

.cid-tej9INTkqh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

.cid-tej9INTkqh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}

@media (min-width: 992px) {
  .cid-tej9INTkqh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}

.cid-tej9INTkqh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}

.cid-tej9INTkqh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}

.cid-tej9INTkqh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}

.cid-tej9INTkqh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

.cid-tej9INTkqh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}

.cid-tej9INTkqh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .cid-tej9INTkqh .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-tej9INTkqh .navbar.opened .dropdown-menu {
    top: 0;
  }

  .cid-tej9INTkqh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }

  .cid-tej9INTkqh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }

  .cid-tej9INTkqh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }

  .cid-tej9INTkqh .navbar .navbar-logo img {
    height: 3rem !important;
  }

  .cid-tej9INTkqh .navbar ul.navbar-nav li {
    margin: auto;
  }

  .cid-tej9INTkqh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }

  .cid-tej9INTkqh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }

  .cid-tej9INTkqh .navbar .navbar-toggler {
    flex-basis: auto;
  }

  .cid-tej9INTkqh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.cid-tej9INTkqh .navbar.navbar-short {
  min-height: 60px;
}

.cid-tej9INTkqh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}

.cid-tej9INTkqh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}

.cid-tej9INTkqh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}

.cid-tej9INTkqh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}

.cid-tej9INTkqh .navbar-brand .navbar-logo a {
  outline: none;
}

.cid-tej9INTkqh .dropdown-item.active,
.cid-tej9INTkqh .dropdown-item:active {
  background-color: transparent;
}

.cid-tej9INTkqh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.cid-tej9INTkqh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}

.cid-tej9INTkqh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}

.cid-tej9INTkqh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}

.cid-tej9INTkqh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}

.cid-tej9INTkqh .navbar .dropdown.open>.dropdown-menu {
  display: block;
}

.cid-tej9INTkqh ul.navbar-nav {
  flex-wrap: wrap;
}

.cid-tej9INTkqh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}

.cid-tej9INTkqh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282b2f;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}

.cid-tej9INTkqh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tej9INTkqh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}

.cid-tej9INTkqh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}

.cid-tej9INTkqh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tej9INTkqh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}

.cid-tej9INTkqh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cid-tej9INTkqh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .cid-tej9INTkqh .navbar {
    height: 70px;
  }

  .cid-tej9INTkqh .navbar.opened {
    height: auto;
  }

  .cid-tej9INTkqh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.cid-tgWwGuBwHR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}

.cid-tgWwGuBwHR .mbr-text {
  color: #00284E;
  opacity: 0.8;
}

.cid-thMUoHtWxd.popup-builder {
  background-color: #ffffff;
}

.cid-thMUoHtWxd.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}

.cid-thMUoHtWxd.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}

.cid-thMUoHtWxd .modal-content,
.cid-thMUoHtWxd .modal-dialog {
  height: auto;
}

.cid-thMUoHtWxd .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}

.cid-thMUoHtWxd .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}

@media (min-width: 769px) {

  .cid-thMUoHtWxd .form-wrapper .mbr-form .form-group,
  .cid-thMUoHtWxd .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}

.cid-thMUoHtWxd .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}

.cid-thMUoHtWxd .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}

.cid-thMUoHtWxd .mbr-text {
  text-align: center;
}

.cid-thMUoHtWxd .pt-0 {
  padding-top: 0 !important;
}

.cid-thMUoHtWxd .pb-0 {
  padding-bottom: 0 !important;
}

.cid-thMUoHtWxd .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.cid-thMUoHtWxd .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.cid-thMUoHtWxd .modal-open {
  overflow: hidden;
}

.cid-thMUoHtWxd .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.cid-thMUoHtWxd .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.cid-thMUoHtWxd .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.cid-thMUoHtWxd .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

.cid-thMUoHtWxd .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.cid-thMUoHtWxd .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}

.cid-thMUoHtWxd .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}

.cid-thMUoHtWxd .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-thMUoHtWxd .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}

.cid-thMUoHtWxd .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.cid-thMUoHtWxd .modal-backdrop.fade {
  opacity: 0;
}

.cid-thMUoHtWxd .modal-backdrop.show {
  opacity: .5;
}

.cid-thMUoHtWxd .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}

@media (min-width: 992px) {
  .cid-thMUoHtWxd .modal-header {
    padding: 2rem 2rem 1rem;
  }
}

@media (max-width: 991px) {
  .cid-thMUoHtWxd .modal-header {
    padding: 1rem;
  }
}

.cid-thMUoHtWxd .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}

.cid-thMUoHtWxd .modal-header .close svg {
  fill: #353535;
}

.cid-thMUoHtWxd .modal-header .close:hover {
  opacity: 1;
}

.cid-thMUoHtWxd .modal-header .close:focus {
  outline: none;
}

.cid-thMUoHtWxd .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}

.cid-thMUoHtWxd .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .cid-thMUoHtWxd .modal-body {
    padding: 1rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-thMUoHtWxd .modal-body {
    padding: 1rem;
  }
}

.cid-thMUoHtWxd .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}

@media (min-width: 992px) {
  .cid-thMUoHtWxd .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-thMUoHtWxd .modal-footer {
    padding: 1rem;
  }
}

.cid-thMUoHtWxd .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .cid-thMUoHtWxd .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .cid-thMUoHtWxd .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .cid-thMUoHtWxd .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  .cid-thMUoHtWxd .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .cid-thMUoHtWxd .modal-lg,
  .cid-thMUoHtWxd .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .cid-thMUoHtWxd .modal-xl {
    max-width: 1140px;
  }
}

.cid-thMUoHtWxd .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.cid-thMUoHtWxd .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.cid-thMUoHtWxd .form-group {
  margin-bottom: 1rem;
}

.cid-thMUoHtWxd .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.cid-thMUoHtWxd .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.cid-thMUoHtWxd .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.cid-thMUoHtWxd .mbr-section-btn {
  margin: 0;
}

.cid-thMUoHtWxd .mbr-section-btn .btn {
  margin: 0;
}

.cid-teieWGVLhd {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/handphoneapp-1698x1001.png");
}

.cid-teieWGVLhd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}

.cid-teieWGVLhd textarea {
  min-height: 200px;
}

.cid-teieWGVLhd .btn {
  padding: 1rem 3rem;
}

.cid-teieWGVLhd .form-control,
.cid-teieWGVLhd .field-input {
  padding: 1.2rem 1.6rem;
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  border-radius: 1rem;
  outline: none;
}

.cid-teieWGVLhd .form-control::-webkit-input-placeholder,
.cid-teieWGVLhd .field-input::-webkit-input-placeholder,
.cid-teieWGVLhd .form-control::-webkit-input-placeholder,
.cid-teieWGVLhd .field-input::-webkit-input-placeholder {
  color: #bbbbbb;
}

.cid-teieWGVLhd .form-control:-moz-placeholder,
.cid-teieWGVLhd .field-input:-moz-placeholder,
.cid-teieWGVLhd .form-control:-moz-placeholder,
.cid-teieWGVLhd .field-input:-moz-placeholder {
  color: #bbbbbb;
}

.cid-teieWGVLhd .form-control:hover,
.cid-teieWGVLhd .field-input:hover,
.cid-teieWGVLhd .form-control:focus,
.cid-teieWGVLhd .field-input:focus {
  background-color: #333333;
  border-color: #333333 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}

.cid-teieWGVLhd .form-control:hover::-webkit-input-placeholder,
.cid-teieWGVLhd .field-input:hover::-webkit-input-placeholder,
.cid-teieWGVLhd .form-control:focus::-webkit-input-placeholder,
.cid-teieWGVLhd .field-input:focus::-webkit-input-placeholder,
.cid-teieWGVLhd .form-control:hover::-webkit-input-placeholder,
.cid-teieWGVLhd .field-input:hover::-webkit-input-placeholder,
.cid-teieWGVLhd .form-control:focus::-webkit-input-placeholder,
.cid-teieWGVLhd .field-input:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}

.cid-teieWGVLhd .form-control:hover:-moz-placeholder,
.cid-teieWGVLhd .field-input:hover:-moz-placeholder,
.cid-teieWGVLhd .form-control:focus:-moz-placeholder,
.cid-teieWGVLhd .field-input:focus:-moz-placeholder,
.cid-teieWGVLhd .form-control:hover:-moz-placeholder,
.cid-teieWGVLhd .field-input:hover:-moz-placeholder,
.cid-teieWGVLhd .form-control:focus:-moz-placeholder,
.cid-teieWGVLhd .field-input:focus:-moz-placeholder {
  color: #bbbbbb;
}

.cid-teieWGVLhd .jq-number__spin:hover,
.cid-teieWGVLhd .jq-number__spin:focus {
  background-color: #333333;
  border-color: #333333 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}

.cid-teieWGVLhd .jq-number__spin {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}

.cid-teieWGVLhd .jq-selectbox li,
.cid-teieWGVLhd .jq-selectbox li {
  background-color: #333333;
  color: #ffffff;
}

.cid-teieWGVLhd .jq-selectbox li:hover,
.cid-teieWGVLhd .jq-selectbox li.selected {
  background-color: #333333;
  color: #ffffff;
}

.cid-teieWGVLhd .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-teieWGVLhd .jq-number__spin.minus:hover:after,
.cid-teieWGVLhd .jq-number__spin.plus:hover:after {
  border-top-color: #333333;
  border-bottom-color: #333333;
}

.cid-teieWGVLhd .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-teieWGVLhd .jq-number__spin.minus:after,
.cid-teieWGVLhd .jq-number__spin.plus:after {
  border-top-color: #333333;
  border-bottom-color: #333333;
}

.cid-teieWGVLhd input::-webkit-clear-button {
  display: none;
}

.cid-teieWGVLhd input::-webkit-inner-spin-button {
  display: none;
}

.cid-teieWGVLhd input::-webkit-outer-spin-button {
  display: none;
}

.cid-teieWGVLhd input::-webkit-calendar-picker-indicator {
  display: none;
}

.cid-teieWGVLhd .mbr-section-title {
  color: #000000;
  text-align: left;
}

.cid-teie6dKpnL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #353535;
}

.cid-teie6dKpnL .google-map {
  height: 30rem;
  position: relative;
}

.cid-teie6dKpnL .google-map iframe {
  height: 100%;
  width: 100%;
}

.cid-teie6dKpnL .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}

.cid-teie6dKpnL .google-map[data-state] {
  background: #e9e5dc;
}

.cid-teie6dKpnL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}

.cid-teie6dKpnL .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}

.cid-tej9INTkqh {
  z-index: 1000;
  width: 100%;
}

.cid-tej9INTkqh .btn {
  padding: 0.3rem 2rem;
}

.cid-tej9INTkqh .nav-link {
  position: relative;
}

.cid-tej9INTkqh .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #ed2a08;
}

.cid-tej9INTkqh .nav-link:hover:before {
  width: 100%;
}

.cid-tej9INTkqh nav.navbar {
  position: fixed;
}

.cid-tej9INTkqh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tej9INTkqh .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tej9INTkqh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}

.cid-tej9INTkqh .dropdown-item:hover,
.cid-tej9INTkqh .dropdown-item:focus {
  background: #ed2a08 !important;
  color: white !important;
}

.cid-tej9INTkqh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.cid-tej9INTkqh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cid-tej9INTkqh .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}

.cid-tej9INTkqh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}

.cid-tej9INTkqh .container {
  display: flex;
  margin: auto;
}

.cid-tej9INTkqh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}

.cid-tej9INTkqh .dropdown-menu,
.cid-tej9INTkqh .navbar.opened {
  background: #ffffff !important;
}

.cid-tej9INTkqh .nav-item:focus,
.cid-tej9INTkqh .nav-link:focus {
  outline: none;
}

.cid-tej9INTkqh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}

.cid-tej9INTkqh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tej9INTkqh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}

.cid-tej9INTkqh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tej9INTkqh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}

.cid-tej9INTkqh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}

.cid-tej9INTkqh .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}

.cid-tej9INTkqh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}

.cid-tej9INTkqh .navbar.opened {
  transition: all 0.3s;
}

.cid-tej9INTkqh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}

.cid-tej9INTkqh .navbar .navbar-logo img {
  width: auto;
}

.cid-tej9INTkqh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}

.cid-tej9INTkqh .navbar.collapsed {
  justify-content: center;
}

.cid-tej9INTkqh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

.cid-tej9INTkqh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}

@media (min-width: 992px) {
  .cid-tej9INTkqh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}

.cid-tej9INTkqh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}

.cid-tej9INTkqh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}

.cid-tej9INTkqh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}

.cid-tej9INTkqh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

.cid-tej9INTkqh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}

.cid-tej9INTkqh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .cid-tej9INTkqh .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-tej9INTkqh .navbar.opened .dropdown-menu {
    top: 0;
  }

  .cid-tej9INTkqh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }

  .cid-tej9INTkqh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }

  .cid-tej9INTkqh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }

  .cid-tej9INTkqh .navbar .navbar-logo img {
    height: 3rem !important;
  }

  .cid-tej9INTkqh .navbar ul.navbar-nav li {
    margin: auto;
  }

  .cid-tej9INTkqh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }

  .cid-tej9INTkqh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }

  .cid-tej9INTkqh .navbar .navbar-toggler {
    flex-basis: auto;
  }

  .cid-tej9INTkqh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.cid-tej9INTkqh .navbar.navbar-short {
  min-height: 60px;
}

.cid-tej9INTkqh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}

.cid-tej9INTkqh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}

.cid-tej9INTkqh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}

.cid-tej9INTkqh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}

.cid-tej9INTkqh .navbar-brand .navbar-logo a {
  outline: none;
}

.cid-tej9INTkqh .dropdown-item.active,
.cid-tej9INTkqh .dropdown-item:active {
  background-color: transparent;
}

.cid-tej9INTkqh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.cid-tej9INTkqh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}

.cid-tej9INTkqh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}

.cid-tej9INTkqh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}

.cid-tej9INTkqh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}

.cid-tej9INTkqh .navbar .dropdown.open>.dropdown-menu {
  display: block;
}

.cid-tej9INTkqh ul.navbar-nav {
  flex-wrap: wrap;
}

.cid-tej9INTkqh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}

.cid-tej9INTkqh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282b2f;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tej9INTkqh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}

.cid-tej9INTkqh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tej9INTkqh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}

.cid-tej9INTkqh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}

.cid-tej9INTkqh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tej9INTkqh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}

.cid-tej9INTkqh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cid-tej9INTkqh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .cid-tej9INTkqh .navbar {
    height: 70px;
  }

  .cid-tej9INTkqh .navbar.opened {
    height: auto;
  }

  .cid-tej9INTkqh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.cid-tgWwGuBwHR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}

.cid-tgWwGuBwHR .mbr-text {
  color: #00284E;
  opacity: 0.8;
}

.cid-tgWvMoPMNo {
  z-index: 1000;
  width: 100%;
}

.cid-tgWvMoPMNo .btn {
  padding: 0.3rem 2rem;
}

.cid-tgWvMoPMNo .nav-link {
  position: relative;
}

.cid-tgWvMoPMNo .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #ed2a08;
}

.cid-tgWvMoPMNo .nav-link:hover:before {
  width: 100%;
}

.cid-tgWvMoPMNo nav.navbar {
  position: fixed;
}

.cid-tgWvMoPMNo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tgWvMoPMNo .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tgWvMoPMNo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}

.cid-tgWvMoPMNo .dropdown-item:hover,
.cid-tgWvMoPMNo .dropdown-item:focus {
  background: #ed2a08 !important;
  color: white !important;
}

.cid-tgWvMoPMNo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.cid-tgWvMoPMNo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cid-tgWvMoPMNo .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}

.cid-tgWvMoPMNo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}

.cid-tgWvMoPMNo .container {
  display: flex;
  margin: auto;
}

.cid-tgWvMoPMNo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}

.cid-tgWvMoPMNo .dropdown-menu,
.cid-tgWvMoPMNo .navbar.opened {
  background: #ffffff !important;
}

.cid-tgWvMoPMNo .nav-item:focus,
.cid-tgWvMoPMNo .nav-link:focus {
  outline: none;
}

.cid-tgWvMoPMNo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}

.cid-tgWvMoPMNo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tgWvMoPMNo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}

.cid-tgWvMoPMNo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tgWvMoPMNo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}

.cid-tgWvMoPMNo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}

.cid-tgWvMoPMNo .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}

.cid-tgWvMoPMNo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}

.cid-tgWvMoPMNo .navbar.opened {
  transition: all 0.3s;
}

.cid-tgWvMoPMNo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}

.cid-tgWvMoPMNo .navbar .navbar-logo img {
  width: auto;
}

.cid-tgWvMoPMNo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}

.cid-tgWvMoPMNo .navbar.collapsed {
  justify-content: center;
}

.cid-tgWvMoPMNo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

.cid-tgWvMoPMNo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}

@media (min-width: 992px) {
  .cid-tgWvMoPMNo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}

.cid-tgWvMoPMNo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}

.cid-tgWvMoPMNo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}

.cid-tgWvMoPMNo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}

.cid-tgWvMoPMNo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

.cid-tgWvMoPMNo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}

.cid-tgWvMoPMNo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .cid-tgWvMoPMNo .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-tgWvMoPMNo .navbar.opened .dropdown-menu {
    top: 0;
  }

  .cid-tgWvMoPMNo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }

  .cid-tgWvMoPMNo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }

  .cid-tgWvMoPMNo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }

  .cid-tgWvMoPMNo .navbar .navbar-logo img {
    height: 3rem !important;
  }

  .cid-tgWvMoPMNo .navbar ul.navbar-nav li {
    margin: auto;
  }

  .cid-tgWvMoPMNo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }

  .cid-tgWvMoPMNo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }

  .cid-tgWvMoPMNo .navbar .navbar-toggler {
    flex-basis: auto;
  }

  .cid-tgWvMoPMNo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.cid-tgWvMoPMNo .navbar.navbar-short {
  min-height: 60px;
}

.cid-tgWvMoPMNo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}

.cid-tgWvMoPMNo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}

.cid-tgWvMoPMNo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}

.cid-tgWvMoPMNo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}

.cid-tgWvMoPMNo .navbar-brand .navbar-logo a {
  outline: none;
}

.cid-tgWvMoPMNo .dropdown-item.active,
.cid-tgWvMoPMNo .dropdown-item:active {
  background-color: transparent;
}

.cid-tgWvMoPMNo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.cid-tgWvMoPMNo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}

.cid-tgWvMoPMNo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}

.cid-tgWvMoPMNo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}

.cid-tgWvMoPMNo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}

.cid-tgWvMoPMNo .navbar .dropdown.open>.dropdown-menu {
  display: block;
}

.cid-tgWvMoPMNo ul.navbar-nav {
  flex-wrap: wrap;
}

.cid-tgWvMoPMNo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}

.cid-tgWvMoPMNo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.cid-tgWvMoPMNo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282b2f;
}

.cid-tgWvMoPMNo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}

.cid-tgWvMoPMNo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tgWvMoPMNo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tgWvMoPMNo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}

.cid-tgWvMoPMNo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tgWvMoPMNo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}

.cid-tgWvMoPMNo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}

.cid-tgWvMoPMNo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tgWvMoPMNo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}

.cid-tgWvMoPMNo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cid-tgWvMoPMNo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .cid-tgWvMoPMNo .navbar {
    height: 70px;
  }

  .cid-tgWvMoPMNo .navbar.opened {
    height: auto;
  }

  .cid-tgWvMoPMNo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.cid-tgWvXQWlvm {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/product6a-2-1109x891.png");
  position: relative;
  overflow: hidden;
}

.cid-tgWvXQWlvm .mbr-fallback-image.disabled {
  display: none;
}

.cid-tgWvXQWlvm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-tgWvXQWlvm .row {
  justify-content: center;
}

.cid-tgWvXQWlvm .title-container {
  max-width: 720px;
  padding: 0;
  margin-bottom: 80px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .cid-tgWvXQWlvm .title-container {
    margin-bottom: 64px;
  }
}

.cid-tgWvXQWlvm .mbr-section-title {
  color: #161616;
  margin-bottom: 24px !important;
}

.cid-tgWvXQWlvm .mbr-section-subtitle {
  color: #161616;
}

.cid-tgWvXQWlvm .toggle-panel {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cid-tgWvXQWlvm .card {
  border-bottom: 2px solid #161616;
  border-top: 2px solid #161616;
  margin-bottom: -2px;
  border-radius: 0 !important;
}

.cid-tgWvXQWlvm .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}

.cid-tgWvXQWlvm .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .cid-tgWvXQWlvm .panel-title {
    align-items: flex-start;
  }
}

.cid-tgWvXQWlvm .mbr-iconfont {
  padding: 5px;
  font-family: 'Moririse2' !important;
  font-size: 1.3rem !important;
  color: #161616;
  transform: rotate(180deg);
  transition: 0.3s all;
  margin-left: 5px;
}

@media (max-width: 991px) {
  .cid-tgWvXQWlvm .mbr-iconfont {
    margin-top: 14px;
  }
}

@media (max-width: 565px) {
  .cid-tgWvXQWlvm .mbr-iconfont {
    margin-top: 10px;
    font-size: 1rem !important;
  }
}

.cid-tgWvXQWlvm .collapsed .mbr-iconfont {
  transform: rotate(0);
}

.cid-tgWvXQWlvm .card-header {
  border-bottom: none;
  padding: 24px 0;
}

.cid-tgWvXQWlvm .panel-body {
  margin-bottom: 24px;
}

.cid-tgWvXQWlvm .panel-title-edit {
  color: #161616;
}

.cid-tgWvXQWlvm .panel-text {
  color: #161616;
  margin-bottom: 0;
}

.cid-tgWvXQWlvm .circle-blur {
  position: absolute;
  bottom: -15%;
  right: 0;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}

.cid-tgWwGuBwHR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}

.cid-tgWwGuBwHR .mbr-text {
  color: #00284E;
  opacity: 0.8;
}

.cid-tgWxalcvze {
  z-index: 1000;
  width: 100%;
}

.cid-tgWxalcvze .btn {
  padding: 0.3rem 2rem;
}

.cid-tgWxalcvze .nav-link {
  position: relative;
}

.cid-tgWxalcvze .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #ed2a08;
}

.cid-tgWxalcvze .nav-link:hover:before {
  width: 100%;
}

.cid-tgWxalcvze nav.navbar {
  position: fixed;
}

.cid-tgWxalcvze .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tgWxalcvze .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tgWxalcvze .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}

.cid-tgWxalcvze .dropdown-item:hover,
.cid-tgWxalcvze .dropdown-item:focus {
  background: #ed2a08 !important;
  color: white !important;
}

.cid-tgWxalcvze .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.cid-tgWxalcvze .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cid-tgWxalcvze .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}

.cid-tgWxalcvze .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}

.cid-tgWxalcvze .container {
  display: flex;
  margin: auto;
}

.cid-tgWxalcvze .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}

.cid-tgWxalcvze .dropdown-menu,
.cid-tgWxalcvze .navbar.opened {
  background: #ffffff !important;
}

.cid-tgWxalcvze .nav-item:focus,
.cid-tgWxalcvze .nav-link:focus {
  outline: none;
}

.cid-tgWxalcvze .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}

.cid-tgWxalcvze .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tgWxalcvze .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}

.cid-tgWxalcvze .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tgWxalcvze .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}

.cid-tgWxalcvze .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}

.cid-tgWxalcvze .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}

.cid-tgWxalcvze .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}

.cid-tgWxalcvze .navbar.opened {
  transition: all 0.3s;
}

.cid-tgWxalcvze .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}

.cid-tgWxalcvze .navbar .navbar-logo img {
  width: auto;
}

.cid-tgWxalcvze .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}

.cid-tgWxalcvze .navbar.collapsed {
  justify-content: center;
}

.cid-tgWxalcvze .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

.cid-tgWxalcvze .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}

@media (min-width: 992px) {
  .cid-tgWxalcvze .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}

.cid-tgWxalcvze .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}

.cid-tgWxalcvze .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}

.cid-tgWxalcvze .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}

.cid-tgWxalcvze .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

.cid-tgWxalcvze .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}

.cid-tgWxalcvze .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .cid-tgWxalcvze .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-tgWxalcvze .navbar.opened .dropdown-menu {
    top: 0;
  }

  .cid-tgWxalcvze .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }

  .cid-tgWxalcvze .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }

  .cid-tgWxalcvze .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }

  .cid-tgWxalcvze .navbar .navbar-logo img {
    height: 3rem !important;
  }

  .cid-tgWxalcvze .navbar ul.navbar-nav li {
    margin: auto;
  }

  .cid-tgWxalcvze .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }

  .cid-tgWxalcvze .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }

  .cid-tgWxalcvze .navbar .navbar-toggler {
    flex-basis: auto;
  }

  .cid-tgWxalcvze .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.cid-tgWxalcvze .navbar.navbar-short {
  min-height: 60px;
}

.cid-tgWxalcvze .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}

.cid-tgWxalcvze .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}

.cid-tgWxalcvze .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}

.cid-tgWxalcvze .navbar-brand .navbar-caption {
  line-height: inherit !important;
}

.cid-tgWxalcvze .navbar-brand .navbar-logo a {
  outline: none;
}

.cid-tgWxalcvze .dropdown-item.active,
.cid-tgWxalcvze .dropdown-item:active {
  background-color: transparent;
}

.cid-tgWxalcvze .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.cid-tgWxalcvze .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}

.cid-tgWxalcvze .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}

.cid-tgWxalcvze .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}

.cid-tgWxalcvze .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}

.cid-tgWxalcvze .navbar .dropdown.open>.dropdown-menu {
  display: block;
}

.cid-tgWxalcvze ul.navbar-nav {
  flex-wrap: wrap;
}

.cid-tgWxalcvze .navbar-buttons {
  text-align: center;
  min-width: 170px;
}

.cid-tgWxalcvze button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.cid-tgWxalcvze button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282b2f;
}

.cid-tgWxalcvze button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}

.cid-tgWxalcvze button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tgWxalcvze button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tgWxalcvze button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}

.cid-tgWxalcvze nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tgWxalcvze nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}

.cid-tgWxalcvze nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}

.cid-tgWxalcvze nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tgWxalcvze .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}

.cid-tgWxalcvze a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cid-tgWxalcvze .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .cid-tgWxalcvze .navbar {
    height: 70px;
  }

  .cid-tgWxalcvze .navbar.opened {
    height: auto;
  }

  .cid-tgWxalcvze .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.cid-ti5LX0iZu9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}

.cid-ti5LX0iZu9 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}

.cid-ti5LX0iZu9 .scroll {
  overflow-x: auto;
  padding: 0;
}

.cid-ti5LX0iZu9 .table-wrapper {
  margin: 0 auto;
}

.cid-ti5LX0iZu9 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.cid-ti5LX0iZu9 table th {
  padding: 1rem .75rem;
  transition: all .2s;
  text-align: center;
  background-color: #353535;
  color: white;
  vertical-align: middle;
}

.cid-ti5LX0iZu9 table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
}

.cid-ti5LX0iZu9 table.table {
  background: #f4f4f4;
}

.cid-ti5LX0iZu9 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}

.cid-ti5LX0iZu9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}

.cid-ti5LX0iZu9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}

.cid-ti5LX0iZu9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}

.cid-ti5LX0iZu9 .dataTables_wrapper {
  display: block;
}

.cid-ti5LX0iZu9 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}

.cid-ti5LX0iZu9 .dataTables_wrapper .table {
  overflow-x: auto;
}

.cid-ti5LX0iZu9 .head-item:after,
.cid-ti5LX0iZu9 .head-item:before {
  bottom: 1.6em !important;
}

@media (max-width: 1300px) {
  .cid-ti5LX0iZu9 .dataTables_filter {
    text-align: center;
  }

  .cid-ti5LX0iZu9 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .cid-ti5LX0iZu9 .table-wrapper {
    width: 100% !important;
  }

  .cid-ti5LX0iZu9 table th,
  .cid-ti5LX0iZu9 table td {
    padding: .1rem;
  }
}

.cid-ti5LX0iZu9 .mbr-section-title,
.cid-ti5LX0iZu9 .underline {
  text-align: left;
}

.cid-ti5LX0iZu9 .body-item {
  color: #000000;
}

.cid-ti5LX0iZu9 .body-itemred {
  color: #160830;
}

.cid-ti5LX0iZu9 .body-itemgreen {
  color: #0dad0e;
}

.cid-ti5LX0iZu9 .head-item {
  color: #ffffff;
}

.cid-ti5LX0iZu9 .info {
  color: #353535;
}

.cid-ti5LX0iZu9 LABEL {
  color: #000000;
  text-align: right;
}

.cid-ti5Nc6JYch {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}

.cid-ti5Nc6JYch .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}

.cid-ti5Nc6JYch .scroll {
  overflow-x: auto;
  padding: 0;
}

.cid-ti5Nc6JYch .table-wrapper {
  margin: 0 auto;
}

.cid-ti5Nc6JYch table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.cid-ti5Nc6JYch table th {
  padding: 1rem .75rem;
  transition: all .2s;
  text-align: center;
  background-color: #353535;
  color: white;
  vertical-align: middle;
}

.cid-ti5Nc6JYch table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
}

.cid-ti5Nc6JYch table.table {
  background: #f4f4f4;
}

.cid-ti5Nc6JYch .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}

.cid-ti5Nc6JYch .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}

.cid-ti5Nc6JYch .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}

.cid-ti5Nc6JYch .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}

.cid-ti5Nc6JYch .dataTables_wrapper {
  display: block;
}

.cid-ti5Nc6JYch .dataTables_wrapper .search {
  margin-bottom: .5rem;
}

.cid-ti5Nc6JYch .dataTables_wrapper .table {
  overflow-x: auto;
}

.cid-ti5Nc6JYch .head-item:after,
.cid-ti5Nc6JYch .head-item:before {
  bottom: 1.6em !important;
}

@media (max-width: 1300px) {
  .cid-ti5Nc6JYch .dataTables_filter {
    text-align: center;
  }

  .cid-ti5Nc6JYch .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .cid-ti5Nc6JYch .table-wrapper {
    width: 100% !important;
  }

  .cid-ti5Nc6JYch table th,
  .cid-ti5Nc6JYch table td {
    padding: .1rem;
  }
}

.cid-ti5Nc6JYch .mbr-section-title,
.cid-ti5Nc6JYch .underline {
  text-align: left;
}

.cid-ti5Nc6JYch .body-item {
  color: #000000;
}

.cid-ti5Nc6JYch .body-itemred {
  color: #160830;
}

.cid-ti5Nc6JYch .body-itemgreen {
  color: #0dad0e;
}

.cid-ti5Nc6JYch .head-item {
  color: #ffffff;
}

.cid-ti5Nc6JYch .info {
  color: #353535;
}

.cid-ti5Nc6JYch LABEL {
  color: #000000;
  text-align: right;
}

.cid-ti5Nq4VW1w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}

.cid-ti5Nq4VW1w .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}

.cid-ti5Nq4VW1w .scroll {
  overflow-x: auto;
  padding: 0;
}

.cid-ti5Nq4VW1w .table-wrapper {
  margin: 0 auto;
}

.cid-ti5Nq4VW1w table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.cid-ti5Nq4VW1w table th {
  padding: 1rem .75rem;
  transition: all .2s;
  text-align: center;
  background-color: #353535;
  color: white;
  vertical-align: middle;
}

.cid-ti5Nq4VW1w table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
}

.cid-ti5Nq4VW1w table.table {
  background: #f4f4f4;
}

.cid-ti5Nq4VW1w .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}

.cid-ti5Nq4VW1w .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}

.cid-ti5Nq4VW1w .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}

.cid-ti5Nq4VW1w .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}

.cid-ti5Nq4VW1w .dataTables_wrapper {
  display: block;
}

.cid-ti5Nq4VW1w .dataTables_wrapper .search {
  margin-bottom: .5rem;
}

.cid-ti5Nq4VW1w .dataTables_wrapper .table {
  overflow-x: auto;
}

.cid-ti5Nq4VW1w .head-item:after,
.cid-ti5Nq4VW1w .head-item:before {
  bottom: 1.6em !important;
}

@media (max-width: 1300px) {
  .cid-ti5Nq4VW1w .dataTables_filter {
    text-align: center;
  }

  .cid-ti5Nq4VW1w .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .cid-ti5Nq4VW1w .table-wrapper {
    width: 100% !important;
  }

  .cid-ti5Nq4VW1w table th,
  .cid-ti5Nq4VW1w table td {
    padding: .1rem;
  }
}

.cid-ti5Nq4VW1w .mbr-section-title,
.cid-ti5Nq4VW1w .underline {
  text-align: left;
}

.cid-ti5Nq4VW1w .body-item {
  color: #000000;
}

.cid-ti5Nq4VW1w .body-itemred {
  color: #160830;
}

.cid-ti5Nq4VW1w .body-itemgreen {
  color: #0dad0e;
}

.cid-ti5Nq4VW1w .head-item {
  color: #ffffff;
}

.cid-ti5Nq4VW1w .info {
  color: #353535;
}

.cid-ti5Nq4VW1w LABEL {
  color: #000000;
  text-align: right;
}

.cid-ti5OdGQnEH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}

.cid-ti5OdGQnEH .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}

.cid-ti5OdGQnEH .scroll {
  overflow-x: auto;
  padding: 0;
}

.cid-ti5OdGQnEH .table-wrapper {
  margin: 0 auto;
}

.cid-ti5OdGQnEH table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.cid-ti5OdGQnEH table th {
  padding: 1rem .75rem;
  transition: all .2s;
  text-align: center;
  background-color: #353535;
  color: white;
  vertical-align: middle;
}

.cid-ti5OdGQnEH table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
}

.cid-ti5OdGQnEH table.table {
  background: #f4f4f4;
}

.cid-ti5OdGQnEH .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}

.cid-ti5OdGQnEH .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}

.cid-ti5OdGQnEH .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}

.cid-ti5OdGQnEH .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}

.cid-ti5OdGQnEH .dataTables_wrapper {
  display: block;
}

.cid-ti5OdGQnEH .dataTables_wrapper .search {
  margin-bottom: .5rem;
}

.cid-ti5OdGQnEH .dataTables_wrapper .table {
  overflow-x: auto;
}

.cid-ti5OdGQnEH .head-item:after,
.cid-ti5OdGQnEH .head-item:before {
  bottom: 1.6em !important;
}

@media (max-width: 1300px) {
  .cid-ti5OdGQnEH .dataTables_filter {
    text-align: center;
  }

  .cid-ti5OdGQnEH .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .cid-ti5OdGQnEH .table-wrapper {
    width: 100% !important;
  }

  .cid-ti5OdGQnEH table th,
  .cid-ti5OdGQnEH table td {
    padding: .1rem;
  }
}

.cid-ti5OdGQnEH .mbr-section-title,
.cid-ti5OdGQnEH .underline {
  text-align: left;
}

.cid-ti5OdGQnEH .body-item {
  color: #000000;
}

.cid-ti5OdGQnEH .body-itemred {
  color: #160830;
}

.cid-ti5OdGQnEH .body-itemgreen {
  color: #0dad0e;
}

.cid-ti5OdGQnEH .head-item {
  color: #ffffff;
}

.cid-ti5OdGQnEH .info {
  color: #353535;
}

.cid-ti5OdGQnEH LABEL {
  color: #000000;
  text-align: right;
}

.cid-ti5OQS4i6t {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}

.cid-ti5OQS4i6t .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}

.cid-ti5OQS4i6t .scroll {
  overflow-x: auto;
  padding: 0;
}

.cid-ti5OQS4i6t .table-wrapper {
  margin: 0 auto;
}

.cid-ti5OQS4i6t table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.cid-ti5OQS4i6t table th {
  padding: 1rem .75rem;
  transition: all .2s;
  text-align: center;
  background-color: #353535;
  color: white;
  vertical-align: middle;
}

.cid-ti5OQS4i6t table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
}

.cid-ti5OQS4i6t table.table {
  background: #f4f4f4;
}

.cid-ti5OQS4i6t .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}

.cid-ti5OQS4i6t .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}

.cid-ti5OQS4i6t .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}

.cid-ti5OQS4i6t .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}

.cid-ti5OQS4i6t .dataTables_wrapper {
  display: block;
}

.cid-ti5OQS4i6t .dataTables_wrapper .search {
  margin-bottom: .5rem;
}

.cid-ti5OQS4i6t .dataTables_wrapper .table {
  overflow-x: auto;
}

.cid-ti5OQS4i6t .head-item:after,
.cid-ti5OQS4i6t .head-item:before {
  bottom: 1.6em !important;
}

@media (max-width: 1300px) {
  .cid-ti5OQS4i6t .dataTables_filter {
    text-align: center;
  }

  .cid-ti5OQS4i6t .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .cid-ti5OQS4i6t .table-wrapper {
    width: 100% !important;
  }

  .cid-ti5OQS4i6t table th,
  .cid-ti5OQS4i6t table td {
    padding: .1rem;
  }
}

.cid-ti5OQS4i6t .mbr-section-title,
.cid-ti5OQS4i6t .underline {
  text-align: left;
}

.cid-ti5OQS4i6t .body-item {
  color: #000000;
}

.cid-ti5OQS4i6t .body-itemred {
  color: #160830;
}

.cid-ti5OQS4i6t .body-itemgreen {
  color: #0dad0e;
}

.cid-ti5OQS4i6t .head-item {
  color: #ffffff;
}

.cid-ti5OQS4i6t .info {
  color: #353535;
}

.cid-ti5OQS4i6t LABEL {
  color: #000000;
  text-align: right;
}

.cid-ti5HGmYge9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}

.cid-ti5HGmYge9 .row {
  align-items: center;
  width: 100%;
}

.cid-ti5HGmYge9 .title-container {
  width: 100%;
  padding: 0 !important;
  margin-bottom: 2rem;
}

.cid-ti5HGmYge9 .title-text {
  width: 100%;
}

.cid-ti5HGmYge9 .main-title {
  color: #727272;
}

.cid-ti5HGmYge9 .main-subtitle {
  color: #727272;
}

.cid-ti5HGmYge9 form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}

.cid-ti5HGmYge9 form .mbr-section-btn {
  margin-top: 20px;
  margin-right: 100%;
}

.cid-ti5HGmYge9 form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}

.cid-ti5HGmYge9 form .form-group {
  margin-top: 32px !important;
  margin-bottom: 10px !important;
}

@media (max-width: 767px) {
  .cid-ti5HGmYge9 form .form-group {
    margin-top: 1rem !important;
  }
}

.cid-ti5HGmYge9 form .form-control {
  border: 1px solid #000000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #939292;
  font-weight: 400;
}

.cid-ti5HGmYge9 form .form-control::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti5HGmYge9 form .form-control::-moz-placeholder {
  color: #939292;
}

.cid-ti5HGmYge9 form .form-control:-moz-placeholder {
  color: #939292;
}

.cid-ti5HGmYge9 form .form-control:-ms-input-placeholder {
  color: #939292;
}

.cid-ti5HGmYge9 form select {
  color: #000000 !important;
}

.cid-ti5HGmYge9 form textarea {
  height: 100px;
}

.cid-ti5HGmYge9 form input,
.cid-ti5HGmYge9 form textarea {
  background-color: transparent !important;
}

.cid-ti5HGmYge9 form input:active,
.cid-ti5HGmYge9 form textarea:active,
.cid-ti5HGmYge9 form input:focus,
.cid-ti5HGmYge9 form textarea:focus {
  border-color: #ed2a08 !important;
}

.cid-ti5HGmYge9 form input:active::-webkit-input-placeholder,
.cid-ti5HGmYge9 form textarea:active::-webkit-input-placeholder,
.cid-ti5HGmYge9 form input:focus::-webkit-input-placeholder,
.cid-ti5HGmYge9 form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti5HGmYge9 form input:active::-moz-placeholder,
.cid-ti5HGmYge9 form textarea:active::-moz-placeholder,
.cid-ti5HGmYge9 form input:focus::-moz-placeholder,
.cid-ti5HGmYge9 form textarea:focus::-moz-placeholder {
  color: #939292;
}

.cid-ti5HGmYge9 form input:active:-moz-placeholder,
.cid-ti5HGmYge9 form textarea:active:-moz-placeholder,
.cid-ti5HGmYge9 form input:focus:-moz-placeholder,
.cid-ti5HGmYge9 form textarea:focus:-moz-placeholder {
  color: #939292;
}

.cid-ti5HGmYge9 form input:active:-ms-input-placeholder,
.cid-ti5HGmYge9 form textarea:active:-ms-input-placeholder,
.cid-ti5HGmYge9 form input:focus:-ms-input-placeholder,
.cid-ti5HGmYge9 form textarea:focus:-ms-input-placeholder {
  color: #939292;
}

.cid-ti5HGmYge9 form .row {
  margin-left: -2% !important;
  margin-right: -2% !important;
}

.cid-ti5HGmYge9 form .row [class*=col] {
  padding-left: 2% !important;
  padding-right: 2% !important;
}

.cid-ti5HGmYge9 form label {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
}

.cid-ti5HGmYge9 form .form-check-input {
  border-color: #000000 !important;
  outline: none !important;
  box-shadow: none !important;
}

.cid-ti5HGmYge9 form .form-check-input:focus,
.cid-ti5HGmYge9 form .form-check-input:hover {
  border-color: #ed2a08 !important;
}

.cid-ti5HGmYge9 form .form-check-input:checked {
  border-color: #ed2a08 !important;
  background-color: #ed2a08 !important;
}

.cid-ti5JqfkGYS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}

.cid-ti5JqfkGYS .row {
  align-items: center;
  width: 100%;
}

.cid-ti5JqfkGYS .title-container {
  width: 100%;
  padding: 0 !important;
  margin-bottom: 2rem;
}

.cid-ti5JqfkGYS .title-text {
  width: 100%;
}

.cid-ti5JqfkGYS .main-title {
  color: #727272;
}

.cid-ti5JqfkGYS .main-subtitle {
  color: #727272;
}

.cid-ti5JqfkGYS form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}

.cid-ti5JqfkGYS form .mbr-section-btn {
  margin-top: 20px;
  margin-right: 100%;
}

.cid-ti5JqfkGYS form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}

.cid-ti5JqfkGYS form .form-group {
  margin-top: 32px !important;
  margin-bottom: 10px !important;
}

@media (max-width: 767px) {
  .cid-ti5JqfkGYS form .form-group {
    margin-top: 1rem !important;
  }
}

.cid-ti5JqfkGYS form .form-control {
  border: 1px solid #000000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #939292;
  font-weight: 400;
}

.cid-ti5JqfkGYS form .form-control::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti5JqfkGYS form .form-control::-moz-placeholder {
  color: #939292;
}

.cid-ti5JqfkGYS form .form-control:-moz-placeholder {
  color: #939292;
}

.cid-ti5JqfkGYS form .form-control:-ms-input-placeholder {
  color: #939292;
}

.cid-ti5JqfkGYS form select {
  color: #000000 !important;
}

.cid-ti5JqfkGYS form textarea {
  height: 100px;
}

.cid-ti5JqfkGYS form input,
.cid-ti5JqfkGYS form textarea {
  background-color: transparent !important;
}

.cid-ti5JqfkGYS form input:active,
.cid-ti5JqfkGYS form textarea:active,
.cid-ti5JqfkGYS form input:focus,
.cid-ti5JqfkGYS form textarea:focus {
  border-color: #ed2a08 !important;
}

.cid-ti5JqfkGYS form input:active::-webkit-input-placeholder,
.cid-ti5JqfkGYS form textarea:active::-webkit-input-placeholder,
.cid-ti5JqfkGYS form input:focus::-webkit-input-placeholder,
.cid-ti5JqfkGYS form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti5JqfkGYS form input:active::-moz-placeholder,
.cid-ti5JqfkGYS form textarea:active::-moz-placeholder,
.cid-ti5JqfkGYS form input:focus::-moz-placeholder,
.cid-ti5JqfkGYS form textarea:focus::-moz-placeholder {
  color: #939292;
}

.cid-ti5JqfkGYS form input:active:-moz-placeholder,
.cid-ti5JqfkGYS form textarea:active:-moz-placeholder,
.cid-ti5JqfkGYS form input:focus:-moz-placeholder,
.cid-ti5JqfkGYS form textarea:focus:-moz-placeholder {
  color: #939292;
}

.cid-ti5JqfkGYS form input:active:-ms-input-placeholder,
.cid-ti5JqfkGYS form textarea:active:-ms-input-placeholder,
.cid-ti5JqfkGYS form input:focus:-ms-input-placeholder,
.cid-ti5JqfkGYS form textarea:focus:-ms-input-placeholder {
  color: #939292;
}

.cid-ti5JqfkGYS form .row {
  margin-left: -2% !important;
  margin-right: -2% !important;
}

.cid-ti5JqfkGYS form .row [class*=col] {
  padding-left: 2% !important;
  padding-right: 2% !important;
}

.cid-ti5JqfkGYS form label {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
}

.cid-ti5JqfkGYS form .form-check-input {
  border-color: #000000 !important;
  outline: none !important;
  box-shadow: none !important;
}

.cid-ti5JqfkGYS form .form-check-input:focus,
.cid-ti5JqfkGYS form .form-check-input:hover {
  border-color: #ed2a08 !important;
}

.cid-ti5JqfkGYS form .form-check-input:checked {
  border-color: #ed2a08 !important;
  background-color: #ed2a08 !important;
}

.cid-ti5KSDWp7Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}

.cid-ti5KSDWp7Y .row {
  align-items: center;
  width: 100%;
}

.cid-ti5KSDWp7Y .title-container {
  width: 100%;
  padding: 0 !important;
  margin-bottom: 2rem;
}

.cid-ti5KSDWp7Y .title-text {
  width: 100%;
}

.cid-ti5KSDWp7Y .main-title {
  color: #727272;
}

.cid-ti5KSDWp7Y .main-subtitle {
  color: #727272;
}

.cid-ti5KSDWp7Y form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}

.cid-ti5KSDWp7Y form .mbr-section-btn {
  margin-top: 20px;
  margin-right: 100%;
}

.cid-ti5KSDWp7Y form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}

.cid-ti5KSDWp7Y form .form-group {
  margin-top: 32px !important;
  margin-bottom: 10px !important;
}

@media (max-width: 767px) {
  .cid-ti5KSDWp7Y form .form-group {
    margin-top: 1rem !important;
  }
}

.cid-ti5KSDWp7Y form .form-control {
  border: 1px solid #000000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #939292;
  font-weight: 400;
}

.cid-ti5KSDWp7Y form .form-control::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti5KSDWp7Y form .form-control::-moz-placeholder {
  color: #939292;
}

.cid-ti5KSDWp7Y form .form-control:-moz-placeholder {
  color: #939292;
}

.cid-ti5KSDWp7Y form .form-control:-ms-input-placeholder {
  color: #939292;
}

.cid-ti5KSDWp7Y form select {
  color: #000000 !important;
}

.cid-ti5KSDWp7Y form textarea {
  height: 100px;
}

.cid-ti5KSDWp7Y form input,
.cid-ti5KSDWp7Y form textarea {
  background-color: transparent !important;
}

.cid-ti5KSDWp7Y form input:active,
.cid-ti5KSDWp7Y form textarea:active,
.cid-ti5KSDWp7Y form input:focus,
.cid-ti5KSDWp7Y form textarea:focus {
  border-color: #ed2a08 !important;
}

.cid-ti5KSDWp7Y form input:active::-webkit-input-placeholder,
.cid-ti5KSDWp7Y form textarea:active::-webkit-input-placeholder,
.cid-ti5KSDWp7Y form input:focus::-webkit-input-placeholder,
.cid-ti5KSDWp7Y form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti5KSDWp7Y form input:active::-moz-placeholder,
.cid-ti5KSDWp7Y form textarea:active::-moz-placeholder,
.cid-ti5KSDWp7Y form input:focus::-moz-placeholder,
.cid-ti5KSDWp7Y form textarea:focus::-moz-placeholder {
  color: #939292;
}

.cid-ti5KSDWp7Y form input:active:-moz-placeholder,
.cid-ti5KSDWp7Y form textarea:active:-moz-placeholder,
.cid-ti5KSDWp7Y form input:focus:-moz-placeholder,
.cid-ti5KSDWp7Y form textarea:focus:-moz-placeholder {
  color: #939292;
}

.cid-ti5KSDWp7Y form input:active:-ms-input-placeholder,
.cid-ti5KSDWp7Y form textarea:active:-ms-input-placeholder,
.cid-ti5KSDWp7Y form input:focus:-ms-input-placeholder,
.cid-ti5KSDWp7Y form textarea:focus:-ms-input-placeholder {
  color: #939292;
}

.cid-ti5KSDWp7Y form .row {
  margin-left: -2% !important;
  margin-right: -2% !important;
}

.cid-ti5KSDWp7Y form .row [class*=col] {
  padding-left: 2% !important;
  padding-right: 2% !important;
}

.cid-ti5KSDWp7Y form label {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
}

.cid-ti5KSDWp7Y form .form-check-input {
  border-color: #000000 !important;
  outline: none !important;
  box-shadow: none !important;
}

.cid-ti5KSDWp7Y form .form-check-input:focus,
.cid-ti5KSDWp7Y form .form-check-input:hover {
  border-color: #ed2a08 !important;
}

.cid-ti5KSDWp7Y form .form-check-input:checked {
  border-color: #ed2a08 !important;
  background-color: #ed2a08 !important;
}

.cid-ti6kqX3gH9.popup-builder {
  background-color: #ffffff;
}

.cid-ti6kqX3gH9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}

.cid-ti6kqX3gH9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}

.cid-ti6kqX3gH9 .modal-content,
.cid-ti6kqX3gH9 .modal-dialog {
  height: auto;
}

.cid-ti6kqX3gH9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}

.cid-ti6kqX3gH9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}

@media (min-width: 769px) {

  .cid-ti6kqX3gH9 .form-wrapper .mbr-form .form-group,
  .cid-ti6kqX3gH9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}

.cid-ti6kqX3gH9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}

.cid-ti6kqX3gH9 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}

.cid-ti6kqX3gH9 .mbr-text {
  text-align: center;
}

.cid-ti6kqX3gH9 .pt-0 {
  padding-top: 0 !important;
}

.cid-ti6kqX3gH9 .pb-0 {
  padding-bottom: 0 !important;
}

.cid-ti6kqX3gH9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.cid-ti6kqX3gH9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.cid-ti6kqX3gH9 .modal-open {
  overflow: hidden;
}

.cid-ti6kqX3gH9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.cid-ti6kqX3gH9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.cid-ti6kqX3gH9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.cid-ti6kqX3gH9 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

.cid-ti6kqX3gH9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.cid-ti6kqX3gH9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}

.cid-ti6kqX3gH9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}

.cid-ti6kqX3gH9 .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-ti6kqX3gH9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}

.cid-ti6kqX3gH9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.cid-ti6kqX3gH9 .modal-backdrop.fade {
  opacity: 0;
}

.cid-ti6kqX3gH9 .modal-backdrop.show {
  opacity: .5;
}

.cid-ti6kqX3gH9 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}

@media (min-width: 992px) {
  .cid-ti6kqX3gH9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}

@media (max-width: 991px) {
  .cid-ti6kqX3gH9 .modal-header {
    padding: 1rem;
  }
}

.cid-ti6kqX3gH9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}

.cid-ti6kqX3gH9 .modal-header .close svg {
  fill: #353535;
}

.cid-ti6kqX3gH9 .modal-header .close:hover {
  opacity: 1;
}

.cid-ti6kqX3gH9 .modal-header .close:focus {
  outline: none;
}

.cid-ti6kqX3gH9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}

.cid-ti6kqX3gH9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .cid-ti6kqX3gH9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-ti6kqX3gH9 .modal-body {
    padding: 1rem;
  }
}

.cid-ti6kqX3gH9 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}

@media (min-width: 992px) {
  .cid-ti6kqX3gH9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-ti6kqX3gH9 .modal-footer {
    padding: 1rem;
  }
}

.cid-ti6kqX3gH9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .cid-ti6kqX3gH9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .cid-ti6kqX3gH9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .cid-ti6kqX3gH9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  .cid-ti6kqX3gH9 .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .cid-ti6kqX3gH9 .modal-lg,
  .cid-ti6kqX3gH9 .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .cid-ti6kqX3gH9 .modal-xl {
    max-width: 1140px;
  }
}

.cid-ti6kqX3gH9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.cid-ti6kqX3gH9 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.cid-ti6kqX3gH9 .form-group {
  margin-bottom: 1rem;
}

.cid-ti6kqX3gH9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.cid-ti6kqX3gH9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.cid-ti6kqX3gH9 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.cid-ti6kqX3gH9 .mbr-section-btn {
  margin: 0;
}

.cid-ti6kqX3gH9 .mbr-section-btn .btn {
  margin: 0;
}

.cid-theaRV10sw {
  background-image: url("../../../assets/images/handphoneapp-2-1698x1001.png");
}

.cid-theaRV10sw .mbr-section-title {
  text-align: center;
  color: #ffffff;
}

.cid-theaRV10sw .mbr-text,
.cid-theaRV10sw .mbr-section-btn {
  text-align: center;
  color: #f2f3f7;
}

.cid-theaRV10sw .mbr-fallback-image.disabled {
  display: none;
}

.cid-theaRV10sw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-theaTrp6zG {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #f2f3f7;
}

.cid-theaTrp6zG .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ed1c24;
  margin-bottom: 1.5rem;
}

.cid-theaTrp6zG .col-lg-4,
.cid-theaTrp6zG .col-12 {
  padding: 0 2rem;
}

.cid-theaTrp6zG .row {
  margin: 0 -2rem;
  justify-content: center;
}

.cid-theaTrp6zG .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}

@media (max-width: 767px) {
  .cid-theaTrp6zG .card-wrapper {
    padding: 4rem 2rem;
  }
}

@media (max-width: 992px) {
  .cid-theaTrp6zG .card-wrapper {
    margin-bottom: 3rem;
  }
}

.cid-theaTrp6zG .card-title,
.cid-theaTrp6zG .iconfont-wrapper {
  color: #31363b;
  text-align: center;
}

.cid-theaTrp6zG .card-text {
  color: #6c758f;
  text-align: center;
}

.cid-theaTrp6zG .mbr-section-subtitle {
  color: #6c758f;
}

.cid-theaTrp6zG .mbr-section-title {
  color: #31363b;
}

.cid-theb7fuev3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/handphoneapp-3-1698x1001.png");
}

.cid-theb7fuev3 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

.cid-theb7fuev3 .card-img span {
  font-size: 80px;
  color: #ffffff;
}

.cid-theb7fuev3 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.cid-theb7fuev3 .mbr-text,
.cid-theb7fuev3 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}

.cid-theaZnQyr8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}

.cid-theaZnQyr8 .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #0196e3;
  margin-bottom: 1.5rem;
}

.cid-theaZnQyr8 .col-lg-4,
.cid-theaZnQyr8 .col-12 {
  padding: 0 2rem;
}

.cid-theaZnQyr8 .row {
  margin: 0 -2rem;
  justify-content: center;
}

.cid-theaZnQyr8 .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}

@media (max-width: 767px) {
  .cid-theaZnQyr8 .card-wrapper {
    padding: 4rem 2rem;
  }
}

@media (max-width: 992px) {
  .cid-theaZnQyr8 .card-wrapper {
    margin-bottom: 3rem;
  }
}

.cid-theaZnQyr8 .card-title,
.cid-theaZnQyr8 .iconfont-wrapper {
  color: #000000;
  text-align: center;
}

.cid-theaZnQyr8 .card-text {
  color: #6c758f;
  text-align: center;
}

.cid-theaZnQyr8 .mbr-section-subtitle {
  color: #6c758f;
}

.cid-theaZnQyr8 .mbr-section-title {
  color: #232323;
}

.cid-theb1luHD8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #31363b;
  overflow: hidden;
}

.cid-theb1luHD8 .mbr-title {
  color: #bec2cf;
}

.cid-theb1luHD8 .mbr-text {
  color: #bec2cf;
  text-align: left;
}

.cid-theb1luHD8 .row {
  align-items: center;
}

.cid-thdvBGxC84 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #353535;
}

.cid-thdvBGxC84 .mbr-text {
  color: #767676;
}

.cid-thdvBGxC84 .card-box {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .cid-thdvBGxC84 .card-box {
    flex-direction: column;
  }
}

.cid-thdvBGxC84 .line {
  width: calc(100% - 2rem);
  margin: auto;
  height: 2px;
  background: currentColor;
  margin-bottom: 3rem;
}

.cid-thdvBGxC84 .mbr-section-subtitle {
  color: #767676;
}

.cid-thdvBGxC84 .title .num {
  white-space: nowrap;
  width: 100%;
  display: block;
  padding-right: 1rem;
}

@media (max-width: 767px) {
  .cid-thdvBGxC84 .title .num {
    padding-right: 0rem;
    padding-bottom: 1rem;
  }
}

.cid-thdvBGxC84 .title .card-title {
  z-index: 1;
}

.cid-thdvBGxC84 h4 {
  margin: 0;
}

.cid-thdvBGxC84 .num {
  color: #000000;
}

.cid-thdvBGxC84 .num-green {
  color: #27ee28;
}

@media (max-width: 992px) {
  .cid-thdvBGxC84 .card {
    margin-bottom: 1.5rem;
  }
}

.cid-thdvBGxC84 .card-title,
.cid-thdvBGxC84 .card-img {
  color: #ffffff;
  text-align: left;
}

.cid-thdvBGxC84 .card-title-green {
  color: #27ee28;
  text-align: left;
}

.cid-thdvBGxC84 .num,
.cid-thdvBGxC84 .line {
  color: #ffffff;
  text-align: left;
}

.cid-thdvBGxC84 .mbr-fallback-image.disabled {
  display: none;
}

.cid-thdvBGxC84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.cid-thdvBGxC84 .mbr-section-title,
.cid-thdvBGxC84 .card-box {
  color: #ffffff;
  text-align: left;
}

.cid-thdvBH1cGq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}

.cid-thdvBH1cGq .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ff3411;
  margin-bottom: 1rem;
}

.cid-thdvBH1cGq .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #0d0c22;
}

.cid-thdvBH1cGq .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}

.cid-thdvBH1cGq .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

.cid-thdvBH1cGq .card-wrapper:hover {
  background: #f4f4f4;
}

.cid-thdvBH1cGq .card-wrapperon {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: #f4f4f4;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

.cid-thdvBH1cGq .card-wrapperon:hover {
  background: #f4f4f4;
}

.cid-thdvBH1cGq .card-title,
.cid-thdvBH1cGq .card-box {
  color: #000000;
}

.cid-thdvBH1cGq .main-title,
.cid-thdvBH1cGq .title-col {
  text-align: left;
  color: #353535;
}

.cid-thdvBH1cGq .card-text {
  color: #727272;
}

.cid-thdvBHkhi6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/handphoneapp-1698x1001.png");
}

.cid-thdvBHkhi6 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}

.cid-thdvBHkhi6 .scroll {
  overflow-x: auto;
  padding: 0;
}

.cid-thdvBHkhi6 .table-wrapper {
  margin: 0 auto;
}

.cid-thdvBHkhi6 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.cid-thdvBHkhi6 table th {
  padding: 1rem .75rem;
  transition: all .2s;
  text-align: center;
  background-color: #353535;
  color: white;
  vertical-align: middle;
}

.cid-thdvBHkhi6 table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
}

.cid-thdvBHkhi6 table.table {
  background: #f4f4f4;
}

.cid-thdvBHkhi6 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}

.cid-thdvBHkhi6 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}

.cid-thdvBHkhi6 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}

.cid-thdvBHkhi6 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}

.cid-thdvBHkhi6 .dataTables_wrapper {
  display: block;
}

.cid-thdvBHkhi6 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}

.cid-thdvBHkhi6 .dataTables_wrapper .table {
  overflow-x: auto;
}

.cid-thdvBHkhi6 .head-item:after,
.cid-thdvBHkhi6 .head-item:before {
  bottom: 1.6em !important;
}

@media (max-width: 1300px) {
  .cid-thdvBHkhi6 .dataTables_filter {
    text-align: center;
  }

  .cid-thdvBHkhi6 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .cid-thdvBHkhi6 .table-wrapper {
    width: 100% !important;
  }

  .cid-thdvBHkhi6 table th,
  .cid-thdvBHkhi6 table td {
    padding: .1rem;
  }
}

.cid-thdvBHkhi6 .mbr-section-title,
.cid-thdvBHkhi6 .underline {
  text-align: left;
}

.cid-thdvBHkhi6 .body-item {
  color: #000000;
}

.cid-thdvBHkhi6 .body-itemred {
  color: #ed2a08;
}

.cid-thdvBHkhi6 .body-itemgreen {
  color: #0dad0e;
}

.cid-thdvBHkhi6 .head-item {
  color: #ffffff;
}

.cid-thdvBHkhi6 .info {
  color: #353535;
}

.cid-thdvBHkhi6 LABEL {
  color: #000000;
  text-align: right;
}

.cid-thdvBIBeYp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}

.cid-thdvBIBeYp .item-img {
  position: relative;
}

.cid-thdvBIBeYp .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}

.cid-thdvBIBeYp .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}

.cid-thdvBIBeYp .btn-tag:hover,
.cid-thdvBIBeYp .btn-tag:focus {
  box-shadow: none;
}

.cid-thdvBIBeYp img,
.cid-thdvBIBeYp .item-img {
  width: 100%;
  margin-bottom: 1rem;
}

.cid-thdvBIBeYp .item:focus,
.cid-thdvBIBeYp span:focus {
  outline: none;
}

.cid-thdvBIBeYp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}

.cid-thdvBIBeYp .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}

.cid-thdvBIBeYp .mbr-section-btn {
  margin-top: auto !important;
}

.cid-thdvBIBeYp .mbr-section-title {
  color: #353535;
  text-align: left;
}

.cid-thdvBIBeYp .mbr-text,
.cid-thdvBIBeYp .mbr-section-btn {
  color: #ffffff;
}

.cid-thdvBIBeYp .item-title {
  color: #353535;
}

.cid-thdvBIBeYp .item-subtitle {
  color: #ffffff;
}

.cid-thdvBIBeYp P {
  color: #353535;
}

.cid-thdvBJ8RW7 .google-map {
  height: 25rem;
  position: relative;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}

.cid-thdvBJ8RW7 .google-map iframe {
  height: 100%;
  width: 100%;
}

.cid-thdvBJ8RW7 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}

.cid-thdvBJ8RW7 .google-map[data-state] {
  background: #e9e5dc;
}

.cid-thdvBJ8RW7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}

.cid-thdvBJrCD9 {
  z-index: 1000;
  width: 100%;
}

.cid-thdvBJrCD9 .btn {
  padding: 0.3rem 2rem;
}

.cid-thdvBJrCD9 .nav-link {
  position: relative;
}

.cid-thdvBJrCD9 .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #ed2a08;
}

.cid-thdvBJrCD9 .nav-link:hover:before {
  width: 100%;
}

.cid-thdvBJrCD9 nav.navbar {
  position: fixed;
}

.cid-thdvBJrCD9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}

.cid-thdvBJrCD9 .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-thdvBJrCD9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}

.cid-thdvBJrCD9 .dropdown-item:hover,
.cid-thdvBJrCD9 .dropdown-item:focus {
  background: #ed2a08 !important;
  color: white !important;
}

.cid-thdvBJrCD9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.cid-thdvBJrCD9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cid-thdvBJrCD9 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}

.cid-thdvBJrCD9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}

.cid-thdvBJrCD9 .container {
  display: flex;
  margin: auto;
}

.cid-thdvBJrCD9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}

.cid-thdvBJrCD9 .dropdown-menu,
.cid-thdvBJrCD9 .navbar.opened {
  background: #ffffff !important;
}

.cid-thdvBJrCD9 .nav-item:focus,
.cid-thdvBJrCD9 .nav-link:focus {
  outline: none;
}

.cid-thdvBJrCD9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}

.cid-thdvBJrCD9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-thdvBJrCD9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}

.cid-thdvBJrCD9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}

.cid-thdvBJrCD9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}

.cid-thdvBJrCD9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}

.cid-thdvBJrCD9 .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}

.cid-thdvBJrCD9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}

.cid-thdvBJrCD9 .navbar.opened {
  transition: all 0.3s;
}

.cid-thdvBJrCD9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}

.cid-thdvBJrCD9 .navbar .navbar-logo img {
  width: auto;
}

.cid-thdvBJrCD9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}

.cid-thdvBJrCD9 .navbar.collapsed {
  justify-content: center;
}

.cid-thdvBJrCD9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

.cid-thdvBJrCD9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}

@media (min-width: 992px) {
  .cid-thdvBJrCD9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}

.cid-thdvBJrCD9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}

.cid-thdvBJrCD9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}

.cid-thdvBJrCD9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}

.cid-thdvBJrCD9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

.cid-thdvBJrCD9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}

.cid-thdvBJrCD9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .cid-thdvBJrCD9 .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-thdvBJrCD9 .navbar.opened .dropdown-menu {
    top: 0;
  }

  .cid-thdvBJrCD9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }

  .cid-thdvBJrCD9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }

  .cid-thdvBJrCD9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }

  .cid-thdvBJrCD9 .navbar .navbar-logo img {
    height: 3rem !important;
  }

  .cid-thdvBJrCD9 .navbar ul.navbar-nav li {
    margin: auto;
  }

  .cid-thdvBJrCD9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }

  .cid-thdvBJrCD9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }

  .cid-thdvBJrCD9 .navbar .navbar-toggler {
    flex-basis: auto;
  }

  .cid-thdvBJrCD9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.cid-thdvBJrCD9 .navbar.navbar-short {
  min-height: 60px;
}

.cid-thdvBJrCD9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}

.cid-thdvBJrCD9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}

.cid-thdvBJrCD9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}

.cid-thdvBJrCD9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}

.cid-thdvBJrCD9 .navbar-brand .navbar-logo a {
  outline: none;
}

.cid-thdvBJrCD9 .dropdown-item.active,
.cid-thdvBJrCD9 .dropdown-item:active {
  background-color: transparent;
}

.cid-thdvBJrCD9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.cid-thdvBJrCD9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}

.cid-thdvBJrCD9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}

.cid-thdvBJrCD9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}

.cid-thdvBJrCD9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}

.cid-thdvBJrCD9 .navbar .dropdown.open>.dropdown-menu {
  display: block;
}

.cid-thdvBJrCD9 ul.navbar-nav {
  flex-wrap: wrap;
}

.cid-thdvBJrCD9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}

.cid-thdvBJrCD9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.cid-thdvBJrCD9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282b2f;
}

.cid-thdvBJrCD9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}

.cid-thdvBJrCD9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}

.cid-thdvBJrCD9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}

.cid-thdvBJrCD9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}

.cid-thdvBJrCD9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-thdvBJrCD9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}

.cid-thdvBJrCD9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}

.cid-thdvBJrCD9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-thdvBJrCD9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}

.cid-thdvBJrCD9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cid-thdvBJrCD9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .cid-thdvBJrCD9 .navbar {
    height: 70px;
  }

  .cid-thdvBJrCD9 .navbar.opened {
    height: auto;
  }

  .cid-thdvBJrCD9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.cid-thdvBJRFdy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}

.cid-thdvBJRFdy .mbr-text {
  color: #00284E;
  opacity: 0.8;
}

.cid-ti6j8KwRXS.popup-builder {
  background-color: #ffffff;
}

.cid-ti6j8KwRXS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}

.cid-ti6j8KwRXS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}

.cid-ti6j8KwRXS .modal-content,
.cid-ti6j8KwRXS .modal-dialog {
  height: auto;
}

.cid-ti6j8KwRXS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}

.cid-ti6j8KwRXS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}

@media (min-width: 769px) {

  .cid-ti6j8KwRXS .form-wrapper .mbr-form .form-group,
  .cid-ti6j8KwRXS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}

.cid-ti6j8KwRXS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}

.cid-ti6j8KwRXS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}

.cid-ti6j8KwRXS .mbr-text {
  text-align: center;
}

.cid-ti6j8KwRXS .pt-0 {
  padding-top: 0 !important;
}

.cid-ti6j8KwRXS .pb-0 {
  padding-bottom: 0 !important;
}

.cid-ti6j8KwRXS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.cid-ti6j8KwRXS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.cid-ti6j8KwRXS .modal-open {
  overflow: hidden;
}

.cid-ti6j8KwRXS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.cid-ti6j8KwRXS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.cid-ti6j8KwRXS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.cid-ti6j8KwRXS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

.cid-ti6j8KwRXS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.cid-ti6j8KwRXS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}

.cid-ti6j8KwRXS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}

.cid-ti6j8KwRXS .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-ti6j8KwRXS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}

.cid-ti6j8KwRXS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.cid-ti6j8KwRXS .modal-backdrop.fade {
  opacity: 0;
}

.cid-ti6j8KwRXS .modal-backdrop.show {
  opacity: .5;
}

.cid-ti6j8KwRXS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}

@media (min-width: 992px) {
  .cid-ti6j8KwRXS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}

@media (max-width: 991px) {
  .cid-ti6j8KwRXS .modal-header {
    padding: 1rem;
  }
}

.cid-ti6j8KwRXS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}

.cid-ti6j8KwRXS .modal-header .close svg {
  fill: #353535;
}

.cid-ti6j8KwRXS .modal-header .close:hover {
  opacity: 1;
}

.cid-ti6j8KwRXS .modal-header .close:focus {
  outline: none;
}

.cid-ti6j8KwRXS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}

.cid-ti6j8KwRXS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .cid-ti6j8KwRXS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-ti6j8KwRXS .modal-body {
    padding: 1rem;
  }
}

.cid-ti6j8KwRXS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}

@media (min-width: 992px) {
  .cid-ti6j8KwRXS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-ti6j8KwRXS .modal-footer {
    padding: 1rem;
  }
}

.cid-ti6j8KwRXS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .cid-ti6j8KwRXS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .cid-ti6j8KwRXS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .cid-ti6j8KwRXS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  .cid-ti6j8KwRXS .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .cid-ti6j8KwRXS .modal-lg,
  .cid-ti6j8KwRXS .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .cid-ti6j8KwRXS .modal-xl {
    max-width: 1140px;
  }
}

.cid-ti6j8KwRXS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.cid-ti6j8KwRXS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.cid-ti6j8KwRXS .form-group {
  margin-bottom: 1rem;
}

.cid-ti6j8KwRXS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.cid-ti6j8KwRXS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.cid-ti6j8KwRXS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.cid-ti6j8KwRXS .mbr-section-btn {
  margin: 0;
}

.cid-ti6j8KwRXS .mbr-section-btn .btn {
  margin: 0;
}

.cid-ti6jGgFQ7l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}

.cid-ti6jGgFQ7l .row {
  align-items: center;
  width: 100%;
}

.cid-ti6jGgFQ7l .title-container {
  width: 100%;
  padding: 0 !important;
  margin-bottom: 2rem;
}

.cid-ti6jGgFQ7l .title-text {
  width: 100%;
}

.cid-ti6jGgFQ7l .main-title {
  color: #000000;
}

.cid-ti6jGgFQ7l .main-subtitle {
  color: #727272;
}

.cid-ti6jGgFQ7l form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}

.cid-ti6jGgFQ7l form .mbr-section-btn {
  margin-top: 20px;
  margin-right: 100%;
}

.cid-ti6jGgFQ7l form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}

.cid-ti6jGgFQ7l form .form-group {
  margin-top: 32px !important;
  margin-bottom: 10px !important;
}

@media (max-width: 767px) {
  .cid-ti6jGgFQ7l form .form-group {
    margin-top: 1rem !important;
  }
}

.cid-ti6jGgFQ7l form .form-control {
  border: 1px solid #000000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #939292;
  font-weight: 400;
}

.cid-ti6jGgFQ7l form .form-control::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti6jGgFQ7l form .form-control::-moz-placeholder {
  color: #939292;
}

.cid-ti6jGgFQ7l form .form-control:-moz-placeholder {
  color: #939292;
}

.cid-ti6jGgFQ7l form .form-control:-ms-input-placeholder {
  color: #939292;
}

.cid-ti6jGgFQ7l form select {
  color: #000000 !important;
}

.cid-ti6jGgFQ7l form textarea {
  height: 100px;
}

.cid-ti6jGgFQ7l form input,
.cid-ti6jGgFQ7l form textarea {
  background-color: transparent !important;
}

.cid-ti6jGgFQ7l form input:active,
.cid-ti6jGgFQ7l form textarea:active,
.cid-ti6jGgFQ7l form input:focus,
.cid-ti6jGgFQ7l form textarea:focus {
  border-color: #ed2a08 !important;
}

.cid-ti6jGgFQ7l form input:active::-webkit-input-placeholder,
.cid-ti6jGgFQ7l form textarea:active::-webkit-input-placeholder,
.cid-ti6jGgFQ7l form input:focus::-webkit-input-placeholder,
.cid-ti6jGgFQ7l form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti6jGgFQ7l form input:active::-moz-placeholder,
.cid-ti6jGgFQ7l form textarea:active::-moz-placeholder,
.cid-ti6jGgFQ7l form input:focus::-moz-placeholder,
.cid-ti6jGgFQ7l form textarea:focus::-moz-placeholder {
  color: #939292;
}

.cid-ti6jGgFQ7l form input:active:-moz-placeholder,
.cid-ti6jGgFQ7l form textarea:active:-moz-placeholder,
.cid-ti6jGgFQ7l form input:focus:-moz-placeholder,
.cid-ti6jGgFQ7l form textarea:focus:-moz-placeholder {
  color: #939292;
}

.cid-ti6jGgFQ7l form input:active:-ms-input-placeholder,
.cid-ti6jGgFQ7l form textarea:active:-ms-input-placeholder,
.cid-ti6jGgFQ7l form input:focus:-ms-input-placeholder,
.cid-ti6jGgFQ7l form textarea:focus:-ms-input-placeholder {
  color: #939292;
}

.cid-ti6jGgFQ7l form .row {
  margin-left: -2% !important;
  margin-right: -2% !important;
}

.cid-ti6jGgFQ7l form .row [class*=col] {
  padding-left: 2% !important;
  padding-right: 2% !important;
}

.cid-ti6jGgFQ7l form label {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
}

.cid-ti6jGgFQ7l form .form-check-input {
  border-color: #000000 !important;
  outline: none !important;
  box-shadow: none !important;
}

.cid-ti6jGgFQ7l form .form-check-input:focus,
.cid-ti6jGgFQ7l form .form-check-input:hover {
  border-color: #ed2a08 !important;
}

.cid-ti6jGgFQ7l form .form-check-input:checked {
  border-color: #ed2a08 !important;
  background-color: #ed2a08 !important;
}

.cid-ti6kFFYpbF.popup-builder {
  background-color: #ffffff;
}

.cid-ti6kFFYpbF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}

.cid-ti6kFFYpbF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}

.cid-ti6kFFYpbF .modal-content,
.cid-ti6kFFYpbF .modal-dialog {
  height: auto;
}

.cid-ti6kFFYpbF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}

.cid-ti6kFFYpbF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}

@media (min-width: 769px) {

  .cid-ti6kFFYpbF .form-wrapper .mbr-form .form-group,
  .cid-ti6kFFYpbF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}

.cid-ti6kFFYpbF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}

.cid-ti6kFFYpbF .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}

.cid-ti6kFFYpbF .mbr-text {
  text-align: center;
}

.cid-ti6kFFYpbF .pt-0 {
  padding-top: 0 !important;
}

.cid-ti6kFFYpbF .pb-0 {
  padding-bottom: 0 !important;
}

.cid-ti6kFFYpbF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.cid-ti6kFFYpbF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.cid-ti6kFFYpbF .modal-open {
  overflow: hidden;
}

.cid-ti6kFFYpbF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.cid-ti6kFFYpbF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.cid-ti6kFFYpbF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.cid-ti6kFFYpbF .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

.cid-ti6kFFYpbF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.cid-ti6kFFYpbF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}

.cid-ti6kFFYpbF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}

.cid-ti6kFFYpbF .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-ti6kFFYpbF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}

.cid-ti6kFFYpbF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.cid-ti6kFFYpbF .modal-backdrop.fade {
  opacity: 0;
}

.cid-ti6kFFYpbF .modal-backdrop.show {
  opacity: .5;
}

.cid-ti6kFFYpbF .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}

@media (min-width: 992px) {
  .cid-ti6kFFYpbF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}

@media (max-width: 991px) {
  .cid-ti6kFFYpbF .modal-header {
    padding: 1rem;
  }
}

.cid-ti6kFFYpbF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}

.cid-ti6kFFYpbF .modal-header .close svg {
  fill: #353535;
}

.cid-ti6kFFYpbF .modal-header .close:hover {
  opacity: 1;
}

.cid-ti6kFFYpbF .modal-header .close:focus {
  outline: none;
}

.cid-ti6kFFYpbF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}

.cid-ti6kFFYpbF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .cid-ti6kFFYpbF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-ti6kFFYpbF .modal-body {
    padding: 1rem;
  }
}

.cid-ti6kFFYpbF .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}

@media (min-width: 992px) {
  .cid-ti6kFFYpbF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}

@media (max-width: 991px) {
  .cid-ti6kFFYpbF .modal-footer {
    padding: 1rem;
  }
}

.cid-ti6kFFYpbF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .cid-ti6kFFYpbF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .cid-ti6kFFYpbF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .cid-ti6kFFYpbF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }

  .cid-ti6kFFYpbF .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .cid-ti6kFFYpbF .modal-lg,
  .cid-ti6kFFYpbF .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .cid-ti6kFFYpbF .modal-xl {
    max-width: 1140px;
  }
}

.cid-ti6kFFYpbF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.cid-ti6kFFYpbF .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.cid-ti6kFFYpbF .form-group {
  margin-bottom: 1rem;
}

.cid-ti6kFFYpbF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.cid-ti6kFFYpbF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.cid-ti6kFFYpbF .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.cid-ti6kFFYpbF .mbr-section-btn {
  margin: 0;
}

.cid-ti6kFFYpbF .mbr-section-btn .btn {
  margin: 0;
}

.cid-ti6kOIzesY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}

.cid-ti6kOIzesY .row {
  align-items: center;
  width: 100%;
}

.cid-ti6kOIzesY .title-container {
  width: 100%;
  padding: 0 !important;
  margin-bottom: 2rem;
}

.cid-ti6kOIzesY .title-text {
  width: 100%;
}

.cid-ti6kOIzesY .main-title {
  color: #727272;
}

.cid-ti6kOIzesY .main-subtitle {
  color: #727272;
}

.cid-ti6kOIzesY form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}

.cid-ti6kOIzesY form .mbr-section-btn {
  margin-top: 20px;
  margin-right: 100%;
}

.cid-ti6kOIzesY form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}

.cid-ti6kOIzesY form .form-group {
  margin-top: 32px !important;
  margin-bottom: 10px !important;
}

@media (max-width: 767px) {
  .cid-ti6kOIzesY form .form-group {
    margin-top: 1rem !important;
  }
}

.cid-ti6kOIzesY form .form-control {
  border: 1px solid #000000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #939292;
  font-weight: 400;
}

.cid-ti6kOIzesY form .form-control::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti6kOIzesY form .form-control::-moz-placeholder {
  color: #939292;
}

.cid-ti6kOIzesY form .form-control:-moz-placeholder {
  color: #939292;
}

.cid-ti6kOIzesY form .form-control:-ms-input-placeholder {
  color: #939292;
}

.cid-ti6kOIzesY form select {
  color: #000000 !important;
}

.cid-ti6kOIzesY form textarea {
  height: 100px;
}

.cid-ti6kOIzesY form input,
.cid-ti6kOIzesY form textarea {
  background-color: transparent !important;
}

.cid-ti6kOIzesY form input:active,
.cid-ti6kOIzesY form textarea:active,
.cid-ti6kOIzesY form input:focus,
.cid-ti6kOIzesY form textarea:focus {
  border-color: #ed2a08 !important;
}

.cid-ti6kOIzesY form input:active::-webkit-input-placeholder,
.cid-ti6kOIzesY form textarea:active::-webkit-input-placeholder,
.cid-ti6kOIzesY form input:focus::-webkit-input-placeholder,
.cid-ti6kOIzesY form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}

.cid-ti6kOIzesY form input:active::-moz-placeholder,
.cid-ti6kOIzesY form textarea:active::-moz-placeholder,
.cid-ti6kOIzesY form input:focus::-moz-placeholder,
.cid-ti6kOIzesY form textarea:focus::-moz-placeholder {
  color: #939292;
}

.cid-ti6kOIzesY form input:active:-moz-placeholder,
.cid-ti6kOIzesY form textarea:active:-moz-placeholder,
.cid-ti6kOIzesY form input:focus:-moz-placeholder,
.cid-ti6kOIzesY form textarea:focus:-moz-placeholder {
  color: #939292;
}

.cid-ti6kOIzesY form input:active:-ms-input-placeholder,
.cid-ti6kOIzesY form textarea:active:-ms-input-placeholder,
.cid-ti6kOIzesY form input:focus:-ms-input-placeholder,
.cid-ti6kOIzesY form textarea:focus:-ms-input-placeholder {
  color: #939292;
}

.cid-ti6kOIzesY form .row {
  margin-left: -2% !important;
  margin-right: -2% !important;
}

.cid-ti6kOIzesY form .row [class*=col] {
  padding-left: 2% !important;
  padding-right: 2% !important;
}

.cid-ti6kOIzesY form label {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
}

.cid-ti6kOIzesY form .form-check-input {
  border-color: #000000 !important;
  outline: none !important;
  box-shadow: none !important;
}

.cid-ti6kOIzesY form .form-check-input:focus,
.cid-ti6kOIzesY form .form-check-input:hover {
  border-color: #ed2a08 !important;
}

.cid-ti6kOIzesY form .form-check-input:checked {
  border-color: #ed2a08 !important;
  background-color: #ed2a08 !important;
}

.cid-tib8bngquE {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}

.cid-tib8bngquE .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ff3411;
  margin-bottom: 1rem;
}

.cid-tib8bngquE .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #0d0c22;
}

.cid-tib8bngquE .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}

.cid-tib8bngquE .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}

.cid-tib8bngquE .card-wrapper:hover {
  background: #f4f4f4;
}

.cid-tib8bngquE .card-title,
.cid-tib8bngquE .card-box {
  color: #000000;
}

.cid-tib8bngquE .main-title,
.cid-tib8bngquE .title-col {
  text-align: left;
  color: #353535;
}

.cid-tib8bngquE .card-text {
  color: #727272;
}

.cid-tibjfExkzT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}

.cid-tibjfExkzT .row {
  align-items: center;
  width: 100%;
}

.cid-tibjfExkzT .title-container {
  width: 100%;
  padding: 0 !important;
  margin-bottom: 2rem;
}

.cid-tibjfExkzT .title-text {
  width: 100%;
}

.cid-tibjfExkzT .main-title {
  color: #000000;
}

.cid-tibjfExkzT .main-subtitle {
  color: #727272;
}

.cid-tibjfExkzT form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}

.cid-tibjfExkzT form .mbr-section-btn {
  margin-top: 20px;
  margin-right: 100%;
}

.cid-tibjfExkzT form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}

.cid-tibjfExkzT form .form-group {
  margin-top: 32px !important;
  margin-bottom: 10px !important;
}

@media (max-width: 767px) {
  .cid-tibjfExkzT form .form-group {
    margin-top: 1rem !important;
  }
}

.cid-tibjfExkzT form .form-control {
  border: 1px solid #000000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #939292;
  font-weight: 400;
}

.cid-tibjfExkzT form .form-control::-webkit-input-placeholder {
  color: #939292;
}

.cid-tibjfExkzT form .form-control::-moz-placeholder {
  color: #939292;
}

.cid-tibjfExkzT form .form-control:-moz-placeholder {
  color: #939292;
}

.cid-tibjfExkzT form .form-control:-ms-input-placeholder {
  color: #939292;
}

.cid-tibjfExkzT form select {
  color: #000000 !important;
}

.cid-tibjfExkzT form textarea {
  height: 100px;
}

.cid-tibjfExkzT form input,
.cid-tibjfExkzT form textarea {
  background-color: transparent !important;
}

.cid-tibjfExkzT form input:active,
.cid-tibjfExkzT form textarea:active,
.cid-tibjfExkzT form input:focus,
.cid-tibjfExkzT form textarea:focus {
  border-color: #ed2a08 !important;
}

.cid-tibjfExkzT form input:active::-webkit-input-placeholder,
.cid-tibjfExkzT form textarea:active::-webkit-input-placeholder,
.cid-tibjfExkzT form input:focus::-webkit-input-placeholder,
.cid-tibjfExkzT form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}

.cid-tibjfExkzT form input:active::-moz-placeholder,
.cid-tibjfExkzT form textarea:active::-moz-placeholder,
.cid-tibjfExkzT form input:focus::-moz-placeholder,
.cid-tibjfExkzT form textarea:focus::-moz-placeholder {
  color: #939292;
}

.cid-tibjfExkzT form input:active:-moz-placeholder,
.cid-tibjfExkzT form textarea:active:-moz-placeholder,
.cid-tibjfExkzT form input:focus:-moz-placeholder,
.cid-tibjfExkzT form textarea:focus:-moz-placeholder {
  color: #939292;
}

.cid-tibjfExkzT form input:active:-ms-input-placeholder,
.cid-tibjfExkzT form textarea:active:-ms-input-placeholder,
.cid-tibjfExkzT form input:focus:-ms-input-placeholder,
.cid-tibjfExkzT form textarea:focus:-ms-input-placeholder {
  color: #939292;
}

.cid-tibjfExkzT form .row {
  margin-left: -2% !important;
  margin-right: -2% !important;
}

.cid-tibjfExkzT form .row [class*=col] {
  padding-left: 2% !important;
  padding-right: 2% !important;
}

.cid-tibjfExkzT form label {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
}

.cid-tibjfExkzT form .form-check-input {
  border-color: #000000 !important;
  outline: none !important;
  box-shadow: none !important;
}

.cid-tibjfExkzT form .form-check-input:focus,
.cid-tibjfExkzT form .form-check-input:hover {
  border-color: #ed2a08 !important;
}

.cid-tibjfExkzT form .form-check-input:checked {
  border-color: #ed2a08 !important;
  background-color: #ed2a08 !important;
}

.cid-tib8bnYZ5W {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/handphoneapp-1698x1001.png");
}

.cid-tib8bnYZ5W .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}

.cid-tib8bnYZ5W .scroll {
  overflow-x: auto;
  padding: 0;
}

.cid-tib8bnYZ5W .table-wrapper {
  margin: 0 auto;
}

.cid-tib8bnYZ5W table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}

.cid-tib8bnYZ5W table th {
  padding: 1rem .75rem;
  transition: all .2s;
  text-align: center;
  background-color: #353535;
  color: white;
  vertical-align: middle;
}

.cid-tib8bnYZ5W table td {
  padding: 1rem 1.2rem;
  vertical-align: middle;
}

.cid-tib8bnYZ5W table.table {
  background: #f4f4f4;
}

.cid-tib8bnYZ5W .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}

.cid-tib8bnYZ5W .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}

.cid-tib8bnYZ5W .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}

.cid-tib8bnYZ5W .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}

.cid-tib8bnYZ5W .dataTables_wrapper {
  display: block;
}

.cid-tib8bnYZ5W .dataTables_wrapper .search {
  margin-bottom: .5rem;
}

.cid-tib8bnYZ5W .dataTables_wrapper .table {
  overflow-x: auto;
}

.cid-tib8bnYZ5W .head-item:after,
.cid-tib8bnYZ5W .head-item:before {
  bottom: 1.6em !important;
}

@media (max-width: 1300px) {
  .cid-tib8bnYZ5W .dataTables_filter {
    text-align: center;
  }

  .cid-tib8bnYZ5W .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .cid-tib8bnYZ5W .table-wrapper {
    width: 100% !important;
  }

  .cid-tib8bnYZ5W table th,
  .cid-tib8bnYZ5W table td {
    padding: .1rem;
  }
}

.cid-tib8bnYZ5W .mbr-section-title,
.cid-tib8bnYZ5W .underline {
  text-align: left;
}

.cid-tib8bnYZ5W .body-item {
  color: #000000;
}

.cid-tib8bnYZ5W .body-itemred {
  color: #ed2a08;
}

.cid-tib8bnYZ5W .body-itemgreen {
  color: #0dad0e;
}

.cid-tib8bnYZ5W .head-item {
  color: #ffffff;
}

.cid-tib8bnYZ5W .info {
  color: #353535;
}

.cid-tib8bnYZ5W .mbr-section-btn {
  margin-top: auto !important;
}

.cid-tib8bnYZ5W .mbr-section-title {
  color: #353535;
  text-align: left;
}

.cid-tib8bnYZ5W .mbr-text,
.cid-tib8bnYZ5W .mbr-section-btn {
  color: #ffffff;
}

.cid-tib8bnYZ5W .item-title {
  color: #353535;
}

.cid-tib8bnYZ5W LABEL {
  color: #000000;
  text-align: right;
}

.cid-tib8bqYXjR {
  z-index: 1000;
  width: 100%;
}

.cid-tib8bqYXjR .btn {
  padding: 0.3rem 2rem;
}

.cid-tib8bqYXjR .nav-link {
  position: relative;
}

.cid-tib8bqYXjR .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  transition: all 0.3s;
  background: #ed2a08;
}

.cid-tib8bqYXjR .nav-link:hover:before {
  width: 100%;
}

.cid-tib8bqYXjR nav.navbar {
  position: fixed;
}

.cid-tib8bqYXjR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tib8bqYXjR .dropdown-menu {
  padding: 0;
  border-radius: 0px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.cid-tib8bqYXjR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}

.cid-tib8bqYXjR .dropdown-item:hover,
.cid-tib8bqYXjR .dropdown-item:focus {
  background: #ed2a08 !important;
  color: white !important;
}

.cid-tib8bqYXjR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.cid-tib8bqYXjR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cid-tib8bqYXjR .nav-dropdown .link {
  padding: 0 !important;
  margin: 0.667em 1em !important;
}

.cid-tib8bqYXjR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}

.cid-tib8bqYXjR .container {
  display: flex;
  margin: auto;
}

.cid-tib8bqYXjR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}

.cid-tib8bqYXjR .dropdown-menu,
.cid-tib8bqYXjR .navbar.opened {
  background: #ffffff !important;
}

.cid-tib8bqYXjR .nav-item:focus,
.cid-tib8bqYXjR .nav-link:focus {
  outline: none;
}

.cid-tib8bqYXjR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}

.cid-tib8bqYXjR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}

.cid-tib8bqYXjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}

.cid-tib8bqYXjR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}

.cid-tib8bqYXjR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}

.cid-tib8bqYXjR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}

.cid-tib8bqYXjR .navbar-short {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff !important;
  transition: all 0.3s;
}

.cid-tib8bqYXjR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}

.cid-tib8bqYXjR .navbar.opened {
  transition: all 0.3s;
}

.cid-tib8bqYXjR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}

.cid-tib8bqYXjR .navbar .navbar-logo img {
  width: auto;
}

.cid-tib8bqYXjR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}

.cid-tib8bqYXjR .navbar.collapsed {
  justify-content: center;
}

.cid-tib8bqYXjR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}

.cid-tib8bqYXjR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}

@media (min-width: 992px) {
  .cid-tib8bqYXjR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}

.cid-tib8bqYXjR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}

.cid-tib8bqYXjR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}

.cid-tib8bqYXjR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}

.cid-tib8bqYXjR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}

.cid-tib8bqYXjR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}

.cid-tib8bqYXjR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .cid-tib8bqYXjR .navbar .nav-item .nav-link::before {
    display: none;
  }

  .cid-tib8bqYXjR .navbar.opened .dropdown-menu {
    top: 0;
  }

  .cid-tib8bqYXjR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }

  .cid-tib8bqYXjR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }

  .cid-tib8bqYXjR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }

  .cid-tib8bqYXjR .navbar .navbar-logo img {
    height: 3rem !important;
  }

  .cid-tib8bqYXjR .navbar ul.navbar-nav li {
    margin: auto;
  }

  .cid-tib8bqYXjR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }

  .cid-tib8bqYXjR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }

  .cid-tib8bqYXjR .navbar .navbar-toggler {
    flex-basis: auto;
  }

  .cid-tib8bqYXjR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.cid-tib8bqYXjR .navbar.navbar-short {
  min-height: 60px;
}

.cid-tib8bqYXjR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}

.cid-tib8bqYXjR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}

.cid-tib8bqYXjR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}

.cid-tib8bqYXjR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}

.cid-tib8bqYXjR .navbar-brand .navbar-logo a {
  outline: none;
}

.cid-tib8bqYXjR .dropdown-item.active,
.cid-tib8bqYXjR .dropdown-item:active {
  background-color: transparent;
}

.cid-tib8bqYXjR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}

.cid-tib8bqYXjR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}

.cid-tib8bqYXjR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}

.cid-tib8bqYXjR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}

.cid-tib8bqYXjR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}

.cid-tib8bqYXjR .navbar .dropdown.open>.dropdown-menu {
  display: block;
}

.cid-tib8bqYXjR ul.navbar-nav {
  flex-wrap: wrap;
}

.cid-tib8bqYXjR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}

.cid-tib8bqYXjR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}

.cid-tib8bqYXjR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #282b2f;
}

.cid-tib8bqYXjR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}

.cid-tib8bqYXjR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tib8bqYXjR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}

.cid-tib8bqYXjR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}

.cid-tib8bqYXjR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tib8bqYXjR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}

.cid-tib8bqYXjR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}

.cid-tib8bqYXjR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}

.cid-tib8bqYXjR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}

.cid-tib8bqYXjR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cid-tib8bqYXjR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .cid-tib8bqYXjR .navbar {
    height: 70px;
  }

  .cid-tib8bqYXjR .navbar.opened {
    height: auto;
  }

  .cid-tib8bqYXjR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}

.cid-tib8brBAzW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
}

.cid-tib8brBAzW .mbr-text {
  color: #00284E;
  opacity: 0.8;
}