@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body{
  background: #1c1c1c;
  
  padding: 0 20px;
}

::selection{
  background-color: #293031; /* Blue/cyan color code */
  color: #fff;
}

input[type="text"] {
  width: 80%;
  max-width: 500px; /* Optional: set a maximum width */
}

.wrapper {
  max-width: 500px;
  margin: 150px auto;
}

@media (max-width: 767px) {
  /* Styles for phones */
  .wrapper .search-input {
    width: 100%;
  }

  .search-input input {
    width: 100%;
  }
}

@media (min-width: 768px) {
  /* Styles for PCs */
  .wrapper .search-input {
    width: 150%;
  }

  .search-input input {
    width: 150%;
  }
}

.wrapper .search-input {
  background: #333333;
  color: #f5f5f5;
  border-radius: 8px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
}

.search-input input {
  height: 45px;
  outline: none;
  border: none;
  border-radius: 6px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
  background: #2c2d35;
  color: white;
}

.search-input.active input {
  border-radius: 8px 8px 0 0;
}

.search-input .autocom-box {
  overflow: auto;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.search-input.active .autocom-box {
  overflow: auto;
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
	background-color: #2c2d35;
}
.autocom-box li{
	overflow: auto;
  list-style: none;
  padding: 8px 8px;
  opacity: 1;
  pointer-events: auto;
  background-color: #2c2d35;
  font-size: 16px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 4px;
	font-size: 15px;
}

/*.autocom-box li {
  overflow: auto;
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 5px;
	background: #131313;
}*/

.search-input.active .autocom-box li {
  display: block;
}

.autocom-box li:hover {
  background: #1c1d22;
}

.search-input .icon {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 45px;
  width: 45px;
  border-radius: 6px;
  text-align: center;
  line-height: 45px;
  font-size: 13.5px;
  color: white;
  cursor: pointer;
  background: #2c2d35;
}







.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%);
}



/*body {
        background-color: #20201F;
        color: #FFFFFF;
      }*/
	    
        .logo{
            width: 50px;
            height: auto;
            position: relative;
        }
        .logo2{
            width: 40px;
            height: auto;
            position: relative;
           
            border-color: aliceblue;
        }


.phone {
  display: none;
}

    
	    
@media only screen and (max-width: 768px) {
  .phone {
    display: block;
  }
 
}
	    
	    
.menu-icon-hidden {
  opacity: 0;
}


.alert {
  padding: 20px;
  background-color: #1e90ff;
  color: black;
}

.closebtn {
  margin-top: 15px;
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.5s;
}

.closebtn:hover {
  color: black;
}
		  
		  
		  /*body {
  overflow: hidden;
}*/
		  
		  		  .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 */
}
