*{
 	margin:0;
 	padding: 0;
 	box-sizing: border-box;
 	font-family: 'Open Sans', sans-serif;
    font-family: 'Rubik', sans-serif;
 }
 body{
	  overflow-x: hidden;
	  margin: 0;
	  min-height: 100vh; 
 }
 .container{
 	width:100%;
 	position: relative;
 	margin: 0;
 	padding: 10px;
 	max-width: 1200px;
 }
 .page{
  position: relative;
  background-color:  #ffffff;
  height: 620px;
  width: 98%;
  border-radius: 30px;
  transition: all 0.5s ease;
  padding: 10px;
  box-shadow: 5px 5px 10px 5px #888888;
  margin:10px;
}
.searchtable {
    overflow: auto;
}
.searchtable::-webkit-scrollbar{
  width:12px;
}
.searchtable::-webkit-scrollbar-track{
  background-color: #ffffff;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;

}
.searchtable::-webkit-scrollbar-thumb{
   border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
.page .background img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  opacity: 0.1;
  z-index: 1;
   
   
}
.searchtable {
    max-height: 80%;
    overflow: auto;
}
.page {
    background-image: url(../logo/background_logo.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
}
.header{
  display: flex;
  justify-content:space-between;
  width:100%;
}
.search_bar_area {
    width: 80%;
}
.logo {
    width: 20%;
}
.header .logo img {
    max-width: 100%;
}
.header input{
  height:43px;
  margin-top: 30px;
  width:100%;
  border:1px solid grey;
  padding: 8px;
  border-radius: 20px;
  z-index:10;

}
.icon {
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    border-radius: 10px;
    color: #ed1561;
    top: 33px;
    right: 17px;
}
.header input:focus{
  border: 1px solid grey;
  box-shadow: none;
  outline: none;
}
.table{
  margin-top: 10px;
  padding: 5px;
 
}
 .searchtable  .fa{
  font-size: 22px;
  margin-top:20px;
  cursor: pointer;
  padding: 5px;
   }
 
 @media only screen and (max-width: 1023px) {
  .searchtable {
    max-height: 70%;
    overflow: auto;
}
}/*980*/  
@media only screen and (max-width: 979px) {
  .page {
        background-size: 70%;
    }
}/*768*/
@media only screen and (max-width: 979px) {
.logo {
    width: 100%;
    text-align: center;
}
.search_bar_area {
    width: 100%;
}
.header {
    width: 100%;
        display: block;
}
.header input {
    margin-top: 14px;
}
.icon {
    top: 17px;
}
}/*734*/