@import "../font/icons/css/v-icons.css";
@font-face {
  font-family: 'Averia Serif Libre';
  src: url('../font/Averia_Sans/AveriaSerifLibre-Regular.ttf');
}
@font-face {
  font-family: 'Averia Serif Libre';
  src: url('../font/Averia_Sans/AveriaSerifLibre-Bold.ttf');
  font-weight: bold;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../font/IBM_Plex_Sans/IBMPlexSans-Regular.ttf');
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../font/IBM_Plex_Sans/IBMPlexSans-Italic.ttf');
  font-style: italic;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../font/IBM_Plex_Sans/IBMPlexSans-Bold.ttf');
  font-weight: bold;
}
html {
  position: relative;
  min-height: 100%;
  background: 100%;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #111;
  background: #fbd199;
}
h1,
h2 {
  font-family: "Averia Serif Libre", cursive;
  font-weight: 400;
}
h3 {
  font-family: "Averia Serif Libre", cursive;
  font-weight: 700;
}
a {
  text-decoration: none;
  color: #32add6;
}
a:hover {
  text-decoration: underline;
}
input,
button,
textarea,
select {
  box-sizing: border-box;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  border: none;
  outline: none;
  background: transparent;
}
strong,
b {
  font-weight: 700;
}
.v-selected {
  color: #8a2740;
}
.v-button {
  box-sizing: border-box;
  padding: 5px 10px;
  font-size: 16px;
  border: 1px solid #8a2740;
  border-radius: 3px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
  color: #fff;
  background: #8a2740;
  transition: all 250ms linear;
  float: right;
}
.v-button:hover {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35), 0 0 5px #cc4b6c;
  text-decoration: none;
  background: #cc4b6c;
}
.v-button-close {
  margin: 10px 10px 0 0;
  float: right;
}
.v-button-close-icon {
  color: #8a2740;
}
.v-button-close-icon:hover {
  color: #cc4b6c;
}
.v-button-back {
  margin: 0 -10px 0 0;
}
@media screen and (max-width: 700px) {
  .v-button-back {
    margin: 0 16px 0 0;
  }
}
@media screen and (max-width: 700px) {
  .v-button-save {
    margin: 0 16px 20px 0;
  }
}
.v-button-save-user {
  margin: 0 5px 0 0;
}
.v-button-open {
  float: left;
  margin: 20px 0 0;
  padding: 3px 8px;
  font-size: 99%;
}
.v-button-open-user {
  margin: 10px 0 20px 20px;
}
@media screen and (max-width: 700px) {
  .v-button-open-user {
    margin: 10px 0 20px 5px;
  }
}
.v-button-remove {
  margin: 0 60px 0 10px;
  padding: 1px 0 0;
  display: flex;
}
.v-button-remove-icon {
  font-size: 60%;
}
.v-button-divider {
  font-size: 16px;
  padding: 2px 5px 0;
  float: right;
}
.v-collapse-content {
  display: none;
  position: relative;
}
.v-collapse-input:checked ~ .v-collapse-content {
  display: block;
}
.v-collapse-input:checked ~ .v-page-sidebar-item-title::before,
.v-collapse-input:checked ~ .v-page-sidebar-item-tree::before {
  transform: rotate(90deg);
}
.v-collapse-input_open:checked ~ .v-collapse-content {
  display: block;
  overflow: hidden;
  max-height: 0;
  min-height: 0;
  transition: max-height ease-in-out 500ms;
}
.v-collapse-input_open:not(:checked) ~ .v-collapse-content {
  display: block;
  overflow: hidden;
  max-height: 300px;
  transition: max-height ease-in-out 500ms;
}
.v-collapse-input_open:not(:checked) ~ .v-collapse-content-menu_user {
  max-height: 700px;
}
.v-collapse-input_open:not(:checked) ~ .v-header-menu-user-content::after {
  transform: rotate(90deg);
}
.v-dropdown-content {
  display: none;
  position: relative;
}
.v-dropdown-content_form_box {
  display: none;
  position: absolute;
}
.v-dropdown-input:checked ~ .v-dropdown-content {
  display: block;
  min-height: 0;
  transition: max-height ease-in-out 500ms;
}
.v-dropdown-input:checked ~ .v-dropdown-content-menu {
  max-height: 700px;
}
.v-dropdown-input:checked ~ .v-dropdown-content_form_box {
  display: block;
  max-height: 500px;
  min-height: 0;
  transition: max-height ease-in-out 500ms;
}
.v-dropdown-input:checked ~ .v-dropdown-content_form_box {
  position: relative;
}
.v-error {
  color: red;
}
.v-error.v-page-contact-element-input {
  border-bottom-color: red;
}
.v-error-radio {
  color: red;
  font-size: 14px;
  margin-bottom: 10px;
}
.v-link {
  margin-left: 10px;
  margin-top: -10px;
  color: #8a2740;
  border-bottom: 1px solid #8a2740;
}
@media screen and (max-width: 700px) {
  .v-link {
    margin-left: 0;
  }
}
.v-hidden {
  width: 0;
  height: 0;
  display: none;
  overflow: hidden;
}
.v-select {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  margin: 2px 5px 2px 5px;
  padding: 0 20px 0 0;
  border: 1px solid #8a2740;
  border-radius: 3px;
  transition: box-shadow 250ms linear, background-color 250ms linear;
  color: #fff;
  background: #8a2740;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.v-select:hover {
  background: #cc4b6c;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35), 0 0 5px #cc4b6c;
}
.v-select::after {
  position: absolute;
  content: "\e805";
  height: 20px;
  width: 20px;
  top: calc(50% - 10px);
  right: 5px;
  line-height: 20px;
  text-align: center;
  font-family: v-icons;
  pointer-events: none;
}
.v-select select {
  width: calc(100% + 50px);
  padding: 4px;
  color: white;
  cursor: pointer;
}
.v-select select option {
  color: black;
  background: white;
}
.v-select-listado {
  margin-left: 0;
}
.v-select-listado::after {
  content: "\f15d";
}
@media screen and (max-width: 700px) {
  .v-select-listado::after {
    padding-right: 10px;
  }
}
@media screen and (max-width: 700px) {
  .v-select-listado {
    position: relative;
    margin: 106px 0 0 0;
    border-radius: 3px 0 0 3px;
  }
}
.v-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .v-wrap {
    margin-top: 20px;
  }
}
.v-rad {
  color: blue;
  margin: 5px 10px 0 0;
  float: left;
}
.v-rad-title {
  font-size: 14px;
}
.v-rad:checked + .v-set {
  display: block;
  opacity: 1;
  margin: 5px -20px 0 -20px;
}
@media screen and (max-width: 700px) {
  .v-rad:checked + .v-set {
    margin: 5px -8px 0 -5px;
  }
}
.v-set {
  display: none;
  opacity: 0;
}
.v-set-field {
  font-size: 16px;
}
.v-header {
  position: relative;
  height: 120px;
}
@media screen and (max-width: 1050px) {
  .v-header {
    height: 110px;
  }
}
@media screen and (max-width: 700px) {
  .v-header {
    position: fixed;
    height: auto;
    width: 100vw;
    max-width: 100vw;
    right: 0px;
    left: 0px;
    z-index: 3;
  }
}
.v-header-logo {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 1;
}
@media screen and (max-width: 1050px) {
  .v-header-logo {
    top: 70px;
    left: 20px;
  }
}
@media screen and (max-width: 700px) {
  .v-header-logo {
    display: none;
  }
}
.v-header-logo img {
  width: 130px;
}
@media screen and (max-width: 1050px) {
  .v-header-logo img {
    height: 100px;
  }
}
@media screen and (max-width: 700px) {
  .v-header-logo img {
    display: none;
  }
}
@media screen and (min-width: 701px) {
  .v-header-logo-mob {
    display: none;
  }
  .v-header-logo-mob img {
    display: none;
  }
}
.v-header-logo-mob a {
  line-height: 0;
  vertical-align: bottom;
}
.v-header-logo-mob img {
  height: 40px;
  width: auto;
}
.v-header-headline {
  position: absolute;
  bottom: 10px;
  left: 185px;
  font-family: "Averia Serif Libre", cursive;
  font-weight: 400;
  font-size: 140%;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
  color: #d8a056;
}
@media screen and (max-width: 700px) {
  .v-header-headline {
    display: none;
  }
}
.v-header-contents {
  display: table;
  box-sizing: border-box;
  max-width: 640px;
  margin: 0 auto;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  background: #f2f2f2;
}
@media screen and (max-width: 700px) {
  .v-header-contents {
    max-width: 100vw;
    padding: 5px;
  }
}
.v-header-search {
  display: table-cell;
  vertical-align: top;
  width: 100%;
}
.v-header-search-form {
  display: table;
  width: 100%;
}
.v-header-search-form-element {
  display: table-cell;
  vertical-align: top;
}
.v-header-search-form-element-search {
  position: relative;
  width: 100%;
}
.v-header-search-form-element-actions {
  white-space: nowrap;
}
.v-header-search-input {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #8a2740;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-style: italic;
  transition: box-shadow 250ms linear, border-color 250ms linear;
}
.v-header-search-input:hover {
  border-color: #cc4b6c;
}
.v-header-search-input:focus {
  border-color: #cc4b6c;
  box-shadow: 0 0 2px inset rgba(114, 32, 53, 0.675);
}
.v-header-search-input-clear {
  display: inline-block;
  position: absolute;
  height: 30px;
  width: 30px;
  top: 5px;
  right: 5px;
  line-height: 30px;
  text-align: center;
  color: rgba(0, 0, 0, 0.35);
}
.v-header-search-button {
  display: inline-block;
  box-sizing: border-box;
  height: 40px;
  width: 40px;
  vertical-align: bottom;
  text-align: center;
  background: #8a2740;
  cursor: pointer;
  transition: background-color 250ms linear;
}
.v-header-search-button:nth-child(n + 2) {
  border-left: 1px solid #f2f2f2;
}
.v-header-search-button:hover {
  background-color: #cc4b6c;
}
.v-header-search-button::before {
  color: #fff;
  font-size: 1.3em;
  line-height: 40px;
}
.v-header-search-button:first-child::before {
  transform: translate(-1px, 0) scale(-1, 1);
}
.v-header-search_advanced {
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 482px;
  right: 0;
  padding-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  background-color: #f2f2f2;
  z-index: 3;
}
@media screen and (max-width: 700px) {
  .v-header-search_advanced {
    position: fixed;
    width: 100%;
    top: 0;
  }
}
.v-header-search_advanced-headline {
  margin-top: 10px;
  text-align: center;
  font-family: "Averia Serif Libre", cursive;
  font-size: 140%;
  color: #8a2740;
}
.v-header-search_advanced-close {
  font-size: 16px;
  margin: -10px 0 0 0;
}
.v-header-search_advanced-close:hover {
  color: #cc4b6c;
}
.v-header-search_advanced-search-form {
  width: 90%;
  padding: 0 20px;
}
.v-header-search_advanced-search-form-title {
  color: #8a2740;
}
.v-header-search_advanced-search-input {
  display: inline-block;
  height: 40px;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #8a2740;
  border-radius: 3px;
  font-style: italic;
  background-color: #fff;
}
.v-header-search_advanced-search-input:hover {
  border-color: #cc4b6c;
}
.v-header-search_advanced-search-input:focus {
  border-color: #cc4b6c;
  box-shadow: 0 0 2px inset rgba(114, 32, 53, 0.675);
}
.v-header-actions {
  display: table-cell;
  vertical-align: top;
  white-space: nowrap;
}
.v-header-actions-price {
  margin-left: 10px;
}
@media screen and (max-width: 700px) {
  .v-header-actions-price {
    display: none;
  }
}
.v-header-actions-price-mob {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 2px;
  left: 24px;
  font-size: 9px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #cc4b6c;
}
@media screen and (max-width: 700px) {
  .v-header-actions-price-mob {
    width: 10px;
    height: 10px;
    left: 20px;
    font-size: 9px;
  }
}
@media screen and (max-width: 700px) {
  .v-header-actions-menu-title {
    display: none;
  }
}
.v-header-actions-button {
  display: inline-block;
  position: relative;
  height: 40px;
  width: auto;
  padding: 0 10px;
  vertical-align: bottom;
  border-left: 1px solid #f2f2f2;
  color: #fff;
  background: #8a2740;
  transition: background-color 250ms linear;
  cursor: pointer;
}
.v-header-actions-button:hover {
  text-decoration: none;
  background-color: #cc4b6c;
}
.v-header-actions-button-icon:before {
  line-height: 40px;
  font-size: 90%;
  color: #fff;
}
.v-header-actions-form {
  position: absolute;
  background: #8a2740;
  left: 0;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.35) inset;
  transition: box-shadow 250ms linear, border-color 250ms linear;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
  z-index: 1;
}
.v-header-actions-form-element {
  display: table-cell;
  vertical-align: top;
}
.v-header-actions-form-element-search {
  width: 100%;
}
.v-header-actions-form-element-actions {
  white-space: nowrap;
}
.v-header-actions-input {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #8a2740;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  transition: box-shadow 250ms linear, border-color 250ms linear;
}
.v-header-menu {
  position: absolute;
  right: 0;
  border-radius: 0 0 3px 3px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.35);
  background: #8a2740;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .v-header-menu {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
  }
}
.v-header-menu-item {
  border-top: 1px solid transparent;
}
.v-header-menu-item:nth-child(n + 2) {
  border-top-color: #3d0b18;
}
.v-header-menu-item-link {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
}
.v-header-menu-item-link:hover {
  text-decoration: none;
  background: #cc4b6c;
}
.v-header-menu-close {
  display: none;
}
@media screen and (max-width: 700px) {
  .v-header-menu-close {
    display: block;
    font-size: 16px;
  }
}
.v-header-menu-user {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.35) inset;
  text-align: right;
  background-color: #f2f2f2;
}
.v-header-menu-user-content {
  display: block;
  padding: 10px 20px 10px 20px;
  cursor: pointer;
}
.v-header-menu-user-content::after {
  font-family: v-icons;
  content: "\e806";
  float: right;
}
@media screen and (max-width: 700px) {
  .v-header-menu-user-content::after {
    margin: 0;
  }
}
.v-header-menu-user-content:hover {
  text-decoration: none;
  background: #cc4b6c;
}
.v-header-menu-user-recover-link {
  color: #8a2740;
  float: left;
  margin: 10px 0;
}
.v-header-menu-user-acces {
  padding: 17px 20px 7px 20px;
  text-align: left;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.35) inset;
  background-color: #f2f2f2;
}
.v-header-menu-user-acces-headline {
  margin-bottom: 7px;
  text-align: left;
  color: #8a2740;
  font-size: 115%;
  font-weight: 700;
}
.v-header-menu-user-acces-links {
  margin: 5px 0 0 0;
  font-size: 115%;
  color: #8a2740;
}
.v-header-menu-user-acces-links-link {
  color: #8a2740;
  font-size: 90%;
}
.v-header-menu-user-acces-form {
  margin-top: 7px;
}
.v-header-menu-user-acces-form-title {
  color: #8a2740;
  float: left;
}
.v-header-menu-user-acces-form-button {
  margin: 10px 3px;
}
.v-header-menu-user-acces-form-input {
  display: block;
  box-sizing: border-box;
  height: 40px;
  margin: 0 0 10px 0;
  padding: 12px 12px;
  border: 1px solid #8a2740;
  border-radius: 3px;
  font-style: italic;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .v-header-menu-user-acces-form-input {
    width: 100%;
  }
}
.v-header-menu-user-acces-form-input:hover {
  border-color: #cc4b6c;
}
.v-header-menu-user-acces-form-input:focus {
  border-color: #cc4b6c;
  box-shadow: 0 0 2px inset rgba(114, 32, 53, 0.675);
}
.v-header-menu-user-acces-form-close {
  margin-right: 14px;
  color: #8a2740;
}
.v-header-menu-user-acces-form-close:hover {
  color: #cc4b6c;
  text-decoration: none;
}
.v-header-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  max-height: 100vh;
  max-width: 100vw;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.35);
  z-index: 100;
}
.v-header-modal-content {
  padding: 20px;
  background: #f2f2f2;
  position: absolute;
  max-width: 500px;
  max-height: 98vh;
  overflow-y: scroll;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  .v-header-modal-content {
    width: 90%;
    left: 5%;
    max-width: none;
    transform: translate(0, -50%);
  }
}
.v-header-modal-title {
  margin: 0 0 20px 0;
  text-align: center;
  font-family: "Averia Serif Libre", cursive;
  font-size: 150%;
  color: #8a2740;
}
.v-header-modal-close {
  font-size: 16px;
  margin: -5px 0 0 0;
  cursor: pointer;
}
.v-header-modal-close:hover {
  color: #cc4b6c;
}
.v-header-modal-form {
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}
.v-header-modal-form-title {
  color: #8a2740;
}
.v-header-modal-form-input {
  display: inline-block;
  height: 40px;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #8a2740;
  border-radius: 3px;
  font-style: italic;
  background-color: #fff;
}
.v-header-modal-form-input:hover {
  border-color: #cc4b6c;
}
.v-header-modal-form-input:focus {
  border-color: #cc4b6c;
  box-shadow: 0 0 2px inset rgba(114, 32, 53, 0.675);
}
.v-header-modal-form-buttons {
  text-align: right;
}
.v-header-modal-form-button {
  margin: 10px 0;
}
.v-page {
  position: relative;
  box-sizing: border-box;
  min-height: 100vh;
  margin: 0 20px 20px 20px;
  padding: 120px 20px 20px 20px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.35);
  background-color: #fff;
}
@media screen and (max-width: 1050px) {
  .v-page {
    padding-top: 70px;
  }
}
@media screen and (max-width: 700px) {
  .v-page {
    margin: 0;
    padding: 120px 10px 10px 10px;
  }
}
.v-page-split {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 700px) {
  .v-page-split {
    display: block;
  }
}
.v-page-split .v-page-sidebar {
  flex: 0 0 300px;
}
@media screen and (max-width: 700px) {
  .v-page-split .v-page-sidebar {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100px;
    left: -100vw;
    margin: 0;
    padding: 5px 20px;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.35);
    z-index: 1;
    min-width: 300px;
    max-width: 100vw;
    transition: all 250ms ease-in-out;
  }
}
.v-page-sidebar {
  box-sizing: border-box;
  margin: 0 40px -20px -20px;
  padding: 35px 0 20px 20px;
  color: #848484;
  background-color: #f2f2f2;
}
.v-page-sidebar-switch {
  display: none;
}
@media screen and (max-width: 700px) {
  .v-page-sidebar {
    display: none;
  }
  .v-page-sidebar-switch {
    display: block;
    position: absolute;
    top: 67px;
    left: 0;
    padding: 8px 16px 7px 14px;
    font-size: 16px;
    background: #8a2740;
    color: #fff;
    border-radius: 0 3px 3px 0;
    z-index: 1;
  }
  .v-page-sidebar-switch:hover {
    background: #cc4b6c;
  }
  .v-page-sidebar-switch-mob {
    position: absolute;
    display: inline-block;
    width: 13px;
    height: 13px;
    top: 4px;
    right: 4px;
    line-height: 13px;
    font-size: 60%;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #cc4b6c;
  }
  .v-page-sidebar-switch-mob-clear {
    color: #fff;
    margin-right: 5px;
  }
  .v-page-sidebar.v-page-sidebar-show {
    display: block;
    opacity: 1;
    left: 0;
    pointer-events: unset;
  }
}
.v-page-sidebar-clear {
  padding-left: 10px;
  font-size: 80%;
  color: rgba(0, 0, 0, 0.35);
}
.v-page-sidebar-clear:hover {
  color: #cc4b6c;
}
.v-page-sidebar-close {
  display: none;
}
@media screen and (max-width: 700px) {
  .v-page-sidebar-close {
    display: block;
    margin-right: -15px;
    text-align: right;
    font-size: 90%;
  }
}
.v-page-sidebar-title {
  margin-bottom: 10px;
  font-family: "Averia Serif Libre", cursive;
  font-size: 130%;
  color: #8a2740;
}
.v-page-sidebar-item {
  margin-bottom: 10px;
}
.v-page-sidebar-item-groups a.active::after {
  content: 'x';
  position: absolute;
  width: 14px;
  height: 14px;
  right: 10px;
}
.v-page-sidebar-item-title {
  font-size: 16px;
  cursor: pointer;
  display: block;
  color: #8a2740;
}
.v-page-sidebar-item-title::before {
  font-family: v-icons;
  content: "\e806";
  float: right;
  margin: 0 10px 0 0;
  transition: transform 250ms linear;
}
@media screen and (max-width: 700px) {
  .v-page-sidebar-item-title::before {
    margin: 0;
  }
}
.v-page-sidebar-item-nodrop {
  cursor: pointer;
  display: block;
  color: #8a2740;
}
.v-page-sidebar-item-content,
.v-page-sidebar-item-subcontent {
  margin: 5px 0 0 0;
  padding: 0 0 0 20px;
  list-style: none;
}
.v-page-sidebar-item-content li,
.v-page-sidebar-item-subcontent li {
  margin: 1px 0;
  padding: 0;
}
.v-page-sidebar-item-content li a,
.v-page-sidebar-item-subcontent li a {
  font-size: 16px;
  color: #848484;
}
.v-page-sidebar-item-content li a.active,
.v-page-sidebar-item-subcontent li a.active {
  color: #cc4b6c;
}
.v-page-sidebar-item-content li a:hover,
.v-page-sidebar-item-subcontent li a:hover {
  text-decoration: underline;
  color: #cc4b6c;
}
.v-page-sidebar-item-content li:hover,
.v-page-sidebar-item-subcontent li:hover {
  color: #cc4b6c;
}
.v-page-sidebar-item-subcontent {
  margin: 0 0 5px 0;
  padding: 0 0 0 15px;
}
.v-page-sidebar-item-tree {
  font-size: 16px;
  cursor: pointer;
}
.v-page-sidebar-item-tree::before {
  position: absolute;
  content: "\e806";
  margin: 3px 0 0 -10px;
  font-family: v-icons;
  font-size: 65%;
  transition: transform 250ms linear;
}
.v-page-static {
  position: relative;
  box-sizing: border-box;
  min-height: 100vh;
  max-width: 970px;
  margin: -80px auto 0 auto;
  padding: 60px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.35);
  background-color: #f2f2f2;
  overflow: auto;
}
@media screen and (max-width: 1050px) {
  .v-page-static {
    margin: 0 5px;
    padding: 5px 20px;
  }
}
.v-page-content {
  margin: 0;
  padding: 0;
  width: 100%;
}
.v-page-divider {
  box-sizing: border-box;
  margin: 15px 0 0 0;
  padding: 6px 10px;
  font-family: "Averia Serif Libre", cursive;
  font-size: 130%;
  color: #8a2740;
  background: #f2f2f2;
  clear: both;
}
.v-page-divider:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  .v-page-divider {
    margin: 10px -10px 10px -10px;
  }
}
.v-page-divider-display_sidebar {
  margin: 0 0 10px -20px;
}
@media screen and (max-width: 700px) {
  .v-page-divider-display_sidebar {
    margin: 0 -10px 10px -10px;
  }
}
@media screen and (max-width: 420px) {
  .v-page-divider-display_sidebar-title {
    color: transparent;
  }
}
.v-page-divider-resume {
  box-sizing: border-box;
  margin: 10px -10px 10px -10px;
  padding: 8px 20px;
  text-align: center;
  background: #8a2740;
}
.v-page-divider-resume-title {
  color: #fff;
  font-family: "Averia Serif Libre", cursive;
  font-size: 130%;
}
.v-page-display {
  margin: 46px 0 0 -20px;
}
@media screen and (max-width: 1050px) {
  .v-page-display {
    margin: 40px 0 0 -20px;
  }
}
@media screen and (max-width: 700px) {
  .v-page-display {
    margin: 10px 0 0 -20px;
  }
}
.v-page-display-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -30px 0 -10px 0;
  gap: 20px;
}
@media screen and (max-width: 1050px) {
  .v-page-display-items {
    gap: 10px;
  }
}
@media screen and (max-width: 700px) {
  .v-page-display-items {
    margin: 10px 0 -10px 20px;
  }
}
.v-page-display-items-item {
  width: 200px;
  flex: 1 1 200px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 1050px) {
  .v-page-display-items-item {
    width: 135px;
    flex: 1 1 135px;
  }
}
.v-page-display-items-item-dummy {
  background-color: unset;
  height: 0!important;
  min-height: 0!important;
  padding-top: 0!important;
  padding-bottom: 0!important;
  margin-top: 0!important;
  margin-bottom: 0!important;
}
.v-page-display-items-item-image {
  display: block;
  position: relative;
  height: 350px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1050px) {
  .v-page-display-items-item-image {
    height: 250px;
  }
}
.v-page-display-items-item-image img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.v-page-display-items-item-image img.v-img-default {
  object-fit: contain;
  object-position: center center;
}
.v-page-display-items-item-content {
  box-sizing: border-box;
  padding: 10px;
}
.v-page-display-items-item-title,
.v-page-display-items-item-author {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v-page-display-items-item-title {
  margin-top: 5px;
}
.v-page-display-items-item-title a {
  color: #8a2740;
  font-weight: 700;
}
.v-page-display-items-item-author {
  text-transform: capitalize;
  font-style: italic;
  font-size: 90%;
  color: #848484;
}
.v-page-display-items-item-reference {
  margin: 3px 0;
  font-size: 90%;
  text-transform: capitalize;
  color: #848484;
}
.v-page-display-items-item-reference-title {
  color: #aaaaaa;
}
.v-page-display-items-item-price {
  margin: 5px 0;
  font-weight: 600;
  color: #8a2740;
}
.v-page-display-items-item-action {
  margin: 5px 0 0;
}
.v-page-display-items-item-action-details {
  display: inline-block;
  margin: 0 10px 5px 0;
}
.v-page-display-items-item-action-buy {
  display: inline-block;
  font-weight: 700;
  text-align: right;
}
.v-page-display-slides {
  width: 100%;
  height: fit-content;
  text-align: right;
  margin-top: -46px;
}
@media screen and (max-width: 1050px) {
  .v-page-display-slides {
    margin-top: -56px;
  }
}
@media screen and (max-width: 700px) {
  .v-page-display-slides {
    margin-top: -46px;
  }
  .v-page-display-slides > .v-slides {
    margin: 0;
  }
}
.v-page-display-slides_bottom {
  height: fit-content;
  text-align: right;
  margin: 0 0 0 -20px;
  background: #f2f2f2;
}
@media screen and (max-width: 1420px) {
  .v-page-display-slides_bottom > .v-slides {
    margin: 0;
  }
}
@media screen and (max-width: 700px) {
  .v-page-display-slides_bottom {
    margin: 0 -10px 0 -10px;
    padding-right: 8px;
  }
}
.v-page-thumb {
  width: 200px;
  text-align: center;
}
.v-page-thumb-image {
  width: 200px;
}
.v-page-thumb-image img {
  width: 100%;
}
.v-page-thumb-title,
.v-page-thumb-author {
  margin: 5px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-transform: capitalize;
}
.v-page-thumb-author {
  font-style: italic;
  font-size: 90%;
  color: #848484;
}
.v-page-thumb-price {
  font-weight: 600;
  color: #8a2740;
}
.v-page-thumb-action {
  margin: 0 0 35px;
  font-size: 120%;
}
.v-page-thumb-action-details {
  display: inline-block;
  margin-right: 10px;
}
.v-page-thumb-action-pay {
  display: inline-block;
}
.v-page-details {
  display: flex;
  position: relative;
  margin: 10px 0 10px -18px;
}
@media screen and (max-width: 1050px) {
  .v-page-details {
    flex-direction: column;
  }
}
@media screen and (max-width: 700px) {
  .v-page-details {
    margin: 10px 0;
  }
}
.v-page-details-image {
  flex: 0 0 230px;
  margin: auto 0;
}
.v-page-details-image img {
  width: 100%;
}
.v-page-details-listado {
  margin: 0 -20px;
}
@media screen and (max-width: 700px) {
  .v-page-details-listado {
    margin: 0;
  }
}
.v-page-details-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 20px;
  justify-content: space-between;
}
@media screen and (max-width: 1050px) {
  .v-page-details-content {
    margin: 10px 0 0 0;
    padding: 0;
  }
}
.v-page-details-content-item {
  color: #848484;
  margin: 5px 0 0 0;
}
.v-page-details-content-item:first-child {
  margin-top: 0;
}
.v-page-details-content-item-head {
  color: #aaaaaa;
}
.v-page-details-content-item-head-groups {
  margin-right: 5px;
}
.v-page-details-content-item-head-groups::after {
  content: ',';
}
.v-page-details-content-item-head-groups:last-child {
  margin-right: 0;
}
.v-page-details-content-item-head-groups:last-child::after {
  content: '.';
}
.v-page-details-content-title {
  font-size: 110%;
  font-weight: 700;
  color: #8a2740;
}
.v-page-details-content-author {
  text-transform: capitalize;
  font-style: italic;
}
.v-page-details-content-description {
  text-align: justify;
}
.v-page-details-content-groups {
  text-transform: capitalize;
}
.v-page-details-content-footer {
  display: flex;
  width: 100%;
  margin: 10px 0 5px;
  align-items: center;
  justify-content: space-between;
  color: #8a2740;
}
@media screen and (max-width: 1050px) {
  .v-page-details-content-footer {
    margin: 10px 0 5px;
  }
}
.v-page-details-content-footer-price {
  font-weight: 700;
  margin: 0 5px;
}
.v-page-listado-not_found {
  color: #cc4b6c;
  display: block;
  font-family: "Averia Serif Libre", cursive;
  margin-top: 10px;
}
.v-page-listado-sort {
  display: inline-block;
  position: relative;
  margin-right: 15px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 1050px) {
  .v-page-listado-sort {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .v-page-listado-sort {
    position: absolute;
    right: 0px;
    top: 60px;
    margin-right: 0;
  }
}
.v-page-listado-order {
  position: absolute;
  margin-top: 2px;
  position: relative;
}
@media screen and (max-width: 700px) {
  .v-page-listado-order {
    display: none;
  }
}
.v-page-listado-items {
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
  margin: 10px 20px 0 0;
}
@media screen and (max-width: 700px) {
  .v-page-listado-items {
    margin: 10px 0 0 0;
  }
}
.v-page-listado-items-item {
  display: flex;
  width: 100%;
  margin: 10px 0;
  overflow: hidden;
}
.v-page-listado-items-item:nth-child(even) {
  background: #f2f2f2;
}
.v-page-listado-items-item:last-child {
  margin-bottom: 20px;
}
.v-page-listado-items-item-image {
  flex: 0 0 80px;
  margin: 0 15px 0 0;
  position: relative;
  display: block;
}
@media screen and (max-width: 420px) {
  .v-page-listado-items-item-image {
    margin: 0 10px 0 0;
  }
}
.v-page-listado-items-item-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: top center;
}
.v-page-listado-items-item-image img.v-img-default {
  object-fit: contain;
  object-position: center center;
}
.v-page-listado-items-item-content {
  flex: 1 1;
  overflow: hidden;
  vertical-align: top;
  padding-right: 10px;
}
.v-page-listado-items-item-title,
.v-page-listado-items-item-author {
  overflow: hidden;
  text-overflow: ellipsis;
}
.v-page-listado-items-item-title {
  margin-top: 5px;
}
.v-page-listado-items-item-title a {
  color: #8a2740;
  font-weight: 700;
}
.v-page-listado-items-item-author {
  margin: 2px 0 8px;
  text-transform: capitalize;
  font-style: italic;
  color: #848484;
}
.v-page-listado-items-item-reference {
  margin: 5px 0;
  font-size: 90%;
  text-transform: capitalize;
  color: #848484;
}
.v-page-listado-items-item-reference-title {
  color: #aaaaaa;
}
.v-page-listado-items-item-price {
  margin: 5px 0;
  font-weight: 600;
  color: #8a2740;
}
.v-page-listado-items-item-action {
  margin: 5px 0;
}
.v-page-listado-items-item-action-details {
  display: inline-block;
  margin-right: 10px;
}
.v-page-listado-items-item-action-buy {
  display: inline-block;
  margin-bottom: 1px;
  font-weight: 700;
}
.v-page-cart {
  margin-top: -50px;
  padding: 0 20%;
}
@media screen and (max-width: 1050px) {
  .v-page-cart {
    padding: 0 20px;
  }
}
@media screen and (max-width: 700px) {
  .v-page-cart {
    padding: 0 0;
  }
}
.v-page-cart-empty {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.v-page-cart-empty-headline {
  display: block;
  margin-top: 40px;
  font-family: "Averia Serif Libre", cursive;
  font-weight: 400;
  font-size: 140%;
}
@media screen and (max-width: 700px) {
  .v-page-cart-empty-headline {
    margin-top: 0;
  }
}
.v-page-cart-empty-image {
  width: 70%;
}
@media screen and (max-width: 1050px) {
  .v-page-cart-empty-image {
    width: 50%;
  }
}
.v-page-cart-link {
  overflow-wrap: break-word;
}
.v-page-cart-resume-button {
  margin: 0 -10px 40px 0;
}
@media screen and (max-width: 700px) {
  .v-page-cart-resume-button {
    margin: 10px 0 40px 0;
  }
}
.v-page-shop_cart {
  width: 100%;
  margin: 20px 0;
  padding: 0 10px;
}
.v-page-shop_cart-th_label {
  background: #f2f2f2;
  font-size: 120%;
}
.v-page-shop_cart-td_item-text-title {
  font-weight: 700;
  color: #8a2740;
}
.v-page-shop_cart-td_item-text-title a {
  color: #8a2740;
}
.v-page-shop_cart-td_item-text-author {
  margin: 0 0 5px 0px;
  text-transform: capitalize;
  font-style: italic;
  color: #848484;
}
.v-page-shop_cart-td_item-text-reference,
.v-page-shop_cart-td_item-text-description {
  color: #848484;
  font-size: 90%;
  margin: 5px 0px;
}
.v-page-shop_cart-td_item-text-reference-head,
.v-page-shop_cart-td_item-text-description-head {
  text-transform: capitalize;
  color: #aaaaaa;
}
.v-page-shop_cart-td_item-text-cover,
.v-page-shop_cart-td_item-text-condition {
  font-size: 90%;
  margin: 5px 0px;
}
.v-page-shop_cart-td_item-text-price {
  text-align: right;
  white-space: nowrap;
  margin-bottom: 10px;
}
.v-page-shop_cart-td_item-text-price-value {
  font-size: 120%;
  font-weight: 600;
  color: #8a2740;
  margin-left: 5px;
}
.v-page-shop_cart-td_removal {
  text-align: center;
}
.v-page-cart_sum-subtotal {
  text-align: right;
  font-style: italic;
  color: #8a2740;
}
.v-page-cart_sum-total {
  text-align: right;
  font-style: italic;
  font-size: 120%;
}
.v-page-orders {
  margin-top: -50px;
  padding: 0 20%;
}
@media screen and (max-width: 1050px) {
  .v-page-orders {
    margin-top: 0;
    padding: 0 20px;
  }
}
@media screen and (max-width: 700px) {
  .v-page-orders {
    margin-top: -50px;
    padding: 0 0;
  }
}
.v-page-orders-title {
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 420px) {
  .v-page-orders-title {
    padding: 3px 0;
    margin-right: 0;
  }
}
.v-page-orders-details {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
@media screen and (max-width: 420px) {
  .v-page-orders-details {
    flex-direction: column;
  }
}
.v-page-orders-details:last-child {
  border-top: 1px solid grey;
  background: #3d0b18;
}
.v-page-orders-client {
  flex-direction: column;
  margin-bottom: 5px;
}
.v-page-orders-client-title {
  margin-bottom: 5px;
  font-weight: 700;
}
.v-page-orders-client-info {
  margin-left: 5px;
}
.v-page-orders-detail-title {
  font-weight: 700;
  color: #8a2740;
}
.v-page-orders-detail-order_line {
  color: #848484;
}
.v-page-orders-detail-reference {
  color: #848484;
  font-size: 90%;
}
.v-page-orders-detail-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 5px 15px;
  white-space: nowrap;
}
@media screen and (max-width: 420px) {
  .v-page-orders-detail-price {
    align-items: flex-start;
    padding: 0 0 5px 0;
  }
}
.v-page-orders-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.v-page-orders_list {
  width: 100%;
  margin-top: 10px;
  text-align: left;
  border-collapse: collapse;
  overflow: auto;
}
.v-page-orders_list-label {
  padding-left: 15px;
  background: #f2f2f2;
  color: #3d0b18;
}
@media screen and (max-width: 420px) {
  .v-page-orders_list-label {
    padding-left: 5px;
  }
}
.v-page-orders_list-item {
  padding: 10px 15px;
  border-bottom: 0.2px solid rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 420px) {
  .v-page-orders_list-item {
    padding: 10px 3px;
  }
}
.v-page-request-details {
  width: 100%;
}
.v-page-request-details-client {
  background-color: #fff;
}
.v-page-form-box {
  clear: both;
  margin: 20px;
  padding: 10px 15px;
  border: 1px solid #cc4b6c;
  border-radius: 3px;
  background-color: rgba(204, 75, 108, 0.1);
}
@media screen and (max-width: 420px) {
  .v-page-form-box {
    margin: 20px 10px;
  }
}
.v-page-form-link {
  margin: 20px;
  font-size: 16px;
}
.v-page-form-recover {
  color: #8a2740;
  float: left;
  margin: 20px;
}
.v-page-clearfix {
  clear: both;
}
.v-page-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.v-page-clear {
  margin: 0;
  padding: 0;
  clear: none;
}
.v-page-clear::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
  line-height: 0;
  visibility: hidden;
}
.v-page-contact {
  width: 100%;
}
.v-page-contact-element {
  box-sizing: border-box;
  float: left;
  width: calc(50% - 2 *  20px );
  margin: 10px 20px;
}
.v-page-contact-element > span:first-of-type {
  color: #848484;
  margin-right: 5px;
}
@media screen and (max-width: 700px) {
  .v-page-contact-element {
    width: 100%;
    float: none;
    width: calc(100% - 2 * 5px);
    margin: 10px 5px;
  }
}
.v-page-contact-element-user {
  display: flex;
  margin-left: -10px;
}
@media screen and (max-width: 700px) {
  .v-page-contact-element-user {
    flex-direction: column;
  }
}
.v-page-contact-element-user-text {
  margin: 0;
}
.v-page-contact-element-user-user_pw {
  width: 50%;
  margin: 10px 10px 0;
}
.v-page-contact-element-user-user_pw span {
  display: block;
  margin-bottom: 5px;
}
.v-page-contact-element-name,
.v-page-contact-element-surname,
.v-page-contact-element-phone,
.v-page-contact-element-email,
.v-page-contact-element-address_1,
.v-page-contact-element-address_2,
.v-page-contact-element-area,
.v-page-contact-element-city,
.v-page-contact-element-country,
.v-page-contact-element-zipcode,
.v-page-contact-element-user_name,
.v-page-contact-element-user_email,
.v-page-contact-element-invoice_data {
  float: left;
}
.v-page-contact-element-client_info {
  font-size: 15px;
}
.v-page-contact-element-input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 5px 10px;
  border-radius: 3px;
  border-bottom: 2px solid #bfbfbf;
  transition: border 0.4s;
  background: #fff;
}
.v-page-contact-element-input::placeholder {
  font-style: italic;
  opacity: 0.5;
}
.v-page-contact-element-input:hover,
.v-page-contact-element-input:focus,
.v-page-contact-element-input:focus-within {
  border-bottom-color: #cc4b6c;
}
.v-page-contact-element-input.error {
  border-bottom-color: red;
}
.v-page-contact-element-radio {
  margin-top: 15px;
}
.v-page-contact-element-radio-invoice_address {
  margin: 10px 15px 0 20px;
  width: auto;
}
@media screen and (max-width: 1050px) {
  .v-page-contact-element-radio-invoice_address {
    margin-left: 20px;
  }
}
@media screen and (max-width: 700px) {
  .v-page-contact-element-radio-invoice_address {
    margin-left: 5px;
  }
}
.v-page-contact-element-fields {
  margin: 0;
  transition: 0.2s;
}
@media screen and (max-width: 700px) {
  .v-page-contact-element-fields {
    margin: 20px 0;
  }
}
.v-page-contact-element-resume {
  margin: 0 auto;
  padding-bottom: 10px;
  align-items: center;
}
.v-page-contact-element-resume-fields {
  margin: 0 0 5px 5px;
}
.v-page-contact-element-resume-fields-title {
  display: block;
  height: 20px;
  margin-left: 5px;
  padding: 8px 0 2px 0;
  font-weight: 700;
  border-top: 1px solid black;
}
.v-page-contact-element-select {
  display: block;
  margin: 5px 0;
  background: #cc4b6c;
  border: 1px solid #f2f2f2;
}
.v-page-ship_payment {
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 700px) {
  .v-page-ship_payment {
    flex-direction: column;
    justify-content: center;
  }
}
.v-page-ship_payment-radio {
  display: flex;
  flex-direction: column;
  margin: 0 15px;
  width: calc(50% - 2 *  20px );
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .v-page-ship_payment-radio {
    margin: 0 5px;
    width: 100%;
  }
}
.v-page-ship_payment-radio-title {
  margin: 10px 0;
}
@media screen and (max-width: 700px) {
  .v-page-ship_payment-radio-title {
    width: 250px;
  }
}
.v-page-ship_payment-radio-title-sub {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}
.v-page-ship_payment-radio-entry {
  margin-bottom: 10px;
}
.v-page-ship_payment-radio-entry-text {
  margin-left: 5px;
}
.v-page-user {
  margin-top: -25px;
  padding: 0 20%;
}
@media screen and (max-width: 1050px) {
  .v-page-user {
    margin-top: 30px;
    padding: 0 4%;
  }
}
@media screen and (max-width: 700px) {
  .v-page-user {
    margin-top: -50px;
    padding: 0 0;
  }
}
.v-filter-tag {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  margin: 0 10px 10px 0;
  padding: 7px 40px 7px 10px;
  border-radius: 3px;
  border: 1px solid #8a2740;
  color: #8a2740;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  .v-filter-tag {
    display: none;
  }
}
.v-filter-tag-delete {
  position: absolute;
  width: 30px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  line-height: 32px;
  font-size: 13px;
  text-align: center;
  border-radius: 0 3px 3px 0;
  color: #fff;
  border: 1px solid #8a2740;
  background-color: #8a2740;
  transition: background-color 250ms;
}
.v-filter-tag-delete:hover {
  background-color: #cc4b6c;
}
.v-steps-container ul {
  width: 90%;
  margin: 0 auto;
  padding: 0;
}
.v-steps-container li {
  position: relative;
  padding-bottom: 20px;
  width: calc(100%/3);
  float: left;
  list-style-type: none;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  color: #cc4b6c;
}
@media screen and (max-width: 1050px) {
  .v-steps-container li {
    padding-bottom: 0;
  }
}
.v-steps-container li::before {
  position: relative;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 auto 3px auto;
  line-height: 25px;
  text-align: center;
  border: 2px solid #cc4b6c;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
}
.v-steps-container li::after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  top: 15px;
  left: -50%;
  background-color: #cc4b6c;
  z-index: 0;
}
.v-steps-container li:first-child::after {
  content: none;
}
.v-steps-container li.active {
  color: #8a2740;
  font-weight: bold;
}
.v-steps-container li.active::before {
  border-color: #8a2740;
  background: #8a2740;
}
.v-steps-container li.active::after {
  background-color: #8a2740;
}
.v-steps-container li.link {
  cursor: pointer;
}
.v-steps-container li.link:hover {
  text-decoration: underline;
}
.v-slides {
  display: inline-block;
}
@media screen and (max-width: 1050px) {
  .v-slides {
    margin-top: 10px;
  }
}
.v-slides-page {
  display: inline-block;
  margin: 5px 5px 5px 0;
  padding: 5px 10px;
  font-size: 90%;
  text-decoration: none;
  border-radius: 3px;
  transition: all 250ms linear;
  color: #fff;
  background-color: #8a2740;
}
.v-slides-page:hover {
  text-decoration: none;
  background-color: #cc4b6c;
}
.v-slides-page-icon_change::before {
  transform: translate(-1px, 0) scale(-1, 1);
}
.v-slides-headline {
  padding: 0 0 5px;
  font-family: "Averia Serif Libre", cursive;
  font-weight: 400;
  color: #8a2740;
}
.v-slides-headline-items_total {
  padding: 15px 0 0;
}
@media screen and (max-width: 1050px) {
  .v-slides-headline-items_total {
    padding: 0;
  }
}
.v-paginator {
  display: inline-block;
}
@media screen and (max-width: 1050px) {
  .v-paginator {
    margin-top: 10px;
  }
}
.v-paginator-page {
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 5px 10px;
  font-size: 90%;
  text-decoration: none;
  border-radius: 3px;
  transition: all 250ms linear;
  color: #fff;
  background-color: #8a2740;
}
.v-paginator-page:hover {
  text-decoration: none;
  background-color: #cc4b6c;
}
@media screen and (max-width: 700px) {
  .v-paginator-page-num {
    display: none;
  }
}
.v-paginator-page-current {
  background-color: #97913a;
}
.v-paginator-page-icon_change::before {
  transform: translate(-1px, 0) scale(-1, 1);
}
.v-paginator-headline {
  padding: 0 0 5px;
  font-family: "Averia Serif Libre", cursive;
  font-weight: 400;
  color: #8a2740;
}
.v-paginator-headline-items_total {
  padding: 15px 0 0;
}
@media screen and (max-width: 1050px) {
  .v-paginator-headline-items_total {
    padding: 0;
  }
}
.v-footer {
  background: #8a2740;
  text-align: center;
  color: #fff;
}
.v-footer-content {
  padding: 20px;
  min-height: 200px;
}
.v-footer-end {
  padding: 20px;
  display: none;
}
/**
 * Tooltip Styles
 */
/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}
/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}
/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}
/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #cc4b6c;
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  border-radius: 3px;
}
/* Directions */
/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}
[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #cc4b6c;
}
/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform: translateY(-12px);
  transform: translateY(-12px);
}
/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}
.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: red;
}
.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform: translateX(-12px);
  transform: translateX(-12px);
}
/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}
.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: red;
}
.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform: translateY(12px);
  transform: translateY(12px);
}
/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}
.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: red;
}
.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform: translateX(12px);
  transform: translateX(12px);
}
/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}
/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}
