/********************************************************
** Start General Styling
*********************************************************/
@font-face {
  font-family: 'RalewayRegular';
  src: url('./fonts/Raleway-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RalewayMedium';
  src: url('./fonts/Raleway-Medium.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RalewaySemiBold';
  src: url('./fonts/Raleway-SemiBold.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RalewayBold';
  src: url('./fonts/Raleway-Bold.ttf');
  font-weight: normal;
  font-style: normal;
}

.f-medium {
  font-family: RalewayMedium;
}
.f-SemiBold {
  font-family: RalewaySemiBold;
}
.f-Bold {
  font-family: RalewayBold;
}
.Inter {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 38px;
}

:root {
  --color-primary: #0f71be;
  --color-primary-alt: #48acaa;
  --color-secondary: #e8f2ff;
  --color-white: #ffffff;
  --color-black: #000000;
}

html,
body {
  /* this defines what 1 rem is */
  /* font-size: 62.5%; */
  /*1 rem = 10px   10px / 16px = 62.5%*/
  height: 100%;
}

.ltr {
  direction: ltr;
}

body {
  box-sizing: border-box;
  margin: 0;
  /* padding: 0; */
  font-family: 'RalewayRegular', 'sans-serif';
  background-color: #fbfbff;
}

a:hover {
  cursor: pointer;
}
.btn.primary-bg:hover,
.btn.primary-bg:focus {
  color: #fff;
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #3276b1;
  border-color: #285e8e;
  outline: 0;
  box-shadow: 1px 2px 10px #428bca;
}

/* @media (min-width: 991px) {
  body {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 1rem;
    padding-bottom: 4rem;
  }
} */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--color-secondary);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 1em;
}

/* Main Colors */
.primary-txt {
  color: #0f71be !important;
}
.primary-alt-txt {
  color: #48acaa;
}
.secondary-txt {
  color: #e8f2ff;
}

/* Other Colors */
.mute-text {
  color: #b1b1b1;
}
.mute-text-black {
  color: #333333;
}
.text-black {
  color: #000;
}
.text-white {
  color: #fff;
}

/* Backgrounds */
.primary-bg {
  background-color: #0f71be !important;
}
.primary-alt-bg {
  background-color: #48acaa;
}
.secondary-bg {
  background-color: #e8f2ff;
}
.bg-white {
  background-color: #fff;
}
.bg-transaprent {
  background: transparent;
}

.primary-border {
  border: 1px solid #0f71be;
}
.primary-alt-border {
  border: 1px solid #48acaa;
}

.primary-hover:hover {
  transition: 0.3s all ease-in-out;
  background: #225a9e !important;
  color: #fff;
}
.primary-alt-hover:hover {
  transition: 0.3s all ease-in-out;
  background: #288685;
}

.grad1 {
  background: rgb(15, 113, 190);
  background: linear-gradient(0deg, rgba(15, 113, 190, 1) 0%, rgba(0, 155, 203, 1) 100%);
  box-shadow: 0 3px 6px rgba(15, 113, 190, 0.65);
}
.grad2 {
  background: rgb(59, 114, 179);
  background: linear-gradient(0deg, rgba(59, 114, 179, 1) 0%, rgba(83, 153, 235, 1) 100%);
  box-shadow: 0 3px 6px rgba(67, 127, 198, 0.65);
}
.grad3 {
  background: rgb(40, 96, 140);
  background: linear-gradient(0deg, rgba(40, 96, 140, 1) 0%, rgba(15, 143, 190, 1) 100%);
  box-shadow: 0 3px 6px rgba(15, 143, 190, 0.65);
}

.br-0 {
  border-radius: 0;
}
.b-6 {
  border-radius: 6px;
}
.b-8 {
  border-radius: 8px;
}
.b-12 {
  border-radius: 12px;
}
.b-20 {
  border-radius: 20px;
}
.b-30 {
  border-radius: 30px;
}

.h-100vh {
  min-height: 100vh;
}
.min-h100 {
  min-height: 100vh;
}
.h-100 {
  min-height: 100%;
}
.txt-decoration {
  text-decoration: underline;
}
.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}

