.cookie-info{
  display: none;
  position: fixed;
  bottom:0;
  left:0;
  width: 100%;
  height:100px;
  background-color: #fff;
  color:#000;
  border-top:1px solid #000;
  padding: 10px 0;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
input[type="checkbox"]{
  width: 15px;
  height:15px;
  position: relative;
  top:2px;
}
main {
  flex-grow: 1;
}
.rp_q_div{
  overflow: hidden;
  height:0;
}
.start-shop-btn{
  background-color:#007bff;
  border-radius:20px;
  color:#fff;
  box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}
.start-shop-btn.bg-danger{
  background-color: #e90042!important;
  box-shadow: 0 0 0 .25rem #e9004242;
}
.start-shop-btn.bg-danger:hover{
  background-color: #d1003b!important;
}
.start-shop-btn:hover{
  background-color: #0069d9;
  color:#fff;
}
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    top:2px;
}
.switch input { display: none; }
.slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    transition: .4s;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 17px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 13px; width: 13px;
    left: 2px; bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #4361ee;
}
input:checked + .slider:before {
    transform: translateX(13px);
}

.notification-div{
  position: fixed;
  z-index:99;
  top:50%;
  right:50%;
  min-width:500px;
  text-align: center;
  transform: translate(50%, 50%);
  padding:15px;
  background-color: #4f9525;
  opacity: 0;
  display: none;
  transition: opacity 1s ease;
}
.notification-div *{
  color:#fff;
}
.notification-div span{
  font-size: 14pt;
  position: relative;
  top:-3px;
}
.notification-div i{
  font-size: 24pt;
  position: relative;
  top:2px;
}
.success-notification{
  background-color: #4f9525;
}
.danger-notification{
  background-color: #af1923;
}
.warning-notification{
  background-color: #ffc107;
  width: 700px;
}
.warning-notification *{
  color:#000;
}
.slider-container{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}
.slider-div{
  display: contents;
}
.slider-div h1{
  font-weight:  bolder;
}
.slider-div .btn{
  background-color:#007bff;
  border-radius:20px;
  padding: 6px 18px;
  color:#fff;
  box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}
.search-results{
  display: none;
  width: 464px;
  height: auto;
  border: 2px solid #eceff8;
  padding: 0;
  overflow: hidden;
  border-radius: 7px;
  position: absolute;
  left: calc(50% - 241px);
  top:65px;
  background-color: #fff;
  z-index: 999;
  transition: height .2s ease;
}
.loader {
  width: 40px;
  height: 40px;
  border: 8px solid #e0e0e0;
  border-top: 8px solid #2937f0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 10px auto 10px auto;
}
.search-text{
  margin-top: 30px;
  width: 60%;
  height: 30px;
  border-radius: 15px;
  background-color: #fff;
}
.main-menu{
  text-align: center;
}
.main-menu i {
  position: relative;
  left:-25px;
  background-color: #fff;
  border-radius: 50%;
}
.estusi_logo{
  height:40px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media only screen and (max-width: 600px) {
  .cookie-info{
    height:150px;
  }
  .estusi_logo{
    height:30px;
    position: relative;
    top:1px;
  }
  .main-menu {
    text-align: right;
  }
  .search-results{
    width: calc(100% - 20px);
    left:10px;
  }
  .logo-div{
    width: 95px;
    height:30px;
  }
  .logo {
    margin-top: -5px;
  }
  .search-div{
    padding: 0;
    width: calc(100% - 190px);
    height:30px;
  }
  .main-menu{
    width: 100%;
    padding: 0 5px;
    height:30px;
    padding-top: 1px;
  }
  .cart-div{
    width: 80px;
    height:30px;
    padding: 0;
  }
  .search-text{
    width: 100%;
    margin-top: -2px;
    font-size: 9pt;
    height:24px;
  }
  .main-menu i {
    position: relative;
    left:-5px;
    top:-23px;
  }
}
