#int-cookie-consent-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #005aa5;
  color: #fff;
  padding: 25px 0px;
  text-align: center;
  z-index: 1000;
}
#int-cookie-consent-banner {
  display: none;
}

#int-cookie-consent-banner
#accept-cookies, #reject-cookies {
    background: white;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
}

.int-cookie-consent-wrapper{
    display: flex;
    gap: 20px;
    align-items: center;
}

.int-cookie-consent-wrapper h2{
  font-size: 16px;
  line-height: 20px;
  margin: 0px 0px 5px;
  text-align: left;
  color: white;
}

.int-cookie-consent-wrapper p{
  text-align: left;
  font-size: 14px !important;
  line-height: 20px !important;
  margin-bottom: 0px;
  color: white !important;
}

.int-cookie-consent-wrapper p a{
color: white !important;
text-decoration: underline;
}

.int-cookie-consent-btn{
  width: 370px;
  flex: none;
}

.cookie-consent-banner-button-wrapper{
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: end;
}

@media only screen and (max-width: 991px) {
  .int-cookie-consent-wrapper{
    flex-direction: column;
    align-items: start;
  }

  .cookie-consent-banner-button-wrapper{
    justify-content: start;
  }
}

@media only screen and (max-width: 410px) {
  #int-cookie-consent-banner #accept-cookies, #reject-cookies{
        padding: 12px 10px;
        font-size: 13px;
  }

  .cookie-consent-banner-button-wrapper{
    gap: 5px;
  }
}