/* Fonts in VW Unit */
/* it will give you a responsive width matched with devices from tablet to extreme large screens */
@media (min-width: 768px) {
  .fs-8 {
    font-size: 0.4166vw;
  }

  .fs-9 {
    font-size: 0.46875vw;
  }

  .fs-10 {
    font-size: 0.5208vw;
  }

  .fs-11 {
    font-size: 0.5729vw;
  }

  .fs-12 {
    font-size: 0.625vw;
  }

  .fs-13 {
    font-size: 0.677vw;
  }

  .fs-14 {
    font-size: 0.7291vw;
  }

  .fs-15 {
    font-size: 0.78125vw;
  }

  .fs-16 {
    font-size: 0.8333vw;
  }

  .fs-18 {
    font-size: 0.9375vw;
  }

  .fs-20 {
    font-size: 1.0416vw;
  }

  .fs-22 {
    font-size: 1.1458vw;
  }

  .fs-24 {
    font-size: 1.25vw;
  }

  .fs-26 {
    font-size: 1.3541vw;
  }

  .fs-28 {
    font-size: 1.4583vw;
  }

  .fs-30 {
    font-size: 1.5625vw;
  }
  .fs-32 {
    font-size: 1.5667vw;
  }
  .fs-34 {
    font-size: 1.7708vw;
  }
  .fs-38 {
    font-size: 1.979vw;
  }

  .fs-40 {
    font-size: 2.0833vw;
  }
  .fs-42 {
    font-size: 2.1875vw;
  }
  .fs-48 {
    font-size: 2.5vw;
  }
  .fs-60 {
    font-size: 3.125vw;
  }
  /* hidden in web and displayed in mobile */
  .hidden-web {
    display: none !important;
  }
  .w-lg-50 {
    width: 50%;
  }
  .ser-col {
    height: 90px;
  }
}

/* Responsive Fonts in mobile with PX Unit*/
@media (max-width: 767px) {
  .fs-8 {
    font-size: 8px;
  }
  .fs-9 {
    font-size: 9px;
  }
  .fs-10 {
    font-size: 9px;
  }
  .fs-11 {
    font-size: 10px;
  }
  .fs-12 {
    font-size: 10px;
  }
  .fs-13 {
    font-size: 10px;
  }
  .fs-14 {
    font-size: 11px;
  }
  .fs-15 {
    font-size: 13px;
  }
  .fs-16 {
    font-size: 13px;
  }
  .fs-18 {
    font-size: 14px;
  }
  .fs-20 {
    font-size: 16px;
  }
  .fs-22 {
    font-size: 16px;
  }
  .fs-24 {
    font-size: 20px;
  }
  .fs-26 {
    font-size: 20px;
  }
  .fs-28 {
    font-size: 16px;
  }
  .fs-30 {
    font-size: 22px;
  }
  .fs-32 {
    font-size: 26px;
  }
  .fs-34 {
    font-size: 26px;
  }
  .fs-38 {
    font-size: 22px;
  }
  .fs-40 {
    font-size: 28px;
  }
  .fs-42 {
    font-size: 22px;
  }
  .fs-48 {
    font-size: 28px;
  }
  .fs-60 {
    font-size: 40px;
  }
  /* hidden in mobile and displayed in web */
  .hidden-mob {
    display: none !important;
  }
}

.line-1 {
  line-height: 1;
}
.line-1-1 {
  line-height: 1.1;
}
.line-1-2 {
  line-height: 1.2;
}
.line-1-3 {
  line-height: 1.3;
}
.line-1-4 {
  line-height: 1.4;
}

.overflow-hidden {
  overflow: hidden;
}

.box-shadow {
  box-shadow: 0 3px 6px rgba(3, 3, 3, 0.16);
}

