/* Custome padding spacing beetween col (Default: 15px each side) */
/* .row > .col,
.row > [class*="col-"] {
  padding-right: $spacing;
  padding-left: $spacing;
  margin-bottom: $spacing*2;
} */
/* html {
    font-size: 62.5%;
} */
body {
  /* font-family: 'Roboto', sans-serif; */
  /* font-family: 'Open Sans', sans-serif; */
  /* font-family: 'Roboto Condensed', sans-serif; */
  /* font-family: 'Oswald', sans-serif; */
  /* font-family: 'Source Sans Pro', sans-serif; */
  /* font-family: 'Roboto Slab', serif; */
  /* font-family: 'Merriweather', serif; */
  /* font-family: 'Noto Sans', sans-serif; */
  /* font-family: 'Open Sans Condensed', sans-serif; */
  /* font-family: 'Playfair Display', serif; */
  /* font-family: 'Roboto Mono', monospace; */
  /* font-family: 'Arimo', sans-serif; */
  /* font-family: 'Noto Serif', serif; */
  /* font-family: 'Fira Sans', sans-serif; */
  /* font-family: 'Nunito', sans-serif; */
  /* font-family: 'Inconsolata', monospace; */
  /* font-family: 'Anton', sans-serif; */
  /* font-family: 'Montserrat', sans-serif; */
  /* font-family: 'Lora', serif; */
  /* font-family: 'Muli', sans-serif;
    background: rgb(249, 249, 249); */
  font-family: Open Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica,
    Arial, sans-serif;
  --primary-color: #00c4cc;
  --secondary-color: #66bb6a;
}

/* width */
/* ::-webkit-scrollbar {
    width: 2px;
  }
   */
/* Track */
/* ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
    */
/* Handle */
/* ::-webkit-scrollbar-thumb {
    background: #888; 
  } */

/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  } */
a {
  transition: 0.2s all ease-out;
  -webkit-transition: 0.2s all ease-out;
  -moz-transition: 0.2s all ease-out;
}

a:hover {
  text-decoration: unset !important;
}

ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

input:focus,
textarea:focus,
button:focus,
video:focus,
.form-control:focus,
.btn:focus {
  /* .multiselect--active { */
  outline: unset;
  box-shadow: unset;
  /* border: 1px solid var(--primary-color); */
  border-color: var(--primary-color);
}

input,
textarea,
button {
  background: transparent;
  border: unset;
  box-shadow: unset;
}

img {
  object-fit: cover;
}

.container {
  max-width: 1366px;
}

.container-sm {
  max-width: 600px;
}

.container-md {
  max-width: 900px;
}

.container-lg {
  max-width: 1366px;
}

.flex-auto {
  flex: auto;
}

.btn-info1 {
  color: #fff;
  border-radius: 4px;
  padding: 3px 7px;
  background: #17a2b8;
  font-size: 12px;
}

.btn-primary1 {
  color: #fff;
  border-radius: 4px;
  padding: 3px 7px;
  background: #00c4cc;
  font-size: 12px;
}

.btn-warning1 {
  color: #fff;
  border-radius: 4px;
  padding: 3px 7px;
  background: #ffc107;
  font-size: 12px;
}

.btn-danger1 {
  color: #fff;
  border-radius: 4px;
  padding: 3px 7px;
  background: #dc3545;
  font-size: 12px;
}

.btn-primary2 {
  color: #fff;
  border-radius: 4px;
  padding: 3px 7px;
  background: #fb9678;
  font-size: 12px;
}

.hover {
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
}

.hover img {
  transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
}

.white-space {
  white-space: pre-line;
}

.glide__bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 8px auto;
}

.glide__bullet {
  border: 1px solid gray;
  background: transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  padding: 0;
  margin: 0 4px;
}

.glide__bullet.glide__bullet--active {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-nav,
.btn-nav i {
  transition: 0.2s all ease-in-out;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
}

.btn-nav {
  color: rgb(187, 187, 187);
  background: #fff;
  border-radius: 50%;
  border: unset;
  outline: unset;
  width: 20px;
  height: 20px;
  top: calc(50% - 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  box-shadow: 0 0 2px 2px #9e9e9e33;
  -webkit-box-shadow: 0 0 2px 2px #9e9e9e33;
  -moz-box-shadow: 0 0 2px 2px #9e9e9e33;
}

.btn-nav i {
  font-size: 10px;
}

.btn-nav:hover {
  background: var(--primary-color);
}

.btn-nav:hover i {
  color: #fff;
}

.btn-nav.next {
  right: -10px;
}

.btn-nav.prev {
  left: -10px;
}

.btn-nav:hover,
.glide__bullet:hover {
  cursor: pointer;
}

/* .btn-nav:hover i {
    color: var(--primary-color);
} */

.glide__bullet:hover {
  background: var(--primary-color);
}

/* ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
} */
.overplay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
}

.toast-top-right {
  top: 10px !important;
}

label,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

img[lazy="loading"] {
  animation-duration: 1s !important;
  animation-fill-mode: forwards !important;
  animation-iteration-count: infinite !important;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear !important;
  background: linear-gradient(to right,
      #eeeeee 8%,
      #dddddd 18%,
      #eeeeee 33%) !important;
  background-size: 800px 104px !important;
  position: relative !important;
}

.animation-lazy {
  animation-duration: 1s !important;
  animation-fill-mode: forwards !important;
  animation-iteration-count: infinite !important;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear !important;
  background: linear-gradient(to right,
      #eeeeee 8%,
      #dddddd 18%,
      #eeeeee 33%) !important;
  background-size: 800px 104px !important;
  position: relative !important;
}

.alert-message {
  width: 300px !important;
}

.swal2-header .icon-class {
  width: 4em;
  height: 4em;
}

.swal2-popup {
  width: 28em !important;
}

.swal2-icon.swal2-info {
  border-color: var(--seccondary-color) !important;
  color: var(--primary-color) !important;
}

.cancel-button-class {
  font-size: 15px !important;
}

.swal2-title.title-class {
  font-size: 1.5em;
}

.confirm-button-class {
  font-size: 15px !important;
  background-color: var(--primary-color) !important;
  border-left-color: var(--primary-color) !important;
  border-right-color: var(--primary-color) !important;
}

/* .scrollmenu {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
}

.scrollmenu .scrollmenu-item {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
} */

/* div.scrollmenu a:hover {
  background-color: #777;
} */
@media (max-width: 768px) {
  .btn-nav {
    display: none;
  }

  .hide-mobile {
    display: none !important;
  }

  .page-title {
    font-size: 26px !important;
  }
}