/*************************************
=common
*************************************/
/*************************************
=elements
*************************************/
body {
  margin: 0;
  background-color: #ececec;
  font-family: Europa, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

button:focus {
  outline: 0;
}

textarea {
  height: 140px;
  overflow-wrap: break-word;
}

strong {
  font-weight: 700;
}

/*************************************
=objects
*************************************/
.page-content {
  display: none;
}

.main-body {
  padding: 60px 30px 40px;
  background-color: #fff;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .main-body {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.box {
  padding: 15px 20px;
  border-radius: 10px;
}

.has-shadow {
  -webkit-box-shadow: 0 0 34px -10px rgba(102, 102, 102, 0.5);
          box-shadow: 0 0 34px -10px rgba(102, 102, 102, 0.5);
}

.icon-svg {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.icon-svg svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: #000000;
}

.icon-svg.icon-tolado svg path:nth-child(2) {
  stroke: #000000;
}

.result-markup {
  position: relative;
}

.result-markup > .icon-svg {
  position: absolute;
  top: -2px;
  left: -35px;
}

.result-markup svg {
  width: 22px;
  height: 22px;
}

.divider {
  display: block;
  height: 1px;
  margin: 30px auto;
  background-color: #e0e0e0;
}

.select-wrapper {
  display: inline-block;
  min-width: 0px;
  padding: 0 8px;
  background-color: #ececec;
  border: 1px solid #ececec;
  border-radius: 24px;
  overflow: hidden;
}

.select-wrapper--block {
  display: block;
}

.select-wrapper--not-rounded {
  border-radius: 10px;
}

@media (max-width: 767px) {
  .select-wrapper {
    padding: 0 7px;
  }
}

.select-wrapper.in-focus {
  background-color: #fff;
  border-color: #000000;
}

.select-wrapper > select {
  border: none;
}

.select-wrapper > select:focus {
  border: none;
}

.form-control {
  padding: 8px 15px;
  background-color: #ececec;
  border-color: #ececec;
  border-radius: 10px;
  font-size: 14px;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #000000;
}

.form-control.completed {
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #ececec;
}

.form-control__input {
  padding-top: 5px;
  padding-bottom: 5px;
}

.form-control--no-border {
  background-color: transparent;
  border: none;
  outline: 0;
}

.progress {
  height: 10px;
  border-radius: 10px;
}

.progress-bar {
  background: -webkit-gradient(linear, right top, left top, from(#315470), to(#315470));
  background: linear-gradient(-90deg, #315470, #315470);
  border-radius: 10px;
  -webkit-transition: none;
  transition: none;
}

.progress-module {
  background: -webkit-gradient(linear, right top, left top, from(#4883b2), to(#4883b2));
  background: linear-gradient(-90deg, #4883b2, #4883b2);
}

.table td {
  position: relative;
}

.table.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.03) !important;
}

.modal-content {
  border-radius: 10px;
}

.modal-header {
  padding-bottom: 0;
  border: none;
}

.modal-header > button {
  color: #000000;
}

.modal-body {
  padding: 0 50px 30px;
}

.video-wrapper > video {
  width: 100%;
}

@media (max-width: 767px) {
  .video-wrapper > iframe {
    width: 100%;
    height: auto;
  }
}

.vimeo-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 10px auto 20px;
}

@media (max-width: 767px) {
  .vimeo-wrapper iframe {
    width: 100%;
    height: auto;
  }
}

.item-watermark {
  position: absolute;
  top: -10px;
  right: 0;
  display: block;
  opacity: .1;
  line-height: 1;
  font-weight: bold;
  font-size: 120px;
  color: #000000;
}

@media (max-width: 767px) {
  .item-watermark {
    font-size: 72px;
  }
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.tooltip {
  line-height: 1.3;
  font-family: Europa, sans-serif;
  font-size: 14px;
  opacity: 1;
  display: block;
}

.tooltip-inner {
  max-width: 300px;
  padding: 10px;
  background-color: #315470;
  text-align: left;
}

.tooltip-inner ul {
  list-style: none;
  padding-left: 0;
}

.tooltip.show {
  opacity: 1;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
  border-top-color: #315470 !important;
}

.fade--800 {
  -webkit-transition: opacity .8s linear;
  transition: opacity .8s linear;
}

.fade--800 .modal-dialog {
  -webkit-transition: -webkit-transform 0.8s ease-out;
  transition: -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out;
  transition: transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.has-overlay {
  position: relative;
  overflow: hidden;
}

.has-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.is-locked {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.is-locked .icon-svg {
  width: 80px;
  height: 80px;
  margin-right: 0;
  padding: 20px;
  background-color: rgba(49, 84, 112, 0.7);
  border-radius: 50%;
}

.is-locked .icon-svg svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.section {
  padding-bottom: 30px;
}

/*************************************
=title
*************************************/
.title {
  font-size: 36px;
  font-weight: 700;
  color: black;
}

.title.title-white {
  color: #fff;
}

.sub-title {
  font-size: 16px;
}

/*************************************
=heading
*************************************/
.heading {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
}

.heading.heading--normal {
  font-weight: 400;
}

/*************************************
=text
*************************************/
.text-notice {
  display: none;
  padding: 15px 30px;
  text-align: center;
  color: #c32e22;
}

.text-underline {
  text-decoration: underline;
}

.text-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 20px 0;
  text-align: left;
}

.text-divider::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

.text-divider .heading {
  min-width: 110px;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
  font-size: 16px;
}

/*************************************
=helpers
*************************************/
.f-15 {
  font-size: 15px;
}

.f-16 {
  font-size: 16px;
}

.f-17 {
  font-size: 17px;
}

.f-18 {
  font-size: 18px;
}

.f-19 {
  font-size: 19px;
}

.f-20 {
  font-size: 20px;
}

.f-21 {
  font-size: 21px;
}

.f-22 {
  font-size: 22px;
}

.f-23 {
  font-size: 23px;
}

.f-24 {
  font-size: 24px;
}

/*************************************
=font weight
*************************************/
.text-normal {
  font-weight: 400;
}

.text-bold {
  font-weight: 700;
}

/*************************************
=color
*************************************/
.color-primary {
  color: #000000;
}

.color-white {
  color: #fff;
}

.color-red {
  color: #c32e22;
}

/*************************************
=button
*************************************/
.btn-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn-wrapper .btn {
  margin-right: 15px;
}

@media (max-width: 767px) {
  .btn-wrapper .btn {
    min-width: 120px;
  }
}

.btn-wrapper .btn:last-of-type {
  margin-right: 0;
}

.btn {
  min-width: 160px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 24px;
  font-size: 14px;
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.not-rounded {
  min-width: 0;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
}

.btn.btn--rounded-10 {
  border-radius: 10px;
}

.btn.has-icon .icon-svg {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.btn.has-icon svg {
  fill: #fff;
  width: 14px;
  height: 14px;
}

.btn-primary {
  background-color: #315470;
  border-color: #315470;
}

.btn-primary--inverted {
  background-color: transparent;
  color: #315470;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:focus, .btn-primary:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #1D374C;
  border-color: #1D374C;
  color: #fff;
}

.btn-primary:disabled, .btn-primary.disabled {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #9abad3;
  border-color: #9abad3;
}

.btn-red {
  background-color: #c32e22;
  color: #fff;
}

.btn-red:hover {
  background-color: #d93326;
  color: #fff;
}

.btn-green {
  background-color: #7bb31a;
  color: #fff;
}

.btn-green:hover {
  background-color: #8ac91d;
  color: #fff;
}

.btn-white {
  background-color: #fff;
  border: 2px solid #fff;
  color: #315470;
}

.btn-white:hover {
  background-color: transparent;
  color: #fff;
}

.btn-black {
  background-color: #000;
  border: 2px solid #000;
  color: #fff;
}

.btn-black:hover {
  background-color: transparent;
  color: #000;
}

.btn-outline-secondary {
  background-color: transparent;
  border-color: #404545;
  color: #404545;
}

.btn-three-dots {
  position: relative;
  z-index: 0;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.btn-three-dots::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #ececec;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all .2s ease-in-out 0s;
  transition: all .2s ease-in-out 0s;
}

.btn-three-dots:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.btn-three-dots > .icon-svg {
  margin-right: 0;
}

.btn-three-dots > .icon-svg svg {
  width: 15px;
  height: 15px;
}

.toggle .btn {
  min-width: 0;
  padding: 6px 12px;
}

.toggle-on {
  text-align: left;
}

.toggle-off {
  background-color: #fff;
  text-align: right;
  color: #000000;
}

.toggle-handle {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #e0e0e0;
}

/*************************************
=custom input file
*************************************/
.custom-input-file {
  display: inline-block;
  width: 160px;
  padding: 10px 30px 10px 10px;
  background-color: #ececec;
  border: 1px solid #ececec;
  border-radius: 10px;
  cursor: pointer;
}

.custom-input-file__link {
  width: auto;
  min-width: 135px;
  padding: 8px 10px;
  background-color: transparent;
  border: none;
  border-radius: 0px;
  cursor: default;
}

.custom-input-file__link > a {
  color: #000000;
}

@media (max-width: 767px) {
  .custom-input-file {
    width: 100%;
    margin-bottom: 15px;
  }
}

.custom-input-file:focus {
  background-color: #fff;
  border-color: #000000;
}

.custom-input-file .icon-svg {
  position: relative;
  right: -20px;
  margin-right: 0;
  float: right;
}

.custom-input-file__input-hidden {
  display: none;
}

/*************************************
=custom radio button
*************************************/
.custom-radio.custom-control {
  display: inline-block;
}

.custom-radio.custom-control:not(:last-of-type) {
  margin-right: 20px;
}

.custom-radio .custom-control-input {
  top: 0;
  left: 10px;
  opacity: 0;
}

.custom-radio .custom-control-label::before, .custom-radio .custom-control-label::after {
  top: 4px;
  left: 5px;
  width: 12px;
  height: 12px;
  background-image: none !important;
  border-radius: 50%;
}

.custom-radio .custom-control-label::before {
  background-color: transparent;
  -webkit-transition: background-color .3s ease-in-out 0s;
  transition: background-color .3s ease-in-out 0s;
}

.custom-radio .custom-control-label::after {
  border: 1px solid #000000;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.custom-radio .custom-control-input:checked + .custom-control-label::before {
  background-color: #000000;
}

/*************************************
=dropdown
*************************************/
.dropdown .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.dropdown .btn-secondary-outline {
  background-color: transparent;
  border-color: #e0e0e0;
}

.dropdown.show .btn-primary {
  background-color: #000000;
  border-color: #000000;
}

/*************************************
=error-show
*************************************/
.error-show {
  display: none;
  margin-top: 25px;
  margin-bottom: 0px;
  padding: 10px 15px;
  text-align: center;
  border-radius: 10px;
}

.error-show.alert-danger {
  color: #d30000;
}

.error-show.alert {
  display: block;
}

/*************************************
= label
*************************************/
label {
  margin-bottom: 15px;
  font-weight: 700;
}

label.label {
  margin-bottom: 10px;
  padding-left: 10px;
}

/*************************************
=accounts affiliate tab
*************************************/
.account-form__item-label {
  margin-bottom: 15px;
}

.right-aligned > label {
  margin-left: 23px;
}

.right-aligned {
  float: right;
}

@media (max-width: 767px) {
  .right-aligned {
    float: none;
  }
}

.hidden {
  display: none;
}

#saveButtonLegalTypeWrap, #saveButtonWrap {
  text-align: center;
  margin: 20px 0;
}

#businessFieldNameWrapper > div, #businessFieldAddressWrapper > div {
  width: 100%;
}

#account-affiliate .tax-information .not-bordered, #account-affiliate .legal-type-information .not-bordered {
  border-bottom: none;
}

#account-affiliate .tax-information .btn-wrapper, #account-affiliate .legal-type-information .btn-wrapper {
  border-bottom: none;
}

/*************************************
=plugin
*************************************/
/*************************************
=animate
*************************************/
.animated.delay-1500ms {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

/*************************************
= cookie notice
*************************************/
#cookit-message {
  color: #000000 !important;
}

#cookit-link {
  font-weight: 700;
  color: #315470 !important;
}

#cookit-button {
  min-width: 120px;
  background-color: #315470 !important;
  border-radius: 24px;
  text-transform: uppercase;
  text-align: center;
}

/*************************************
=cropzee image cropper
*************************************/
#cropzee-modal .light-modal-content {
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 767px) {
  #cropzee-modal .light-modal-content {
    width: 90%;
  }
}

