.sb-example-3 .search__input {
  width: 40%;
  padding: 12px 50px;
  font-size: 14px;
  line-height: 18px;
  color: #575756;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0iIzVGNjM2OCI+PHBhdGggZD0iTTE1LjUgMTRoLS43OWwtLjI4LS4yN0E2LjQ3MSA2LjQ3MSAwIDAgMCAxNiA5LjUgNi41IDYuNSAwIDEgMCA5LjUgMTZjMS42MSAwIDMuMDktLjU5IDQuMjMtMS41N2wuMjcuMjh2Ljc5bDUgNC45OUwyMC40OSAxOWwtNC45OS01em0tNiAwQzcuMDEgMTQgNSAxMS45OSA1IDkuNVM3LjAxIDUgOS41IDUgMTQgNy4wMSAxNCA5LjUgMTEuOTkgMTQgOS41IDE0eiIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: 3% center;
  border-radius: 50px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, .28);
}

.sb-example-3 .search__input::placeholder {
  color: rgba(87, 87, 86, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.sb-example-3
.search__input:focus {
  outline: 0;
}

.submenu a {
  color: #71cbca;
  padding: 10px;
  font-size: 1.5em;
  text-decoration: none;
}

.submenu ul li {
  padding: 0;
  list-style: none;
  background-color: ivory;
  vertical-align: middle;
}

.submenu ul {
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

.submenu ul li:hover {
  background-color: aliceblue;
}

.submenu ul li a:hover {
  color: #4f4f4f;
}

.submenu ul::-webkit-scrollbar {
  width: 12px;
}

.submenu ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.submenu ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.menu_item {
  font-family: Verdana;
  color: gray;
  float: left;
  width: 90px;
  border-radius: 10px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 0.7em;
  margin-bottom: 5px;
}

.menu_item:hover {
  background-color: aliceblue;
}

.popover__title {
  font-size: 1em;
  margin-left: 10px;
  margin-right: 20px;
  /*line-height: 36px;*/
  text-decoration: none;
  color: rgb(228, 68, 68);
  text-align: center;
  /*padding: 15px 0;*/
}

.popover__wrapper {
  position: relative;
  /*margin-top: 1.5rem;*/
  /* height: auto;*/
  display: inline-block;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 11; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  text-align: center;
  background-color: #ffffff;
  margin: auto;
  border: 1px solid #777777;
  width: 50%;
  border-radius: 15px;
}

.modalheader {
  font-size: 2.5em;
  background-color: aliceblue;
  border-radius: 13px 13px 0 0;
  border-bottom: 1px solid #777777;
  padding: 10px;
}

/* The Close Button */
.close {
  position: relative;
  display: inline;
  color: #aaaaaa;
  float: right;
  font-size: 40px;
  font-weight: bold;
  margin-right: 10px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.popover__content {
  visibility: hidden;
  position: absolute;
  border-radius: 15px;
  left: -230px;
  /* transform: translate(0, 10px);*/
  padding: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  width: 270px;
  background-color: white;
}

/*.popover__content:before {
     position: absolute;
     z-index: -1;
     content: "";
     right: calc(50% - 10px);
     top: -8px;
     border-style: solid;
     border-width: 0 10px 10px 10px;
     border-color: transparent transparent #bfbfbf transparent;
     transition-duration: 0.3s;
     transition-property: transform;
 }*/

.popover__wrapper:hover .popover__content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  /*top: 70px;*/
  /*transform: translate(0, -40px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);*/
}

a {
  display: block;
  text-decoration: none;
}

.popover__message {
  text-align: center;
}