.bst-hamburger-sidebar {
  width: 21px;
  height: 15px;
  background-image: url("../images/hamburger.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent !important;
  padding: 16px;
  margin-top: 25px;
}

/**  
 * Menu
 */
.bst-mobile-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, 0.5);
  /* max-width: 100vw; */
}

.bst-mobile-sidebar--hidden {
  display: none;
}

.bst-mobile-sidebar-content {
  width: 75%;
  background-color: #4353a1;
  color: white;
  z-index: 9999999999999;
  min-height: 100%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.bst-mobile-sidebar__header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #384998;
  margin-bottom: 40px;
}

.bst-mobile-sidebar__item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 32px;
}

.bst-mobile-sidebar__close-button {
  margin: 40px 35px 25px 35px;
  background-color: transparent !important;
  padding: 0;
}

.bst-mobile-sidebar__close-button::after {
  content: url("../images/close.svg");
  width: 20px;
  height: 20px;
  display: block;
}

.bst-mobile-sidebar__separator {
  height: 1px;
  width: 78%;
  background-color: #384998;
  margin: 0 0 30px 20px;
}

/** Search */
.bst-mobile-sidebar__search-container {
  margin: 0 30px 40px 30px;
}

.bst-mobile-sidebar__search-form {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  margin-bottom: 1px solid white;
}

.bst-mobile-sidebar__search-label {
  border-bottom: 1px solid white;
  display: grid;
  grid-template-columns: 10% 90%;
}

.bst-mobile-sidebar__search-submit {
  background-color: transparent;
  border: none;
  padding: 0;
}

.bst-mobile-sidebar__search-submit:hover,
.bst-mobile-sidebar__search-submit:focus {
  background-color: transparent;
  cursor: pointer;
}

.bst-mobile-sidebar__search-submit i {
  font-size: 1.4rem;
}

.bst-mobile-sidebar__search-field {
  outline: none;
  background: transparent !important;
  border: none !important;
  color: white !important;
}

.bst-mobile-sidebar__search-field:focus {
  outline: none !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}

.bst-mobile-sidebar__search-field::-webkit-input-placeholder {
  color: white !important;
}

/**  * Main list */
#page .bst-mobile-sidebar__main-list {
  list-style: none;
  margin: 30px 30px 0 22px;
}

.bst-mobile-sidebar__main-list-item {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 1.2em;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  position: relative;
  text-decoration: none !important;
  line-height: 1.3;
}

.bst-mobile-sidebar__main-list-icon {
  width: 25px;
  height: 20px;
  margin-left: 12px;
  background: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.bst-mobile-sidebar__main-list-link {
  color: white;
  text-decoration: none !important;
  display: flex;
  align-items: flex-start;
  place-items: center;
  line-height: 29px;
}

.bst-mobile-sidebar__main-list-link {
  background: url(../images/link_icon.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-left: 12px;
  background-size: 18px;
  padding-right: 20px;
  padding-bottom: 20px;
}

#page .bst-mobile-sidebar__second-list-link {
  color: white;
  text-decoration: none !important;
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-right: 30px;
}

.bst-mobile-sidebar__second-list-link:focus {
  color: white;
}

.bst-mobile-sidebar__second-list-link::after {
  content: url("../images/link_icon.svg");
  width: 8px;
  height: 8px;
  margin-left: 13px;
  position: absolute;
  right: 13px;
}

/**  * Secondary list */
.bst-mobile-sidebar__second-list {
  list-style: none;
}

.bst-mobile-sidebar__second-list-item {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.375em;
  color: #ffffff;
  margin-bottom: 16px;
}

/**   * Section */
.bst-mobile-sidebar__section--hidden {
  display: none;
}

.bst-mobile-sidebar__section-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 40px 0 0 0;
  padding-left: 10px;
  border-bottom: solid 1px #384998;
}

.bst-mobile-sidebar__arrow-left {
  width: 8px;
  height: 8px;
  background-image: url("../images/arrow-right.svg");
  background-position: center;
  background-size: 35%;
  background-repeat: no-repeat;
  background-color: transparent !important;
  transform: rotate(180deg);
  margin-top: -2px;
}

@media (max-height: 745px) {
  .bst-mobile-sidebar {
    overflow-y: scroll;
  }

  #page .bst-mobile-sidebar__second-list {
    margin-bottom: 50px;
  }
}
