.cc-cookie-window {
  z-index: 1000;
  background-color: rgb(255, 255, 255);
  opacity: 0.3;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.cc-cookie-box-outer {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.cc-cookie-box-outer .cc-cookie-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 700px;
  min-width: 250px;
  height: auto;
  padding: 1.5rem;
  margin: 2rem;
  border-radius: 5px;
  box-shadow: 0px 0px 31px 1px rgba(0, 0, 0, 0.75);
  text-align: center;
  max-height: 95vh;
}

.cc-cookie-box .days-of-saving {
  position: absolute;
  bottom: 0.25rem;
  left: 0.5rem;
  margin: 0 !important;
  line-height: initial !important;
}

.cc-cookie-box-outer .cc-cookie-box img {
  width: 150px;
  height: auto;
  margin-bottom: 0.7rem;
}

.cc-cookie-box-outer .cc-cookie-box span {
  line-height: 130%;
  margin-bottom: 0.7rem;
  overflow-y: auto;
}
.cc-cookie-box-outer .cc-cookie-box .component-div {
  max-height: 65vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0.5rem;
}
.cc-cookie-box-outer .cc-cookie-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.cc-cookie-box-outer .cc-cookie-buttons button:disabled {
  display: none;
}

.cc-cookie-box .back-button {
  align-self: flex-start;
  font-size: 1rem;
  padding: 0.5rem;
  border: 0;
}

.cc-cookie-box-outer .cc-cookie-buttons button {
  margin: 0.25rem;
  white-space: nowrap;
  border: 0;
}

.cc-cookie-box .consent-settings {
  display: flex;
  flex-direction: column;
}

.cc-cookie-box .consent-settings .cc-row {
  text-align: left;
  padding: 0.5rem 0;
}

.cc-cookie-box .consent-settings input {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.5rem 0;
}

.cc-cookie-box .consent-settings label {
  align-self: center;
  width: 95%;
  text-align: left;
  margin: 0.5rem 0;
  padding-left: 0.5rem;
}

.cc-cookie-window-floating {
  border-radius: 3px;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.75);
  z-index: 99999;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 80%;
  min-height: 2rem;
  padding: 1rem;
  right: 10%;
}

.cc-cookie-window-floating button {
  margin: 0 1rem;
  transition: 0.2s ease-in-out;
}

.cc-cookie-window-floating button:hover {
  transform: translateY(-5%);
  box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.15);
}

