body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.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.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #338517 !important;
  border-color: #338517 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #173b0a !important;
  border-color: #173b0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #173b0a !important;
  border-color: #173b0a !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.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;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #338517;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #173b0a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #338517 !important;
  border-color: #338517 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #338517 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #122e08 !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: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', 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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', 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: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #338517 !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='%236592e6' %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-u9tVaijT1v #Indexout {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 991px) {
  .cid-u9tVaijT1v #Indexout {
    padding-top: 5rem;
  }
}
.cid-u9tVaijT1v .main-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.cid-u9tVaijT1v .history-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-top: 180px;
}
@media (max-width: 991px) {
  .cid-u9tVaijT1v .history-item {
    flex-wrap: wrap;
    margin-top: 110px;
  }
}
@media (max-width: 575px) {
  .cid-u9tVaijT1v .history-item {
    margin-top: 100px;
  }
}
.cid-u9tVaijT1v .history-item-first {
  margin-top: 0;
}
.cid-u9tVaijT1v .img-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-u9tVaijT1v .img-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
@media (max-width: 991px) {
  .cid-u9tVaijT1v .img-container {
    order: 1;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
  }
}
.cid-u9tVaijT1v .image-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u9tVaijT1v .image-wrapper {
    max-width: 550px;
  }
}
.cid-u9tVaijT1v .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u9tVaijT1v .text-container {
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1200px) {
  .cid-u9tVaijT1v .text-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-u9tVaijT1v .text-container {
    order: 2;
    width: 100%;
    padding-left: 35px !important;
    padding-right: 0 !important;
    padding-top: 18px;
  }
}
@media (max-width: 1200px) {
  .cid-u9tVaijT1v .history-item-reverse .img-container {
    padding-left: 55px;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .cid-u9tVaijT1v .history-item-reverse .text-container {
    padding-left: 0;
    padding-right: 55px;
  }
}
.cid-u9tVaijT1v .text-wrapper {
  max-width: 605px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u9tVaijT1v .text-wrapper {
    max-width: 550px;
  }
}
.cid-u9tVaijT1v .card-title {
  width: 100%;
  color: #A2A4A7;
}
.cid-u9tVaijT1v .card-subtitle {
  width: 100%;
  color: #45494E;
  margin-top: 16px;
}
.cid-u9tVaijT1v .mbr-text {
  width: 100%;
  color: #45494E;
  margin-top: 36px;
}
.cid-u9tVaijT1v .mbr-section-btn {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-u9tVaijT1v .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-u9tVaijT1v .center-line {
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  height: 100%;
  background-color: #45494e;
  opacity: 0.2;
}
@media (max-width: 991px) {
  .cid-u9tVaijT1v .center-line {
    left: 5px;
    transform: translateX(0);
  }
}
.cid-u9tVaijT1v .item-circle {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 11px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #45494e;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .cid-u9tVaijT1v .item-circle {
    left: 0;
    transform: translateX(0);
  }
}
.cid-u9tVaijT1v img {
  transform-style: preserve-3d;
  position: relative;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.2, 1);
}
.cid-u9tVaijT1v img:hover {
  transform: rotateY(15deg) rotateX(15deg);
}
.cid-u9tBw3y7jS #Blogout {
  padding-top: 1rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
