<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --third-family: "Cormorant SC", serif;
  --font-family: "Inter", sans-serif;
  --virna-shop-primary-text: #1a1a1a;
  --virna-shop-additional: #d0bcb1;
  --virna-shop-secondary: #bea18c;
}

#guide_model {
  display: none;
  position: fixed;
  overflow-y: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #fdf2ed;
  text-align: start;
}

.container_guide {
  width: 100%;
  height: auto;
  padding: 32px 20px;
}

.btn_close_modal_guide {
  display: flex;
  justify-content: end;
  margin-bottom: 24px;
}

.title_guide {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--virna-shop-primary-text);
  text-align: center;
  margin-bottom: 24px;
}
.list_guide_model {
  list-style: none;
  margin: 0;
}
.list_guide_model &gt; li:not(:last-child) {
  margin-bottom: 24px;
}

.item_guide_model {
  display: flex;
  gap: 24px;
}
.img_guide {
  display: flex;
  justify-content: start;
  align-items: center;
}

.title_model {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--virna-shop-primary-text);
  text-align: start;
  margin-bottom: 16px;
}
.content_guide {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--virna-shop-primary-text);
  margin: 0;
}

.svg_models_desct {
  display: none;
}

/* Modal windows */
@media (min-width: 769px) {
  #guide_model {
    background: #00000050;
  }
  .container_guide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 677px;
    background-color: var(--virna-shop-background);
    padding: 40px 24px;
  }
  .btn_close_modal_guide {
    margin-bottom: 40px;
  }
  .title_guide {
    font-size: 52px;
    margin-bottom: 40px;
  }
  .title_model {
    font-size: 22px;
  }
  .content_guide {
    font-weight: 300;
    font-size: 18px;
  }
  .list_guide_model &gt; li:not(:last-child) {
    margin-bottom: 40px;
  }
  .svg_models_desct {
    display: block;
  }
  .svg_models_mobile {
    display: none;
  }
}
</pre></body></html>