#region-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    text-align: center;
  }

  #region-popup p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
  }

  #region-popup button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
  }

  #close-popup {
    background-color: #f44336;
    color: white;
  }

  #change-language {
    background-color: #4CAF50;
    color: white;
    font-weight: 700;
  }

  #keep-language {
    background-color: black;
    color: white;
  }

  #close-popup:hover {
    background-color: #d32f2f;
  }

  #change-language:hover {
    background-color: #388E3C;
  }

  #keep-language:hover {
    background-color: #373737;
  }

  /* Styles for overlay background */
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }




  .basel-cookies-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1100;
    width: 100%;
    padding: 15px 30px;
    background-color: rgba(0,0,0,0.9);
    border-top: 2px solid rgba(255,255,255,0.1);
    color: #FFF;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
    transition: all 0.4s cubic-bezier(0.784, 0.134, 0.14, 0.85)
}

.basel-cookies-popup.popup-display {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    z-index: 99999999;
}

.basel-cookies-popup.popup-hide {
    opacity: 0;
    visibility: hidden
}

.basel-cookies-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.basel-cookies-inner .cookies-buttons {
    flex-shrink: 0
}

.basel-cookies-inner .cookies-info-text {
    padding-right: 30px;
    line-height: 1.4
}

.cookies-buttons>a {
    margin-right: 20px
}

.cookies-buttons>a:last-child {
    margin-right: 0
}

.cookies-buttons .cookies-more-btn {
    display: inline-block;
    color: #FFF;
    padding-top: 1px;
    padding-bottom: 1px;
    position: relative
}

.cookies-buttons .cookies-more-btn:after {
    content: " ";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #FFF;
    transition: width .2s ease
}

.cookies-buttons .cookies-more-btn:hover {
    text-decoration: none
}

.cookies-buttons .cookies-more-btn:hover:after {
    width: 100%;
    left: 0
}

.cookies-buttons .cookies-accept-btn {
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 14px;
    padding-right: 14px;
    text-transform: uppercase;
    letter-spacing: .3px;
    border-radius: 0;
    border: 2px solid #FFF;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    transition: all .25s ease-in-out
}

.woocommerce-demo-store .basel-cookies-popup.popup-display {
    transform: translate3d(0, -42px, 0)
}

@media (max-width: 768px) {
    .basel-cookies-inner {
        flex-direction:column
    }

    .basel-cookies-inner .cookies-info-text {
        padding-right: 0;
        text-align: center
    }

    .basel-cookies-inner .cookies-buttons {
        margin-top: 15px
    }
}


span.wrongwebsiteregion {
  font-weight: 900;
  color: #FF9800;
  font-size: 14px;
}

span.correctwebsiteregion {
  font-weight: 900;
  color: #4bab4e;
  font-size: 14px;
}