@media (min-width: 991px) {
  .cid-u9tBw3y7jS #Blogout {
    padding-top: 2rem;
  }
}
.cid-u9tBw3y7jS #Blogout .mbr-section-title {
  margin-bottom: 18px;
  color: #202020;
}
.cid-u9tBw3y7jS #Blogout .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-u9tBw3y7jS .card_box {
  margin-bottom: 65px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u9tBw3y7jS .card_info {
  margin-bottom: 12px;
}
.cid-u9tBw3y7jS .card_date {
  color: #555555;
}
.cid-u9tBw3y7jS .card_title {
  line-height: 1.1em;
  margin-bottom: 18px;
  color: #202020;
  text-align: center;
}
.cid-u9tBw3y7jS .card_text {
  margin-top: 4px;
}
.cid-u9tBw3y7jS .item-img {
  margin-bottom: 30px;
}
.cid-u9tBw3y7jS .item-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-height: 450px;
}
.cid-u9tBw3y7jS .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-u9tBw3y7jS .linkBtn a:after,
.cid-u9tBw3y7jS .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-u9tBw3y7jS .linkBtn a:before {
  left: 0;
}
.cid-u9tBw3y7jS .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-u9tBw3y7jS .linkBtn a:hover:before,
.cid-u9tBw3y7jS .linkBtn a:hover:after {
  transform: translateX(100%);
}
#Creator #load {
  display: none;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  position: absolute;
  background-color: #0000004a;
  opacity: 0.8;
}
#Creator #loader {
  border: 16px solid transparent;
  border-top-color: transparent;
  border-top-style: solid;
  border-top-width: 16px;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  border-bottom-width: 16px;
  border-radius: 50%;
  border-top: 16px solid #70ff70;
  border-bottom: 16px solid #ffcdba;
  width: 10vw;
  height: 10vw;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 40vh;
  left: 45vw;
  margin: auto;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#Creator #Creatorout {
  font-family: Roboto !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Verhindert Scrollen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  opacity: 1;
  color: #333;
  background-image: url('https://modsbyben.net/creator2/assets/images/background2.jpg');
}
#Creator h1 {
  margin-top: 20px;
}
#Creator h2 {
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(1, 4, 0, 0.5);
  font-size: 1.5rem;
  padding-bottom: 1rem;
  width: 100%;
}
#Creator button {
  padding: .5rem;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid silver;
  background-color: #eaeaea;
  box-shadow: 0 1px 3px 1px rgba(236, 236, 236, 0.35);
  border-radius: 10px;
  margin-bottom: .5rem;
}
#Creator #Verlauf_btn_div,
#Creator #Credits_btn_div {
  padding: 30px;
}
#Creator #Profil_btn_div {
  padding: 30px;
}
#Creator #Profil_btn_div button {
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
  color: white;
  display: none;
}
#Creator #Profil_btn_div #FB_Login,
#Creator #Profil_btn_div #FB_Logout {
  background-color: #3578E5;
}
#Creator #Profil_btn_div #G_Login,
#Creator #Profil_btn_div #G_Logout {
  background-color: #202124;
  justify-content: center;
}
#Creator #Profil_btn_div #M_Login {
  background-color: #338517;
  justify-content: center;
}
#Creator #Profil_btn_div span {
  padding-right: 0.5rem;
}
#Creator #TextCount {
  position: absolute;
  right: 1rem;
  bottom: 0;
  color: silver;
}
#Creator label {
  font-weight: 600;
}
#Creator .Thema_input {
  width: 100%;
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 10px;
}
#Creator #preview-image {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
#Creator .Content_in {
  display: none;
}
#Creator #Contentdiv {
  height: 100%;
  width: 100%;
  padding: 1.5rem;
  overflow: hidden;
  max-width: 800px;
}
#Creator #Content {
  margin-top: 1.5rem;
  height: 0;
  width: 100%;
  box-shadow: 0 5px 10px 5px rgba(236, 236, 236, 0.35);
  border-radius: 10px;
  overflow: hidden;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
}
#Creator #Contentform {
  height: 100%;
  width: 100%;
}
#Creator #Builder {
  margin-top: 1.5rem;
  height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: auto;
  scrollbar-width: thin;
}
#Creator #Builder .mbr-iconfont {
  padding-right: 0.5rem;
}
#Creator #Builder .Unterpunkt {
  padding-left: 2rem;
  display: none;
}
#Creator #Builder .active {
  background-color: #70ff70 !important;
}
#Creator #Builder .edit {
  background-color: #ffcdba;
}
#Creator .blink {
  animation: blink 2s infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
