/*Cookie communicate*/
/*KEYFRAMES*/
@keyframes cookieContentAnimate {
  0% {
    opacity: 0;
    bottom: -300px;
  }
  100% {
    opacity: 1;
  }
}
.closeCookieBox {
  opacity: 0;
}

.cookieBox {
    /*display: none;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    margin: auto;
    opacity: 0;
    max-width: 100%;
    text-align: center;
    transition: 0.2s linear;
    z-index: 1000;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #000;
    animation: cookieContentAnimate 0.5s 1 0.4s;
    animation-fill-mode: forwards; */
  
    display: none;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    /*opacity: 0;*/
    max-width: 100%;
    text-align: center;
    transition: 0.2s linear;
    z-index: 1000001;
    /* border-radius: 10px; */
    overflow: hidden;
    /* border: 1px solid #000; */
    /*animation: cookieContentAnimate 0.5s 1 0.4s;
    animation-fill-mode: forwards;*/
    top: 0px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 86%);
}

.cookieBox.display {
  /* display: block; */
  display: flex;
}

.cookieBox.display.closeCookieBox {
  display: none;
}

.cookieBox .cookieBoxContent {
  background: rgba(0, 0, 0, 0.6862745098);
}

.cookieBox .cookieBoxContent {
    /*color: #fff;
    padding: 10px;
    font-size: 13px;
    line-height: 19px;
    position: relative;
    transition: 1s linear;
    opacity: 1;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;*/
  
    color: #fff;
    padding: 30px 20px;
    font-size: 13px;
    line-height: 19px;
    position: relative;
    transition: 1s linear;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    color: #000;
    max-width: 1200px;
}

.cookieBox .cookieBoxContent p {
  padding: 0px;
  margin: 0px;
  /*font-size: 13px;
  line-height: 19px;*/
  font-size: 18px;
  line-height: 1.45
}

.cookieBox .cookieBoxContent p:first-child {
  width: calc(100% - 210px);
}

.cookieBox .cookieBoxContent p:last-child {
  margin-left: auto;
}

.cookieBox .cookieBoxContent a.readMore {
  text-decoration: none;
  /* color: rgb(249, 203, 55); */
  color: rgb(47 118 171);
  font-size: inherit;
}

.cookieBox .cookieBoxContent a.readMore:hover {
  text-decoration: underline;
  opacity: 1;
}

.cookieBox .cookieBoxContent .closeCookies {
    /*color: #155724;
    background-color: #d4edda;*/
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px 20px;
    border-radius: 5px;
    /* border: none; */
    cursor: pointer;
}

.cookieBox .cookieBoxContent .discardCookie {
    /*color: #721c24;
    background-color: #f8d7da;*/
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px 20px;
    border-radius: 5px;
    /* border: none; */
    cursor: pointer;
}

.cookieActions button {
  display: block;
  font-size: 17px;
  padding: 12px 22px !important;
}

.cookieActions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.confirmation-overlay {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000002;
  background: rgba(61, 61, 61, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.confirmation-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.confirmation-overlay .confirmation-modal {
  width: 500px;
  max-width: calc(100% - 30px);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  transition-property: transform;
  transition-duration: 0.3s;
}

.confirmation-overlay.is-visible .confirmation-modal {
  transform: translateY(0);
}

.confirmation-overlay .confirmation-header {
  margin: 10px;
  position: relative;
  background: #ececec;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

.confirmation-overlay h3 {
  font-weight: normal;
  font-size: 20px;
  margin: 0px;
}

.confirmation-overlay .close-confirmation-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: #fff;
  text-decoration: none;
}

.confirmation-overlay .confirmation-body {
  padding: 0px 20px 20px;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.confirmation-overlay .confirmation-body > *:last-child {
  margin-bottom: 0px;
}

.confirmation-overlay .confirmation-footer {
  display: flex;
}

.confirmation-overlay .confirmation-footer > button {
  width: 50%;
  border-radius: 0px;
  outline: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin: 5px;
  font-size: 18px;
  border: 1px solid transparent;
  padding: 10px;
}

.confirmation-overlay .confirmation-footer .discard-action {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.confirmation-overlay .confirmation-footer .accept-action {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

@media screen and (max-width: 1300px) {
    .cookieBox .cookieBoxContent {
        max-width: calc(100% - 60px);
    }
}

@media screen and (max-width: 800px) {
  .cookieBox .cookieBoxContent {
    flex-direction: column;
    align-items: center;
  }
  .cookieBox .cookieBoxContent p:first-child {
    width: 100%;
  }
  .cookieBox .cookieBoxContent p:last-child {
    margin-left: 0px;
    margin-top: 20px;
  }
    .cookieBox .cookieBoxContent {
        max-width: calc(100% - 20px);
    }
    .cookieBox .cookieBoxContent p {
        font-size: 17px;
    }
}
@media screen and (max-width: 400px) {
  .confirmation-footer {
    flex-direction: column;
  }
  .confirmation-footer button {
    width: calc(100% - 10px) !important;
  }
  .cookieActions {
    flex-direction: column;
  }
}