@import url("https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  color: #333;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 5px;
}

h4 {
  margin-top: 5px;
  margin-bottom: 5px;
}

button {
  background-color: #bd9d61;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background-color: #c9af7e;
}
button.disabled {
  background-color: #a09b91;
  cursor: default;
}

input.error {
  border: 1px solid #d00000;
  background-color: #ffcccc;
}

input[type=checkbox] {
  width: 1rem !important;
}

main {
  position: relative;
}

#base {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.slogan h1 {
  margin: 0 !important;
}

nav {
  background-color: #ffda91;
  color: #a2a2a2;
  display: flex;
  justify-content: space-between;
  background-image: url("../images/header_bg.png");
}
nav .menu {
  cursor: pointer;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: right;
  position: relative;
}
nav ul ul {
  display: none;
  position: absolute;
  z-index: 10;
  top: 100%;
}
nav ul ul li {
  margin: 0;
}
nav ul ul li a {
  display: block;
  width: 100%;
}
nav ul li {
  align-items: center;
  display: flex;
}
nav ul li:hover ul {
  display: block;
}
nav ul li a {
  color: #a2a2a2;
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  transition: background-color 0.3s;
}
nav ul li a:hover {
  background-color: #bd9d61;
}
nav ul li a i {
  margin-left: 5px;
}
nav .items-counter {
  position: absolute;
  top: 0;
  right: 5px;
  background-color: #d00000;
  color: #ffda91;
  padding: 0.1rem 0.35rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.breadcrumb {
  display: block;
  padding: 20px;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb a:first-child {
  color: #ffda91;
}
.breadcrumb a:last-child {
  color: #111;
  text-decoration: none;
  cursor: default;
}
.breadcrumb span {
  padding: 0px 15px;
}

#products-btn {
  position: relative;
}
#products-btn:hover #product-menu-categories {
  display: flex;
}

#product-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 9;
  display: none;
}

#product-menu-categories {
  position: absolute;
  background-color: white;
  width: 200px;
  z-index: 10;
  top: 100%;
  right: 0;
  display: none;
  flex-direction: column;
}
#product-menu-categories > a {
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  position: relative;
  background-color: white;
  transition: background-color 0.3s;
}
#product-menu-categories > a:hover {
  background-color: #eae0cd;
  transition: background-color 0.3s;
}
#product-menu-categories > a:hover div {
  display: flex;
}
#product-menu-categories > a div {
  background-color: #f5f5f5;
}
#product-menu-categories > a > div {
  position: absolute;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  right: 200px;
  top: 0;
  z-index: 9;
}
#product-menu-categories > a > div .product-menu-category-subgroups {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  padding: 5px;
}
#product-menu-categories > a > div .product-menu-category-subgroups a {
  padding: 3px 10px;
  color: black;
  padding-left: 20px;
  display: block;
  width: 300px;
}
#product-menu-categories > a > div .product-menu-category-subgroups a:first-child {
  padding-left: 0px;
}
#product-menu-categories > a > div .product-menu-category-subgroups a:hover {
  background-color: #e5e5e5;
}

.hidden {
  display: none !important;
}

.page-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.head-info ul {
  display: flex;
  justify-content: right;
  gap: 1rem;
}
.head-info li {
  color: white;
  padding: 10px 10px;
}
.head-info li i {
  margin-right: 5px;
}

