#cookie-warning {
  padding: 10px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: #212429;
  font-family: "AllianzNeo-Regular";
  font-size: 1rem;
  color: white;
  z-index: 100;
  text-align: center;
}
#cookie-warning .container {
    position: relative;
}
@media screen and (max-width: 992px) {
  #cookie-warning {
    height: 150px;
    width: 350px;
    max-width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto auto;
    padding: 20px 0;
    font-size: 1rem;
    text-align: center;
    border-radius: 0.3125rem;
  }
  #cookie-warning .container {
    max-width: 100%;
  }
}

#cookie-warning-content {
  font-weight: 700;
  font-size: 1rem;
  padding-top: 10px; }

#cookie-warning-button {
  font-size: 1rem;
  font-weight: 700;
  background-color: #199dd7;
  color: #fff;
  border-radius: 0.3125rem;
  box-shadow: 0 17px 53.6px 3.4px rgba(23, 32, 68, 0.58);
  padding: 5px;
  width: 200px;
  margin: 10px auto;
  text-align: center;
  cursor: pointer;
}
#cookie-warning-button:hover {
  background-color: #00468b;
}

#cookie-warning-close {
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: 0.9;
  cursor: pointer;
}

#cookie-warning-close:hover {
  opacity: 1;
}

@media screen and (max-width: 992px) {
  #cookie-warning-close {
    top: -20px;
  }
}

.main_product {
  width: 100%;
  display: flex;
  background-color: #fafbfc;
}

.main_product-description {
  width: 50%;
  flex: 1;
}

.main_product_even .main_product-info {
  padding: 5% 10% 5% 40%;
}

.main_product_odd .main_product-info {
  padding: 5% 40% 5% 10%;
}

.main_product-background {
  width: 50%;
  flex: 1;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.main_product-description .c-link--blue {
  margin-top: 2.1875rem;
}

@media screen and (max-width: 45.5em) {
  .main_product-description { width:100%; }
  .main_product-background { display: none; }
  .main_product_even .main_product-info { padding: 10%; }
  .main_product_odd .main_product-info { padding: 10%; }
}