#Creator textarea {
  width: 100%;
  padding: 15px;
  resize: none;
  height: 100%;
  border: none;
  background-color: transparent;
}
#Creator .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
#Creator .gallery img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
#Creator .gallery video {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
#Creator .media-container {
  position: relative;
}
#Creator .overlay-button {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: cell;
  border-radius: 5px;
}
#Creator .url {
  padding: 5px 5px;
  right: 15px;
}
#Creator .download {
  padding: 5px 5px;
  right: 85px;
}
#Creator #verlinkung {
  padding: 5px 5px;
  right: calc(46%);
  display: none;
}
#Creator .show {
  padding: 5px 5px;
  right: calc(46%);
}
#Creator .kopieren {
  padding: 5px 5px;
  left: 15px;
  right: auto;
}
#Creator .bloglink {
  padding: 5px 5px;
  left: 85px;
  right: auto;
}
#Creator .pointer {
  cursor: pointer;
}
#Creator #Media_Aufnehmen_in .img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}
#Creator #Media_Aufnehmen_in .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#Creator #Media_Aufnehmen_in .img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#Creator #Media_Aufnehmen_in #Body_Div_Foto_Local {
  display: flex;
  justify-content: center;
  align-items: center;
}
#Creator .fotobtn {
  border-radius: 4px 4px 0px 0px;
}
#Creator .fotoclass {
  border: 1px solid #232323;
  border-radius: 0px 0px 4px 4px;
}
#Creator #foto-info {
  position: sticky;
  bottom: 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
#Creator #foto-info .cameraicons {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #aa0302;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin: 0.5rem;
  position: absolute;
}
#Creator #Vorschau_in {
  height: 100%;
  width: 100%;
  padding: 15px;
}
#Creator #Vorschau_in img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 30px;
  border-radius: 5px;
}
#Creator #Vorschau_in .highlight {
  font-weight: bold;
}
#Creator #vorschau-text {
  padding-bottom: 30px;
}
#Creator .flex-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: inherit;
  position: sticky;
  top: 0;
  width: 100%;
}
#Creator .flex-container .active {
  box-shadow: 0 1px 3px 1px rgba(144, 255, 103, 0.81);
}
#Creator .menu-button {
  cursor: pointer;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  box-shadow: 0 1px 3px 1px rgba(236, 236, 236, 0.35);
  border-radius: 10px;
  min-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
