.cookies-popup-container {
  width: 100%;
  position: fixed;
  bottom: 0;
  padding: 15px;
  background-color: #141413;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  box-shadow: 0 -11px 24.3px 0 rgba(191,191,191,0.25);
  color: white;
  z-index: 9999;
}
.cookies-popup-container .cookies-content {
  margin-right: 15px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: normal;
  text-align: right;
  flex: 0 0 70%; /* Flex-basis set to 80% */
}
.cookies-popup-container .cookies-content .cookies-privacy-text {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}
.cookies-popup-container .cookies-close-btn {
  width: auto;
  height: 35px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 36px 15px;
  background-color: #3baef2;
  color: #ffffff;
  flex: 0 0 30%; /* Flex-basis set to 20% */
}
.cookies-popup-container .cookies-close-btn-x {
  display: none;
}
@media only screen and (max-width:992px) {
  .cookies-popup-container {
    justify-content: space-around;
    align-items: flex-start;
  }
}
@media only screen and (max-width:992px) {
  .cookies-popup-container .cookies-content {
    font-size: 12px;
    text-align: right;
    margin-right: 0;
    width: 90%;
    flex: 0 0 auto; /* Reset flex-basis for smaller screens */
  }
}
@media only screen and (max-width:992px) {
  .cookies-popup-container .cookies-content .cookies-privacy-text {
    display: block;
    width: 100%;
    font-size: 12px;
    text-align: right;
  }
}
@media only screen and (max-width:992px) {
  .cookies-popup-container .cookies-close-btn {
    display: none;
  }
}
@media only screen and (max-width:992px) {
  .cookies-popup-container .cookies-close-btn-x {
    display: block;
    background-color: #141413;
    border: none;
  }
  .cookies-popup-container .cookies-close-btn-x img {
    width: 16px;
    height: 16px;
  }
}