/* Max height 2 lines */
.h-1 {
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.h-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.h-3 {
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.d-flex {
  display: flex;
}
.justify-content-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}

.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}
.mr-3 {
  margin-right: 1rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.ml-3 {
  margin-left: 1rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.my-3 {
  margin-bottom: 1rem !important;
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}
.mr-4 {
  margin-right: 1.5rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4 {
  margin-left: 1.5rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}
.mr-5 {
  margin-right: 3rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.ml-5 {
  margin-left: 3rem !important;
}
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-auto {
  margin-bottom: auto !important;
  margin-top: auto !important;
}

.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}
.pr-1 {
  padding-right: 0.25rem !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1 {
  padding-left: 0.25rem !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.py-3 {
  padding-bottom: 1rem !important;
  padding-top: 1rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}
.pr-4 {
  padding-right: 1.5rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4 {
  padding-left: 1.5rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}
.pr-5 {
  padding-right: 3rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.pl-5 {
  padding-left: 3rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.sidebar .sidebar-nav.navbar-collapse {
  position: relative !important;
  max-height: unset;
}

@media (min-width: 768px) {
  .navbar-default.sidebar {
    margin-top: unset;
    height: calc(100% - 83px);
    position: fixed;
    top: 83px;
    overflow: auto;
  }
}

.navbar-default.sidebar .sidebar-nav .icon {
  width: 28px;
  display: inline-block;
}

.sidebar ul li a {
  color: #000;
  font-size: 15px;
}
.sidebar .nav-second-level li a {
  padding-left: 46px;
}
.sidebar ul li .nav-second-level li a {
  font-size: 14px;
}
.sidebar ul li .nav-second-level li a::before {
  content: '';
  width: 6px;
  height: 6px;
  display: inline-block;
  background: #000;
  border-radius: 50%;
  margin-right: 8px;
  top: -2px;
  position: relative;
}

.sidebar:not(.collapse) .menu-with-sub:after {
  content: '\f106';
  font-family: 'FontAwesome';
  position: absolute;
  top: 7px;
  right: 14px;
  font-weight: 900;
  color: #727272;
  font-size: 20px;
}
.sidebar:not(.collapse) .menu-with-sub.collapsed:after {
  content: '\f107';
  font-family: 'FontAwesome';
  position: absolute;
  top: 7px;
  right: 14px;
  font-weight: 900;
  color: #727272;
  font-size: 20px;
}

/* .sidebar:not(.collapse) .menu-with-sub.collapsed:after {
  content: '\f107';
  font-family: 'FontAwesome';
  position: absolute;
  top: 13px;
  right: 10px;
  font-weight: 900;
  font-size: 16px;
} */
.sidebar .menu-with-sub.collapsed:after {
  content: '\f107';
  font-family: 'FontAwesome';
  position: absolute;
  top: 13px;
  right: 10px;
  font-weight: 900;
  color: #636363;
}

.sidebar ul li a.active {
  background: var(--color-primary);
  color: #fff;
}
.sidebar ul li a:not(.active) .icon img {
  filter: brightness(0.3);
}
.sidebar .fa.arrow:before {
  content: '\f107';
  color: #4b4b4b;
  font-size: 20px;
}
.dash-bg {
  height: 120px;
  background-image: url('../images/dash-bg.png');
  background-repeat: no-repeat;
  border-radius: 8px;
  background-size: cover;
}

#page-wrapper {
  background: transparent;
}

.fig-container svg,
.fig-container canvas {
  width: auto !important;
}

.panel-default > .panel-heading.customPanel {
  color: #fff;
}

.panel-heading.customPanel .type {
  border-radius: 12px;
  padding: 2px 32px;
  background: #fff;
  color: #0f71be;
  display: inline-block;
  font-size: 14px;
  font-family: RalewaySemiBold;
  margin-left: 6px;
}

.panel-heading.customPanel {
  cursor: move;
}
.panel-heading.customPanel .panel-btn {
  cursor: pointer;
  border: 1px solid #fff;
  /* opacity: 0.8; */
  border-radius: 50%;
  width: 24px;
  display: inline-block;
  height: 24px;
  text-align: center;
}
.panel-heading.customPanel .panel-btn .figure-menu-icon {
  opacity: 1;
  font-size: 18px;
}

#page-wrapper .title {
  position: relative;
}
#page-wrapper .title h3::before {
  content: '';
  position: absolute;
  top: 34px;
  width: 100px;
  height: 1px;
  background: #969696;
  display: inline-block;
  margin-left: -112px;
}
#page-wrapper .title h3::after {
  content: '';
  position: absolute;
  top: 34px;
  width: 100px;
  height: 1px;
  background: #969696;
  display: inline-block;
  margin-left: 12px;
}

.figure-option .btn {
  padding: 5px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  border: 0.1px solid #898989;
  height: 33px;
  width: 33px;
  text-align: center;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* margin-right: 5px;*/
  margin-bottom: 7px;
}

.figure-option .btn img {
  width: 77%;
}

/* .fig-panel-head:not(.num) {
  font-family: RalewayRegular;
} */
.labels__ .num {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.labels__ {
  /* display: inline-block; */
  /* position: relative; */
  /* margin-top: -35px;
  left: 19px;
  width: fit-content; */
  float: left;
}
.figure-option.fig-panel-head {
  display: inline-block;
  float: right;
}

.mainPanael.MP .panel-body {
  padding-top: 50px;
}

.modal-content {
  background-color: #ffffff;
  height: 100vh;
  border-radius: 0;
  border: 0;
}

.modal-body .panel-btn.remove-button {
  padding: 5px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 50%;
  border: 1px solid #898989;
  height: 33px;
  width: 33px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-body .panel-btn.remove-button i {
  font-size: 22px;
  color: #666;
}

.st-form label {
  margin-bottom: 2px;
  font-family: RalewayMedium;
  font-weight: normal;
}
.st-form label span.required {
  color: #b20808;
  font-size: 26px;
  position: relative;
  top: 8px;
  right: 2px;
  display: inline;
  line-height: 1;
}

.st-form select[multiple],
.st-form select[size] {
  height: auto;
  overflow: auto;
}

.Data-Grid {
  height: 500px;
  max-height: 500px;
}

/* @media (min-width: 768px) {
  .modal-dialog {
    width: 570px;
    margin: 0 0 0 auto;
  }
} */
@media (min-width: 768px) {
  .modal-dialog {
    width: auto;
    margin: 0 0 0 auto;
    background: transparent;
  }
  .modal-content {
    width: auto;
    margin: 0 0 0 auto;
    background: transparent;
    box-shadow: none;
  }
  .modal-body {
    width: 570px;
    margin: 0 0 0 auto;
    background: #fff;
  }
  .modal-body.viewData {
    width: 700px;
  }
}

.collapsedPanel .panel-title > a:before {
  content: '\f107';
  float: right !important;
  position: relative;
  top: 3px;
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
}
.collapsedPanel .panel-title > a.collapsed:before {
  content: '\f106';
}
.collapsedPanel .panel-title > a {
  text-decoration: none;
}
.collapsedPanel .del {
  background: #fff;
  padding: 4px;
  color: #428bca;
  font-size: 22px;
  border-radius: 3px;
  border: 0.1px solid #ffffff;
  height: 33px;
  width: 33px;
  text-align: center;
  margin-left: 5px;
  line-height: 26px;
}
.collapsedPanel .table > thead > tr > th {
  font-size: 12px;
}
.collapsedPanel .table {
  margin-bottom: 0;
}

/* .mainPanael {
  width: 150px;
  height: 150px;
  padding: 0.5em;
} */

.mainPanael h3 {
  text-align: center;
  margin: 0;
}

.ui-resizable-helper {
  border: 2px dotted #00f;
}

.cust-upload input[type='file'] {
  display: none;
}
.cust-upload .custom-file-upload {
  cursor: pointer;
}

.compress-button {
  cursor: pointer;
  border: 1px solid #fff;
  opacity: 1;
  border-radius: 50%;
  width: 24px;
  display: inline-block;
  height: 24px;
  text-align: center;
  color: #fff;
  margin-right: 10px;
  font-size: 17px;
  /* transform: rotate(45deg); */
}
.compress-button:hover {
  color: inherit;
}

@-webkit-keyframes bar1 {
  from,
  to {
    height: 1.1em;
  }
  50% {
    height: 2.7em;
  }
}
@keyframes bar1 {
  from,
  to {
    height: 1.1em;
  }
  50% {
    height: 2.7em;
  }
}
@-webkit-keyframes bar2 {
  from,
  to {
    height: 1.5em;
  }
  50% {
    height: 2em;
  }
}
@keyframes bar2 {
  from,
  to {
    height: 1.5em;
  }
  50% {
    height: 2em;
  }
}
@-webkit-keyframes bar3 {
  from,
  to {
    height: 2em;
  }
  50% {
    height: 1.5em;
  }
}
@keyframes bar3 {
  from,
  to {
    height: 2em;
  }
  50% {
    height: 1.5em;
  }
}
@-webkit-keyframes bar4 {
  from,
  to {
    height: 2.7em;
  }
  50% {
    height: 1.1em;
  }
}
@keyframes bar4 {
  from,
  to {
    height: 3.7em;
  }
  50% {
    height: 1.8em;
  }
}
.loader {
  display: inline-block;
  line-height: 7em;
}
.loader::before,
.loader::after {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  /*   background-color: lightgrey; */
  border-radius: 0;
  content: '';
  display: inline-block;
  width: 1em;
}

.custom-spinner .loader1::before {
  -webkit-animation-name: bar1;
  animation-name: bar1;
  margin-right: 0.3em;
}
.custom-spinner .loader1::after {
  -webkit-animation-name: bar2;
  animation-name: bar2;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.custom-spinner .loader2::before {
  -webkit-animation-name: bar3;
  animation-name: bar3;
  margin-right: 0.4em;
}
.custom-spinner .loader2::after {
  -webkit-animation-name: bar4;
  animation-name: bar4;
}
.custom-spinner .loader:nth-child(1)::before {
  background-color: #e2bb8b;
}
.custom-spinner .loader:nth-child(2)::before {
  background-color: #91bcc6;
}
.custom-spinner .loader:nth-child(1)::after {
  background-color: #07abcc;
}
.custom-spinner .loader:nth-child(2)::after {
  background-color: #0a69aa;
}

.custom-spinner {
  background: transparent;
  position: fixed;
  z-index: 1111111;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@-webkit-keyframes bar1 {
  from, to {
    height: 1.1em;
  }
  50% {
    height: 2.7em;
  }
}
@keyframes bar1 {
  from, to {
    height: 1.1em;
  }
  50% {
    height: 2.7em;
  }
}
@-webkit-keyframes bar2 {
  from, to {
    height: 1.5em;
  }
  50% {
    height: 2em;
  }
}
@keyframes bar2 {
  from, to {
    height: 1.5em;
  }
  50% {
    height: 2em;
  }
}
@-webkit-keyframes bar3 {
  from, to {
    height: 2em;
  }
  50% {
    height: 1.5em;
  }
}
@keyframes bar3 {
  from, to {
    height: 2em;
  }
  50% {
    height: 1.5em;
  }
}
@-webkit-keyframes bar4 {
  from, to {
    height: 2.7em;
  }
  50% {
    height: 1.1em;
  }
}
@keyframes bar4 {
  from, to {
    height: 3.7em;
  }
  50% {
    height: 1.8em;
  }
}
.loader {
  display: inline-block;
  line-height: 7em;
}
.loader::before, .loader::after {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
/*   background-color: lightgrey; */
  border-radius: 0;
  content: "";
  display: inline-block;
  width: 1em;
}

.loader1::before {
  -webkit-animation-name: bar1;
          animation-name: bar1;
  margin-right: 0.3em;
}
.loader1::after {
  -webkit-animation-name: bar2;
          animation-name: bar2;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.loader2::before {
  -webkit-animation-name: bar3;
          animation-name: bar3;
  margin-right: 0.4em;
}
.loader2::after {
  -webkit-animation-name: bar4;
          animation-name: bar4;
}
.loader:nth-child(1)::before {
  background-color: #e2bb8b;
}
.loader:nth-child(2)::before {
  background-color: #91bcc6;
}
.loader:nth-child(1)::after {
  background-color: #07abcc;
}
.loader:nth-child(2)::after {
  background-color: #0a69aa;
}

.custom-spinner {
  background: #000000c7;
  position: fixed;
  z-index: 1111111;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
