.bottomCookieContainer {
  background-color: #ffffff;
  opacity: 1;
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(0);
  box-shadow: inset 1px 1px 10px rgba(190, 190, 190, 0.3);
  z-index: 10000;
  transition: 0.3s all ease-in-out;
}
.bottomCookieContainer.hide {
  transform: translateY(100%);
  opacity: 0;
}
.bottomCookieContainer p {
  font-size: 18px;
  color: #000000;
}
.bottomCookieContainer a {
  font-size: 18px;
  color: #d12e36;
  transition: 0.3s all ease-in-out;
}
.bottomCookieContainer a:hover {
  color: #3f3ff7;
}
.bottomCookieContainer .btnCookie {
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Lato";
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  border: 1px solid #d12e36;
}
.bottomCookieContainer .btnCookie.accept {
  color: #ffffff;
  background-color: #d12e36;
}
.bottomCookieContainer .btnCookie:not(.accept) {
  color: #000;
  background-color: #fbfbfb;
  border: 1px solid #d9d9d9;
}
.bottomCookieContainer .btnCookie:hover {
  color: #d12e36;
  background-color: #ffffff;
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.1);
}
.bottomCookieContainer .btnCookie:not(.accept):hover {
  color: #fbfbfb;
  background-color: #222222;
  box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.1);
}
.bottomCookieContainer .label {
  font-size: 18px;
  color: #000000;
}
.bottomCookieContainer .label.clickable {
  cursor: pointer;
}
.bottomCookieContainer .slideCheckbox {
  width: 59px;
  height: 26px;
  display: flex;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: unset;
  position: relative;
  flex-shrink: 0;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.bottomCookieContainer .slideCheckbox::after {
  content: "";
  width: 21px;
  height: 21px;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  transition: 0.3s all ease-in-out;
  margin: auto;
  z-index: 2;
  position: absolute;
  left: 2px;
  top: 2px;
}
.bottomCookieContainer .slideCheckbox::before {
  content: "";
  width: 41px;
  height: 25px;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s all ease-in-out;
  flex-shrink: 0;
  padding: 0 8px;
  background-image: linear-gradient(90deg, #ffffff 5%, #d12e36 5%, #d12e36 50%, #ffffff 50%, #ffffff 97%, #d12e36 97%);
  background-position: 255%;
  background-size: 250%;
  transition: 0.3s all ease-in-out;
}
.bottomCookieContainer .slideCheckbox:checked::before {
  background-position: 180%;
  border: 1px solid transparent;
}
.bottomCookieContainer .slideCheckbox:checked::after {
  transform: translateX(calc(100% + 8px));
}
.bottomCookieContainer .slideCheckbox.active,
.bottomCookieContainer .slideCheckbox.disabled {
  cursor: auto;
}
.bottomCookieContainer .slideCheckbox.disabled::before {
  background-image: unset;
  border: 1px solid #d3d3d3;
  background-color: #d12e36;
}
.bottomCookieContainer .slideCheckbox:not(.active):not(.disabled):hover::before {
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.15);
}
.bottomCookieContainer .btnClose {
  width: 35px;
  height: 35px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s all ease-in-out;
  position: absolute;
  top: 20px;
  right: 20px;
}
.bottomCookieContainer .btnClose path,
.bottomCookieContainer .btnClose circle {
  stroke: #7c7c7c;
  transition: 0.3s all ease-in-out;
}
.bottomCookieContainer .btnClose:hover path,
.bottomCookieContainer .btnClose:hover circle {
  stroke: #d12e36;
}
@media (max-width: 500px) {
  .bottomCookieContainer {
    height: 100vh;
  }
}
@media (max-width: 380px) {
  .bottomCookieContainer h2 {
    font-size: 22px;
  }
}/*# sourceMappingURL=cookies.css.map */