.logo-space {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 450px;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  padding: 1rem;
  background-image: url("../images/bg_both.png");
  background-position: -280px;
}
.logo-space .logo {
  border-right: 2px solid white;
  padding-right: 0.8rem;
  margin-right: 1rem;
}
.logo-space .logo svg {
  width: 69px;
  height: 55px;
  fill: white;
}
.logo-space .slogan {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.logo-space .slogan h1 {
  font-size: 2rem;
  font-family: "Oooh Baby", cursive;
  font-weight: 400;
  font-style: italic;
  color: white;
}
.logo-space .slogan p {
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: white;
}

.info-text {
  background-color: #f5f5f5;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 5px;
  grid-column: span 5;
}
.info-text p {
  margin-bottom: 0.5rem;
}

.wait-cover-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.waiting-div {
  margin: auto;
  border: 5px solid #a09b91;
  border-radius: 50%;
  border-top: 5px solid #ffda91;
  width: 40px;
  height: 40px;
  animation: spinner 1s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
footer {
  color: #111;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background-image: url("../images/bg_dark.png");
}
footer p {
  font-size: 0.8rem;
}
footer a {
  color: #333;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .policy {
  display: flex;
  flex-direction: column;
}
footer .social div {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}
footer .social a {
  margin-right: 1rem;
  display: block;
}
footer h3 {
  margin-bottom: 0.2rem;
  color: whitesmoke;
}
footer > div {
  width: 25%;
}

._404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 25vh;
}
._404 h1 {
  font-size: 3rem;
  color: #ffda91;
}
._404 a {
  color: #ffda91;
  text-decoration: none;
  padding: 20px;
}
._404 a:hover {
  text-decoration: underline;
}

#messagesDiv .message-box.success {
  background-color: #fff;
}
#messagesDiv .message-box.error {
  background-color: #ffcccc;
}
#messagesDiv .message-box.warning {
  background-color: #ffec9c;
}
#messagesDiv .message-box.info {
  background-color: #d0e8ff;
}
#messagesDiv .messages {
  display: flex;
  flex-direction: column;
  align-items: left;
}
#messagesDiv .messages > div {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
#messagesDiv .messages > div img {
  height: 50px;
  margin-right: 5px;
}
#messagesDiv .messages button {
  background-color: transparent;
  border: none;
  color: white;
  cursor: pointer;
}
#messagesDiv .messages button:hover {
  color: black;
}

/***************************
    Cookies
****************************/
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0.75;
  z-index: 10;
}
#cookie-consent .cookie-consent-content {
  color: #a2a2a2;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  font-size: 0.9rem;
}
#cookie-consent .cookie-consent-elements {
  display: flex;
  align-items: left;
}
#cookie-consent a {
  color: #a2a2a2;
  text-decoration: none;
}
#cookie-consent a:hover {
  text-decoration: underline;
}
#cookie-consent button {
  background-color: #a09b91;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}
#cookie-consent button:hover {
  background-color: #bd9d61;
}
#cookie-consent .cookie-buttons {
  text-align: right;
  width: 280px;
}

#cookie-consent:hover {
  opacity: 1;
}

.small-cookie-consent {
  width: 30px;
  height: 35px;
  padding: 5px;
  overflow: hidden;
  background-color: none;
}
.small-cookie-consent .cookie-consent-content {
  padding: 0;
}
.small-cookie-consent .cookie-icon {
  font-size: 1.5rem;
  margin-right: 5pxf;
}

.big-cookie-consent {
  width: 100%;
  background-color: #333;
  overflow: none;
  height: auto;
}
.big-cookie-consent .cookie-consent-content {
  padding: 1rem;
}
.big-cookie-consent .cookie-icon {
  font-size: 3rem;
  margin-right: 1rem;
  width: 50px;
}

/***************************
    General styles
****************************/
.space-after10 {
  margin-bottom: 10px;
}

.space-after15 {
  margin-bottom: 15px;
}

.space-after20 {
  margin-bottom: 20px;
}

.space-before10 {
  margin-top: 10px;
}

.space-before15 {
  margin-top: 15px;
}

.space-before20 {
  margin-top: 20px;
}

/***************************
    Text formatting
****************************/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.fc-success {
  color: #0f783a;
}

.fc-error {
  color: #d00000;
}

.fc-warning {
  color: #b64b1b;
}

.fc-info {
  color: #0059cd;
}

/***************************
    test-mark
****************************/
.test-mark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #d00000;
  color: white;
  opacity: 0.8;
  padding: 0;
  z-index: 10;
  text-align: center;
}

/***************************
    under-construction
****************************/
.under-construction {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-image: url("../images/maintenance.jpg");
  height: 1200px;
  width: 1200px;
  margin: auto;
}
.under-construction h1 {
  font-size: 3.8rem;
  margin-bottom: 1rem;
  margin-top: 315px;
}
.under-construction p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}/*# sourceMappingURL=index.css.map */