#Creator .Contentinner {
  display: none;
  height: 100%;
  width: 100%;
  overflow: auto;
  scrollbar-width: thin;
}
#Creator #Settings_btn_div {
  padding: 30px;
}
#Creator #Settings_btn_div .inputbox {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: .5rem;
}
#Creator #Settings_btn_div select {
  width: 100%;
  padding: 10px;
  background-color: #eaeaea;
  border-radius: 10px;
  border: 0;
  border-bottom: 1px solid silver;
}
#Creator #Settings_btn_div [type="checkbox"],
#Creator #Settings_btn_div [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
#Creator #Settings_btn_div input {
  display: none;
  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  appearance: auto;
  cursor: text;
  margin: 0em;
  padding: 1px 2px;
  border: none;
  text-indent: 0;
  background: transparent;
  resize: none;
  outline: none;
  -webkit-appearance: none;
  line-height: normal;
}
#Creator #Settings_btn_div label::after {
  display: block;
  content: '';
  width: 0;
  height: 100%;
  background: #202123;
  transition: all .3s;
  border-radius: 10px;
}
#Creator #Settings_btn_div input:checked + label::after {
  width: 100%;
}
#Creator #Settings_btn_div input:checked + label::before {
  left: 20px;
}
#Creator #Settings_btn_div label::before {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s;
}
#Creator #Settings_btn_div label {
  display: block;
  width: 40px;
  height: 20px;
  border-radius: 20px;
  background: #eaeaea;
  border: 1px solid #A4A5B3;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-right: .5rem;
}
#Creator #Settings_btn_div .number {
  width: 48px;
  color: white;
  background: #202123;
  border-radius: 20px;
}
@media (max-width: 991px) {
  #Creator #Settings_btn_div .number {
    width: 40px;
    text-align: center;
    margin-right: 10px;
  }
}
#Creator .geteilt {
  padding-right: .25rem;
  padding-left: .75rem;
}
#Creator .edit_btn {
  background: #ffcdba;
}
#Creator .social_btn {
  background: #CAC5FF;
}
#Creator .blog_btn {
  background: #a9b3bb;
}
#Creator .beides_btn {
  background: linear-gradient(to right, #cac5ff, #a9b3bb);
}
#Creator .socialhide {
  display: none;
}
#Creator .bloghide {
  display: none;
}
.cid-uacI4XzdFm.popup-builder {
  background-color: #ffffff;
}
.cid-uacI4XzdFm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uacI4XzdFm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uacI4XzdFm .modal-content,
.cid-uacI4XzdFm .modal-dialog {
  height: auto;
}
.cid-uacI4XzdFm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uacI4XzdFm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uacI4XzdFm .form-wrapper .mbr-form .form-group,
  .cid-uacI4XzdFm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uacI4XzdFm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uacI4XzdFm .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uacI4XzdFm .mbr-text {
  text-align: center;
  color: #338517;
}
.cid-uacI4XzdFm .pt-0 {
  padding-top: 0 !important;
}
.cid-uacI4XzdFm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uacI4XzdFm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uacI4XzdFm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uacI4XzdFm .modal-open {
  overflow: hidden;
}
.cid-uacI4XzdFm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uacI4XzdFm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uacI4XzdFm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uacI4XzdFm .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uacI4XzdFm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uacI4XzdFm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uacI4XzdFm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uacI4XzdFm .modal-content {
  background: #232323;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uacI4XzdFm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uacI4XzdFm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uacI4XzdFm .modal-backdrop.fade {
  opacity: 0;
}
.cid-uacI4XzdFm .modal-backdrop.show {
  opacity: .5;
}
.cid-uacI4XzdFm .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 !important;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uacI4XzdFm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uacI4XzdFm .modal-header {
    padding: 1rem;
  }
}
.cid-uacI4XzdFm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uacI4XzdFm .modal-header .close svg {
  fill: #353535;
}
.cid-uacI4XzdFm .modal-header .close:hover {
  opacity: 1;
}
.cid-uacI4XzdFm .modal-header .close:focus {
  outline: none;
}
.cid-uacI4XzdFm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uacI4XzdFm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uacI4XzdFm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uacI4XzdFm .modal-body {
    padding: 1rem;
  }
}
.cid-uacI4XzdFm .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uacI4XzdFm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uacI4XzdFm .modal-footer {
    padding: 1rem;
  }
}
.cid-uacI4XzdFm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uacI4XzdFm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uacI4XzdFm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uacI4XzdFm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uacI4XzdFm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uacI4XzdFm .modal-lg,
  .cid-uacI4XzdFm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uacI4XzdFm .modal-xl {
    max-width: 1140px;
  }
}
.cid-uacI4XzdFm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uacI4XzdFm .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uacI4XzdFm .form-group {
  margin-bottom: 1rem;
}
.cid-uacI4XzdFm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uacI4XzdFm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uacI4XzdFm .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uacI4XzdFm .mbr-section-btn {
  margin: 0;
}
.cid-uacI4XzdFm .mbr-section-btn .btn {
  margin: 0;
}
.content-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 1rem;
  border: 0;
}
.media-video-preview {
  height: 100%;
  min-height: 18rem;
  margin-top: 0;
  aspect-ratio: auto;
  background: #000000;
  border-radius: 8px;
}
.media-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
  text-align: stretch;
}
.media-choice button {
  width: 100%;
  min-height: 3.25rem;
  margin: 0;
  padding: 0.8rem 0.75rem;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0.22rem 0.55rem rgba(0, 0, 0, 0.16);
  transition: filter 0.15s ease, transform 0.15s ease;
}
.media-choice [data-media-choice="upload"] {
  background: #3085d6;
}
.media-choice [data-media-choice="library"] {
  background: #00a65a;
}
.media-choice [data-media-choice="camera"] {
  background: #6f42c1;
}
.media-choice [data-media-choice="youtube"] {
  background: #d33;
}
.media-choice button:focus,
.media-choice button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
@media (max-width: 420px) {
  .media-choice {
    grid-template-columns: 1fr;
  }
}
