body {
  overflow-x: hidden;
}
/* Navbar */
.navbar-sticky {
  position: sticky;
  top: 0;
  z-index: 2147483647;
}

.custom-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-navbar-logo {
  width: 50px;
}

.custom-navbar-menu-icon,
.custom-navbar-cross-icon {
  display: none;
}

.custom-navbar-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.custom-navbar-items > .custom-navbar-item + .custom-navbar-item {
  margin-left: 20px;
}

.custom-navbar-item .dropdown-item:focus,
.custom-navbar-item .dropdown-item:hover {
  background-color: initial;
}

.custom-navbar-link {
  position: relative;
}

.custom-navbar-link:hover::before {
  content: attr(data-href);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  white-space: nowrap;
  background-color: #000;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 2147483647;
}

.custom-navbar-wrapper[data-live="true"] .custom-navbar-link:hover::before {
  display: none;
}

@media screen and (max-width: 992px) {
  .custom-navbar-menu-icon,
  .custom-navbar-cross-icon {
    display: initial;
  }

  .custom-navbar-cross-icon {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .custom-navbar-items-wrapper {
    position: fixed;
    min-height: 100vh;
    background-color: rgba(249, 249, 249);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2147483647;
  }

  .row:not([data-slide-direction="right"]) .custom-navbar-items-wrapper {
    top: 0;
    width: 80%;
    left: -80%;
    transition: left 650ms ease-in-out;
  }

  .row[data-slide-direction="right"] .custom-navbar-items-wrapper {
    top: 0;
    width: 80%;
    right: -80%;
    transition: right 650ms ease-in-out;
  }

  .row[data-slide-direction="top"] .custom-navbar-items-wrapper {
    left: 0;
    width: 100%;
    top: -100vh;
    transition: top 650ms ease-in-out;
  }

  .row:not([data-slide-direction="right"]) .custom-navbar-items-wrapper.active {
    left: 0;
  }

  .row[data-slide-direction="right"] .custom-navbar-items-wrapper.active {
    right: 0;
  }

  .row[data-slide-direction="top"] .custom-navbar-items-wrapper.active {
    top: 0;
  }

  .custom-navbar-items {
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }

  .custom-navbar-items > .custom-navbar-item {
    width: 80%;
    text-align: center;
  }

  .custom-navbar-items > .custom-navbar-item + .custom-navbar-item {
    margin-left: 0;
    margin-top: 20px;
  }
}

/* Footer */
.footer-wrapper.sticky {
  position: sticky;
  bottom: 0;
  z-index: 2147483647;
}

/* Form  */
.radio-group input,
.checkbox-group input {
  margin-right: 8px;
}

.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
