.phone {
  display: none;
}

    
	    
@media only screen and (max-width: 768px) {
  .phone {
    display: block;
  }
 
}


.menu-icon {
  position: relative; /* make the menu button's position relative */
  z-index: 1; /* set a high z-index to ensure that the menu button appears on top of other elements */
}


.bottom-left {
  position: fixed;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.top-right-near {
  position: absolute;
  top: 8px;
  right: 20px;
}

.bottom-right {
  position: fixed;
  bottom: 8px;
  right: 16px;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  background-color: #2c2d35;
  overflow-x: hidden;
  transition: 0.6s;
  padding-top: 10px;
}

.sidenav a {
  padding: 0px 10px 0px 10px;
  text-decoration: none;
  color: #818181;
  display: block;
  transition: 0.6s;
  margin-left: 16px; 
}


.sidenav a:hover {
  color: #585858;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 22px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 16px;}
}



	  .search-input {
  position: relative;
}

.clear-icon {
  display: none;
  position: relative;
  
  transform: translateY(-50%);
  cursor: pointer;
}

.search-input.has-text .clear-icon {
  display: block;
}