#cropzee-modal .light-modal-body {
  background-color: #fff;
}

#cropzee-modal .light-modal-body .croppr-container {
  text-align: center;
}

#cropzee-modal .light-modal-footer {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  background-color: #fff;
}

#cropzee-modal .light-modal-footer .light-modal-close-btn {
  padding: 6px 20px;
  min-width: 120px;
  background-color: #000000;
  border-radius: 24px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

#cropzee-modal .light-modal-footer .light-modal-close-btn:not(:last-of-type) {
  margin-right: 15px;
}

#cropzee-modal .light-modal-footer .light-modal-close-btn:nth-of-type(2) {
  display: none;
}

/*************************************
=zebra datepicker
*************************************/
.Zebra_DatePicker {
  position: relative;
  z-index: 1029;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: Europa, sans-serif;
}

.Zebra_DatePicker_Icon_Wrapper {
  width: auto !important;
}

.Zebra_DatePicker_Icon {
  visibility: hidden !important;
}

.Zebra_DatePicker table {
  border-collapse: separate;
  border-spacing: 2px;
}

.Zebra_DatePicker table.dp_monthpicker {
  width: auto;
}

.Zebra_DatePicker th, .Zebra_DatePicker td {
  position: relative;
  z-index: 0;
  width: 27px;
  height: 27px;
  padding: 5px 10px;
  border-radius: 50%;
  -webkit-transition: background-color .3s ease-in-out 0s;
  transition: background-color .3s ease-in-out 0s;
}

