/* Override */


#header #logo{
    position:absolute;
  }
  #head_search{
    top:42px !important;
  }
  
  .profileSelector{
    display: none;
    margin:1em 0;
  }
  .profileSelector span{
    display: block;
  }

  #recommended_price{
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: .3s;
    align-items: center;
    color: rgb(206, 32, 32);
    font-size: 1.3em;
    border: solid 2px  rgb(206, 32, 32);
    border-radius: 0.2em;
    margin-bottom: 1em;
    padding:.3em;
    width:18em;
  }
  #recommended_price.active{
    opacity: 1;
    visibility: visible;
    display: flex;
  }

  #recommended_price strong,#recommended_price span{
    width:50%;
  }
  #recommended_price span{
    text-align: right;
  }


.news-popup-container { 
  position: fixed;
  top: 400px;
  right: 0px;
  transform: translateY(-50%);
  background: white;
  padding: 20px;
  border-radius: 8px 0px 0px 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  max-width: 500px;
  width: 90%;
}

.news-popup h3 {
  margin: 0 0 15px 0;
  color: #333;
}

.news-popup p {
  margin: 0 0 10px 0;
  color: #666;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

.close-popup:hover {
  background: #ff3333;
}

.news-popup .thumb {
  width: 100%;
  height: 10em;
  background-color: #f3f3f3;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 3px;
  margin-bottom: 1em;
}