@media (max-width: 980px) {
  .Zebra_DatePicker th, .Zebra_DatePicker td {
    padding: 5px 8px;
  }
}

@media (max-width: 767px) {
  .Zebra_DatePicker th, .Zebra_DatePicker td {
    padding: 5px;
  }
}

.Zebra_DatePicker th.dp_hover, .Zebra_DatePicker td.dp_hover {
  background-color: #fff !important;
}

.Zebra_DatePicker th::before, .Zebra_DatePicker td::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.Zebra_DatePicker .dp_header > tbody > tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.Zebra_DatePicker .dp_header > tbody > tr > td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_caption {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  border-radius: 24px;
  text-align: left;
  font-weight: normal;
  -webkit-transition: background-color .3s ease-in-out 0s;
  transition: background-color .3s ease-in-out 0s;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_caption.dp_hover {
  background-color: #ececec !important;
  border-radius: 24px;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_caption::before {
  content: none;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_previous::before, .Zebra_DatePicker .dp_header > tbody > tr > .dp_next::before {
  z-index: 0;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_previous::after, .Zebra_DatePicker .dp_header > tbody > tr > .dp_next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  line-height: 35px;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: background-color .3s ease-in-out 0s;
  transition: background-color .3s ease-in-out 0s;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_previous.dp_hover, .Zebra_DatePicker .dp_header > tbody > tr > .dp_next.dp_hover {
  background-color: #fff;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_previous.dp_hover::after, .Zebra_DatePicker .dp_header > tbody > tr > .dp_next.dp_hover::after {
  background-color: #ececec;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_previous {
  position: relative;
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_previous::after {
  content: '\f104';
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_next {
  position: relative;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.Zebra_DatePicker .dp_header > tbody > tr > .dp_next::after {
  content: '\f105';
}

.Zebra_DatePicker .dp_daypicker > tr > th, .Zebra_DatePicker .dp_monthpicker > tr > th {
  font-weight: 400;
}

.Zebra_DatePicker .dp_daypicker > tr > td::before, .Zebra_DatePicker .dp_monthpicker > tr > td::before {
  background-color: #ececec;
  -webkit-transition: background-color .3s ease-in-out 0s;
  transition: background-color .3s ease-in-out 0s;
}

.Zebra_DatePicker .dp_daypicker > tr > td.dp_disabled::before, .Zebra_DatePicker .dp_monthpicker > tr > td.dp_disabled::before {
  background-color: #fff;
}

.Zebra_DatePicker .dp_daypicker > tr > td.dp_current, .Zebra_DatePicker .dp_monthpicker > tr > td.dp_current {
  color: #000000;
}

.Zebra_DatePicker .dp_daypicker > tr > td.dp_hover, .Zebra_DatePicker .dp_daypicker > tr > td.dp_selected, .Zebra_DatePicker .dp_monthpicker > tr > td.dp_hover, .Zebra_DatePicker .dp_monthpicker > tr > td.dp_selected {
  background-color: #fff;
  color: #fff;
  -webkit-transition: color .3s ease-in-out 0s;
  transition: color .3s ease-in-out 0s;
}

.Zebra_DatePicker .dp_daypicker > tr > td.dp_hover::before, .Zebra_DatePicker .dp_daypicker > tr > td.dp_selected::before, .Zebra_DatePicker .dp_monthpicker > tr > td.dp_hover::before, .Zebra_DatePicker .dp_monthpicker > tr > td.dp_selected::before {
  background-color: #000000;
}

.Zebra_DatePicker .dp_monthpicker > tr > td::before {
  background-color: #fff;
}

.Zebra_DatePicker .dp_footer {
  display: none !important;
}

/*************************************
=components
*************************************/
/*************************************
=side menu
*************************************/
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -999999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all .0s ease-in-out .3s;
  transition: all .0s ease-in-out .3s;
}

.side-menu.active {
  z-index: 1031;
  opacity: 1;
  -webkit-transition: opacity .3s ease-in-out 0s;
  transition: opacity .3s ease-in-out 0s;
}

.side-menu .side-menu__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: #fff;
  -webkit-transform: translate(100%);
          transform: translate(100%);
  -webkit-transition: -webkit-transform .3s ease-in-out 0s;
  transition: -webkit-transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s, -webkit-transform .3s ease-in-out 0s;
}

.side-menu.active .side-menu__wrapper {
  -webkit-transform: translate(0%);
          transform: translate(0%);
  -webkit-transition: -webkit-transform .3s ease-in-out .3s;
  transition: -webkit-transform .3s ease-in-out .3s;
  transition: transform .3s ease-in-out .3s;
  transition: transform .3s ease-in-out .3s, -webkit-transform .3s ease-in-out .3s;
}

.side-menu__header {
  padding: 32px;
  overflow: hidden;
}

.side-menu__header-close {
  float: right;
}

.side-menu__header-close > .btn-close {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #000000;
  cursor: pointer;
}

.side-menu__header-close .icon-svg {
  position: relative;
  top: -1px;
  margin-right: 0;
}

.side-menu__header-close .icon-svg svg {
  width: 10px;
  height: 10px;
}

.side-menu__header-logo {
  float: left;
}

.side-menu__header-logo > .navbar-brand {
  display: block;
  width: 100px;
  margin-right: 0;
  padding: 0;
}

.side-menu__header-logo > .navbar-brand > .navbar-brand__logo {
  display: block;
  width: 100%;
  color: #000000;
}

.side-menu__body {
  position: absolute;
  top: 162px;
  width: 100%;
  height: calc(100% - 162px);
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.side-menu__body::-webkit-scrollbar {
  display: none;
}

.side-menu__body > .divider {
  width: calc(100% - 64px);
  margin: 32px auto;
}

.side-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-menu__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 32px;
  text-decoration: none;
  color: #000000;
  -webkit-transition: background-color .1s ease-in-out 0s;
  transition: background-color .1s ease-in-out 0s;
}

.side-menu__link > * {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.side-menu__link .icon-svg {
  margin-right: 0;
}

.side-menu__link .icon-svg svg {
  width: 20px;
  height: 20px;
}

.side-menu__link-name {
  display: block;
  width: calc(100% - 36px);
  padding: 0 15px;
  line-height: 1.2;
  font-size: 15px;
  color: #000000;
}

.side-menu__link-name > strong {
  display: inline-block;
  font-weight: normal;
  color: #000000;
}

.side-menu__link .icon-svg.icon-arrow svg {
  width: 10px;
  height: 10px;
}

.side-menu__link:hover {
  background-color: #315470;
}

.side-menu__link:hover strong {
  color: #fff;
}

.side-menu__link:hover .icon-svg svg {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.side-menu__list-item.has-child .icon-svg.icon-arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s ease-in-out 0s;
  transition: -webkit-transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s, -webkit-transform .3s ease-in-out 0s;
}

.side-menu__list-item.has-child .side-menu__list-child-wrapper {
  display: none;
  padding: 12px 32px;
  overflow: hidden;
  background-color: #f3f3f3;
}

.side-menu__list-item.has-child .side-menu__list-child {
  padding: 0;
}

.side-menu__list-item.has-child .side-menu__list-child .side-menu__list-item {
  padding-bottom: 0;
}

.side-menu__list-item.has-child .side-menu__list-child .side-menu__link {
  padding: 12px 20px 12px 45px;
  border-radius: 24px;
}

.side-menu__list-item.has-child .side-menu__list-child .side-menu__link-name {
  padding: 0;
  font-size: 13px;
}

.side-menu__list-item.has-child.active.active .icon-svg.icon-arrow {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.side-menu__list-item.has-child.active.active .side-menu__list-child-wrapper {
  display: block;
}

/*************************************
=header
*************************************/
.navbar {
  padding: 5px 30px;
  -webkit-transition: all .2s ease-in-out 0s;
  transition: all .2s ease-in-out 0s;
}

@media (max-width: 767px) {
  .navbar {
    padding: 5px;
  }
}

.navbar.sticky {
  background-color: #315470;
}

.navbar .container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.navbar-brand > .navbar-brand__logo {
  width: 90px;
  height: auto;
  -webkit-transition: width .3s ease-in-out 0s;
  transition: width .3s ease-in-out 0s;
}

.sticky .navbar-brand > .navbar-brand__logo {
  width: 50px;
}

.navbar-nav {
  display: block;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: -webkit-transform .1s ease-in-out 0s;
  transition: -webkit-transform .1s ease-in-out 0s;
  transition: transform .1s ease-in-out 0s;
  transition: transform .1s ease-in-out 0s, -webkit-transform .1s ease-in-out 0s;
}

.navbar-nav .nav-item {
  position: relative;
  display: inline-block;
}

.navbar-nav .nav-item .side-menu-open svg {
  fill: #fff;
}

.navbar-nav .nav-link, .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-nav .profile {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-nav .profile__pic {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.navbar-nav .profile__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.navbar-nav .profile__name {
  text-decoration: none;
  color: #fff;
}

.navbar-nav .profile__name:hover {
  color: #fff;
}

.navbar-nav .profile__name > .fa-angle-down {
  margin-left: 5px;
  font-size: 14px;
}

.navbar-nav .dropdown-menu {
  position: absolute;
  top: calc( 50% + 5px);
  left: -92px;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0 0 34px -10px rgba(102, 102, 102, 0.5);
          box-shadow: 0 0 34px -10px rgba(102, 102, 102, 0.5);
  border-radius: 10px;
  border: none;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}

.navbar-nav .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  top: calc(154% - 10px);
}

.navbar-nav .dropdown-menu::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: -1;
  display: block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.navbar-nav .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
}

.navbar-nav .dropdown-item:not(:last-of-type) {
  border-bottom: 1px solid #e0e0e0;
}

.navbar-nav .dropdown-item:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.navbar-nav .dropdown-item:last-of-type {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.navbar-nav .dropdown-item:focus {
  outline: 0;
}

.navbar-nav .dropdown-item:hover, .navbar-nav .dropdown-item.active, .navbar-nav .dropdown-item:active {
  background-color: #ececec;
  -webkit-transition: background-color .3s ease-in-out 0s;
  transition: background-color .3s ease-in-out 0s;
}

.navbar-nav .dropdown-item__icon, .navbar-nav .dropdown-item__name, .navbar-nav .dropdown-item__arrow {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.navbar-nav .dropdown-item__icon {
  margin-right: 0;
}

.navbar-nav .dropdown-item__icon svg {
  width: 18px;
  height: 18px;
}

.navbar-nav .dropdown-item__name {
  display: block;
  width: 170px;
  padding: 0 15px;
  line-height: 1.2;
  font-size: 13px;
  color: #3c3c3c;
}

.navbar-nav .dropdown-item__name > strong {
  display: block;
  color: #000000;
}

.navbar-nav .dropdown-item__arrow {
  margin-right: 0;
}

.navbar-nav .dropdown-item__arrow svg {
  width: 9px;
  height: 9px;
}

/*************************************
=banner
*************************************/
.banner {
  position: relative;
  overflow: hidden;
  height: 300px;
  margin-bottom: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  .banner {
    height: 240px;
  }
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .8;
  background: linear-gradient(139deg, #000000, #000000);
}

.banner__description {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .banner__description {
    top: 65%;
  }
}

.banner__description .title {
  font-size: 30px;
  margin-bottom: 0;
}

.banner__divider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.banner__divider svg {
  width: 100%;
  fill: #ececec;
  -webkit-transform: translateY(50%) scale(1.2);
          transform: translateY(50%) scale(1.2);
}

/*************************************
=bookings
*************************************/
.bookings {
  padding: 30px 0 0;
}

.bookings > .heading {
  padding: 0 15px;
  font-size: 16px;
  color: #000000;
}

.booking-items {
  position: relative;
  overflow: hidden;
  padding: 15px;
}

@media (max-width: 767px) {
  .booking-items {
    padding: 0 8px;
  }
}

.booking-items .booking-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc( 50% - 10px);
  margin-bottom: 20px;
  padding: 15px;
  float: left;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 980px) {
  .booking-items .booking-item {
    display: block;
  }
}

@media (max-width: 767px) {
  .booking-items .booking-item {
    width: 100%;
    padding: 15px 10px;
    float: none;
  }
}

.booking-items .booking-item:nth-of-type(odd) {
  margin-right: 20px;
}

@media (max-width: 767px) {
  .booking-items .booking-item:nth-of-type(odd) {
    margin-right: 0;
  }
}

.booking-item {
  position: relative;
  overflow: hidden;
}

.past-bookings .booking-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}

.booking-item__img {
  width: 50px;
  height: 50px;
  margin-left: 10px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.booking-item__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.booking-item__description {
  width: calc( 100% - 90px);
  padding: 5px 20px;
}

@media (max-width: 980px) {
  .booking-item__description {
    width: 100%;
    padding: 15px 15px 0;
  }
}

.booking-item__description > .heading {
  margin-bottom: 5px;
  font-size: 18px;
  color: #000000;
}

@media (max-width: 767px) {
  .booking-item__description > .heading {
    position: absolute;
    top: 30px;
    left: 80px;
    font-size: 17px;
  }
}

.booking-item__options {
  position: relative;
  width: 30px;
  padding: 15px 0;
  text-align: center;
}

@media (max-width: 980px) {
  .booking-item__options {
    position: absolute;
    top: 10px;
    right: 15px;
  }
}

@media (max-width: 767px) {
  .booking-item__options {
    top: 8px;
    right: 10px;
  }
}

.booking-item__options > a {
  color: #000000;
}

.booking-item__options .dropdown-menu {
  overflow: hidden;
  left: auto !important;
  right: 20px;
  padding: 0;
  -webkit-box-shadow: 0 0 34px -10px rgba(102, 102, 102, 0.5);
          box-shadow: 0 0 34px -10px rgba(102, 102, 102, 0.5);
  border-color: transparent;
  border-radius: 24px;
}

@media (max-width: 767px) {
  .booking-item__options .dropdown-menu {
    left: -70px !important;
    min-width: 170px;
  }
}

.booking-item__options .dropdown-menu > .dropdown-item.btn-request-change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
}

.booking-item__options .dropdown-menu > .dropdown-item.btn-request-change:focus {
  outline: 0;
}

.booking-item__options .dropdown-menu > .dropdown-item.btn-request-change:hover, .booking-item__options .dropdown-menu > .dropdown-item.btn-request-change.active, .booking-item__options .dropdown-menu > .dropdown-item.btn-request-change:active {
  background-color: #ececec;
  color: #75787B;
  -webkit-transition: background-color .3s ease-in-out 0s;
  transition: background-color .3s ease-in-out 0s;
}

.booking-item__options .dropdown-menu > .dropdown-item.btn-request-change .dropdown-item__icon {
  margin-right: 0;
}

.booking-item__options .dropdown-menu > .dropdown-item.btn-request-change .dropdown-item__icon svg {
  width: 14px;
  height: 14px;
  fill: #c32e22;
}

.booking-item__options .dropdown-menu > .dropdown-item.btn-request-change .dropdown-item__name {
  display: block;
  padding: 0 15px;
  line-height: 1.2;
  font-size: 13px;
  color: #75787B;
}

.booking-item__options .dropdown-menu > .dropdown-item.btn-request-change .dropdown-item__name > strong {
  display: block;
  color: #404545;
}

.booking-item__options .dropdown-menu > .dropdown-item.btn-request-change .dropdown-item__arrow {
  position: relative;
  top: 3px;
  margin-right: 0;
}

.booking-item__options .dropdown-menu > .dropdown-item.btn-request-change .dropdown-item__arrow svg {
  width: 9px;
  height: 9px;
}

/*************************************
=booking call
*************************************/
.booking-call {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
  -webkit-transform: translateX(25%);
          transform: translateX(25%);
  -webkit-transition: -webkit-transform .5s ease-in-out 0s;
  transition: -webkit-transform .5s ease-in-out 0s;
  transition: transform .5s ease-in-out 0s;
  transition: transform .5s ease-in-out 0s, -webkit-transform .5s ease-in-out 0s;
}

@media (max-width: 980px) {
  .booking-call {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
}

@media (max-width: 767px) {
  .booking-call {
    margin-left: -15px;
    margin-right: -15px;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.booking-call.has-booking {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.booking-call__calendar, .booking-call__time {
  display: block;
  float: left;
  text-align: left;
}

.booking-call__calendar {
  width: calc( 50% - 15px);
  -webkit-transition: padding-left .3s ease-in-out 0s;
  transition: padding-left .3s ease-in-out 0s;
}

@media (max-width: 980px) {
  .booking-call__calendar {
    width: calc( 65% - 15px);
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .booking-call__calendar {
    width: 100%;
    float: none;
  }
}

.booking-call.has-booking .booking-call__calendar {
  padding-left: 0px;
}

.booking-call__calendar .booking-call__timezone-wrapper {
  position: relative;
  max-width: 264px;
  margin-top: 15px;
}

.booking-call__calendar .booking-call__timezone-wrapper::before {
  content: '\f107';
  position: absolute;
  top: 1px;
  right: 0px;
  display: block;
  height: 100%;
  padding-right: 15px;
  background-color: #fff;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  line-height: 35px;
  text-align: left;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
}

.booking-call__calendar .booking-call__timezone-wrapper:hover::before {
  background-color: #ececec;
}

.booking-call__calendar .booking-call__timezone-wrapper .booking-call__timezone {
  width: 100%;
  padding: 8px 10px;
  outline: 0;
  border: none;
  border-radius: 24px;
}

.booking-call__calendar .booking-call__timezone-wrapper:hover .booking-call__timezone {
  background-color: #ececec;
}

.booking-call__time {
  width: calc( 50% - 15px);
  margin-left: 26px;
  opacity: 0;
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
  -webkit-transition: opacity .5s ease-in-out .1s;
  transition: opacity .5s ease-in-out .1s;
}

@media (max-width: 980px) {
  .booking-call__time {
    width: calc( 35% - 15px);
    float: right;
  }
}

@media (max-width: 767px) {
  .booking-call__time {
    height: 0;
    width: 100%;
    margin-left: 0;
    float: none;
    -webkit-transform: scale3d(1, 0, 1);
            transform: scale3d(1, 0, 1);
  }
}

.booking-call.has-booking .booking-call__time {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

@media (max-width: 767px) {
  .booking-call.has-booking .booking-call__time {
    height: auto;
  }
}

.booking-call__time .booking-call__date-input {
  width: 100%;
  margin: 10px 0;
  outline: 0;
  border: none;
}

.booking-call__time .booking-call__time-list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.booking-call__time .booking-call__time-list-wrapper {
  height: calc( 66px * 5);
  padding-right: 15px;
  overflow-y: scroll;
}

.booking-call__time .booking-call__time-list-wrapper::-webkit-scrollbar {
  width: 5px;
  background: transparent;
}

.booking-call__time .booking-call__time-list-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
}

.booking-call__time .booking-call__time-list-item {
  display: block;
  margin: 10px 0;
  text-align: center;
}

.booking-call__time .booking-call__time-list-item > .btn-time {
  width: 100%;
  height: 44px;
  outline: 0;
  background: transparent;
  border: solid #000000;
  border-width: 1px;
  border-radius: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}

.booking-call__time .booking-call__time-list-item > .btn-time:hover {
  border-width: 2px;
  -webkit-transition: border-width .3s ease-in-out 0s;
  transition: border-width .3s ease-in-out 0s;
}

.booking-call__time .booking-call__time-list-item > .btn-time.active {
  background-color: #000000;
  border-width: 2px;
  color: #fff;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}

/*************************************
=schedule
*************************************/
.schedule {
  overflow: hidden;
  min-width: 360px;
}

@media (max-width: 980px) {
  .schedule {
    min-width: 0;
  }
}

.schedule .icon-svg {
  float: left;
}

.schedule .icon-svg svg {
  width: 35px;
  height: 40px;
}

.schedule__description {
  float: left;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .schedule__description {
    width: calc(100% - 49px);
  }
}

.schedule__description .date {
  display: block;
  font-weight: 700;
  color: #000000;
}

.schedule__description .date em {
  display: block;
  font-style: normal;
}

.schedule .location {
  display: block;
  margin-bottom: 0;
  clear: both;
}

.schedule__add-calendar {
  text-decoration: underline;
  color: #000000;
}

/*************************************
=schedule calls
*************************************/
.schedule-calls {
  overflow: hidden;
}

.schedule-calls__item {
  position: relative;
  overflow: hidden;
  display: none;
  padding: 0 30px;
}

.schedule-calls__item.active {
  display: block;
}

.schedule-calls__item-watermark {
  position: absolute;
  top: -10px;
  right: 0;
  display: block;
  opacity: .1;
  line-height: 1;
  font-weight: bold;
  font-size: 120px;
  color: #000000;
}

@media (max-width: 767px) {
  .schedule-calls__item-watermark {
    font-size: 72px;
  }
}

.schedule-calls__item .btn {
  letter-spacing: 2px;
  font-size: 14px;
}

.schedule-calls__nav {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}

.schedule-calls__confirm {
  display: none;
}

.schedule-calls__confirm.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.schedule-calls__nav-item {
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
}

.schedule-calls__nav-item > a {
  display: block;
  width: 10px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
}

.schedule-calls__nav-item.active > a {
  background-color: #000000;
}

.schedule-calls__nav-item.confirm > a {
  width: 15px;
  height: 15px;
  background-image: url("../img/icon-confirm-tick.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*************************************
=custom panel
*************************************/
.custom-panel {
  height: 100%;
  padding: 15px 20px;
  -webkit-box-shadow: 0 0 34px -10px rgba(102, 102, 102, 0.5);
          box-shadow: 0 0 34px -10px rgba(102, 102, 102, 0.5);
  background-color: #fff;
  border-radius: 10px;
}

@media (max-width: 479px) {
  .custom-panel {
    height: auto;
    margin-bottom: 15px;
  }
}

.custom-panel .panel-heading {
  margin-bottom: 30px;
  overflow: hidden;
}

.custom-panel .panel-heading > .icon-title {
  position: absolute;
  left: 9px;
  top: -5px;
  display: block;
  width: 60px;
  height: 60px;
  padding: 15px;
  background: url(../img/heading-icon-bg.png) no-repeat;
  background-size: contain;
}

.custom-panel .panel-heading > .icon-title svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.custom-panel .panel-heading > .heading {
  padding-left: 50px;
  float: left;
  font-size: 20px;
}

@media (max-width: 767px) {
  .custom-panel .panel-heading > .input-group {
    margin-top: 20px;
    margin-right: 10px;
  }
}

.custom-panel .panel-body .edit-content {
  position: absolute;
  top: 15px;
  right: 25px;
}

.custom-panel .panel-body .placeholder-value {
  overflow-wrap: break-word;
}

/*************************************
=footer
*************************************/
.footer {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 15px;
  text-align: center;
}

.footer__menu {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.footer__menu > li {
  display: inline-block;
}

.footer__menu > li:not(:last-of-type)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  vertical-align: middle;
  background-color: #404545;
}

.footer__menu > li > a {
  padding: 15px 10px;
  color: inherit;
}

/*************************************
=modules
*************************************/
/*************************************
= page loader
*************************************/
.page-loader-wrapper {
  position: relative;
  overflow: hidden;
  width: 80%;
  max-width: 720px;
}

.dot-loading {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
}

.dot-loading > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.dot-loading .message {
  position: absolute;
  top: calc(50% - 50px);
  left: 50%;
  text-align: center;
  font-size: 16px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*************************************
=notification
*************************************/
.notification-dot {
  position: relative;
  top: -2px;
  left: 5px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #c32e22;
  border-radius: 50%;
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -17px;
  display: block;
  width: 22px;
  height: 22px;
  background-color: #c32e22;
  border-radius: 50%;
  line-height: 22px;
  text-align: center;
  color: #fff;
}

.notification-badge.notification-badge__list-item {
  top: 8px;
  right: 5px;
}
/*# sourceMappingURL=global.css.map */