/* -------------------------------- 

Primary style

-------------------------------- */

/* --- Base --- */
:root {
  --color-text-primary: #31353d;
  --color-bg-body: #eeeff7;
  --color-accent: #435779;
  --color-white: #FFF;
  --color-header-element: #26292f;
  --color-border: #e0e6ef;
  --color-text-muted: #a5aebc;
  --color-success: #7dcf85;
  --color-success-hover: #a2dda8;
  --color-shadow-layer: rgba(67, 87, 121, 0.6);
}

html {
  height: 100%;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-size: 100%;
  font-family: "Cinzel", serif;
  color: var(--color-text-primary);
  background-color: var(--color-bg-body);
}

body.overflow-hidden {
  /* prevent 2 vertical scrollbars on ie and firefox when the cart is visible */
  overflow: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to horizontally align the gallery of items */
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.cd-container::after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.cd-item-info {
  padding: 1em;
  background: var(--color-white);
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.cd-item-info p {
  font-family: "Cinzel", serif;
  font-weight: bold;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.cd-price {
  font-family: "Cinzel", serif;
  color: var(--color-success);
  font-weight: 800;
  font-size: 1.2rem;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  /* Cuadrado con bordes suaves */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.buy-btn:hover {
  background: var(--color-text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.buy-btn i {
  font-size: 16px;
}

/* --- Gallery Header --- */
.gallery-header {
  text-align: center;
  padding: 2em 0 1em;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header h1 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.gallery-header h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background: var(--color-accent);
  opacity: 0.3;
}

.gallery-header p {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 1.5em auto 0;
  line-height: 1.6;
  font-style: italic;
}

@media only screen and (max-width: 768px) {
  .gallery-header h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
}

/* -------------------------------- 

xheader 

-------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: var(--color-text-primary);
  text-align: center;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
  z-index: 4;
}

@media only screen and (min-width: 1200px) {
  header {
    height: 80px;
  }
}

#logo img {
  max-width: 120px;
  max-height: 30px;
  width: auto;
  height: auto;
}

#logo {
  padding-top: 5px;
  /* delete this property if you don't want your logo to scale down on mobile devices */
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

@media only screen and (min-width: 1200px) {
  #logo img {
    max-width: 160px;
    max-height: 40px;
    width: auto;
    height: auto;
  }

  #logo {
    padding-top: 20px;
    position: absolute;
    /* logo left margin on Dekstop */
    left: 2.4em;
    top: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

#cd-hamburger-menu,
#cd-cart-trigger {
  position: absolute;
  top: 0;
  height: 100%;
}

#cd-hamburger-menu a,
#cd-cart-trigger a {
  width: 60px;
  height: 100%;
}

#cd-hamburger-menu {
  left: 0;
}

#cd-hamburger-menu a {
  background: var(--color-header-element) url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/148866/cd-hamburger-menu.svg") no-repeat center center;
}

@media only screen and (min-width: 1200px) {
  #cd-hamburger-menu {
    display: none;
  }
}

#cd-cart-trigger {
  right: 0;
}

#cd-cart-trigger a {
  background: var(--color-header-element) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'></path><circle cx='12' cy='7' r='4'></circle></svg>") no-repeat center center;
}

@media only screen and (min-width: 1200px) {
  #cd-cart-trigger {
    /* cart right margin on desktop */
    right: 0;
  }

  #cd-cart-trigger a {
    position: relative;
    width: 100px;
    border-left: none;
    background-color: var(--color-header-element);
  }
}

#main-nav,
#cd-cart {
  position: fixed;
  top: 0;
  height: 100%;
  width: 260px;
  /* header height */
  padding-top: 50px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

@media only screen and (min-width: 768px) {

  #main-nav,
  #cd-cart {
    width: 350px;
  }
}

@media only screen and (min-width: 1200px) {

  #main-nav,
  #cd-cart {
    width: 30%;
    /* header height has changed */
    padding-top: 80px;
  }
}

#main-nav {
  left: -100%;
  background: var(--color-white);
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  transition: left 0.3s;
}

#main-nav.speed-in {
  left: 0;
}

#main-nav ul a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 1em;
  border-bottom: 1px solid var(--color-border);
}

#main-nav ul .current {
  box-shadow: inset 3px 0 var(--color-accent);
}

@media only screen and (min-width: 1200px) {
  #main-nav {
    /* reset main nav style */
    position: absolute;
    height: auto;
    width: auto;
    left: auto;
    right: 8em;
    padding-top: 0;
    top: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    /* Remover restricción de scroll para dejar caer el menú libremente */
    /* header height */
    line-height: 80px;
    z-index: 4;
  }

  #main-nav li {
    display: inline-block;
    margin-left: 1em;
  }

  #main-nav ul a {
    display: inline-block;
    height: auto;
    line-height: 1;
    padding: 1em 1.4em;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0.25em;
  }

  #main-nav ul a i {
    margin-right: 8px;
  }

  #main-nav ul a.current {
    box-shadow: none;
    background: var(--color-accent);
    color: var(--color-white);
  }

  .no-touch #main-nav ul a:hover {
    background: var(--color-accent);
    color: var(--color-white);
  }

  .no-touch #ma.login-modal .checkout-btn:hover {
    background: var(--color-accent);
  }

  .login-error {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: center;
  }

  /* --- Submenú Dropdown (Estilos Escritorio) --- */
  #main-nav .has-dropdown {
    position: relative;
  }

  #main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 150px;
    background: var(--color-white);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 5;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    /* Cambio drástico para invalidar paddings base heredados y ajustar bordes de items */
  }

  #main-nav .dropdown-menu li {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
  }

  #main-nav .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    margin: 0 !important;
    color: var(--color-text-primary);
    border-radius: 0;
    background: transparent;
    text-indent: 0 !important;
  }

  #main-nav .dropdown-menu a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: var(--color-accent);
  }

  /* Cambiar color al pasar hover en los sub-items */
  #main-nav .dropdown-menu a:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
  }

  #main-nav .dropdown-menu a:hover i {
    color: var(--color-white);
  }

  /* Mostrar desplegable al hacer hover en el padre (Skins) */
  #main-nav .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* --- Submenú Dropdown (Estilos Móvil) --- */
#main-nav .dropdown-menu {
  display: none;
  /* En móvil se inicialmenta oculto */
  background: var(--color-bg-body);
  padding-left: 1em;
}

#main-nav .has-dropdown:hover .dropdown-menu,
#main-nav .has-dropdown:focus-within .dropdown-menu {
  display: block;
}

#main-nav .dropdown-menu a {
  font-size: 0.9em;
  border-bottom: 1px solid var(--color-border);
}

.no-js #main-nav {
  position: fixed;
}

/* Eliminado: Estilos del cd-cart ahora son manejados por el nuevo Modal del Login */

/* -------------------------------- 

xmodal login 

-------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Fondo oscuro semitransparente */
  align-items: center;
  justify-content: center;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}

.modal.is-visible {
  display: flex;
}

.modal-content {
  background-color: var(--color-white);
  padding: 2em;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

.modal-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--color-text-primary);
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: #333;
  text-decoration: none;
}

.cd-login-form {
  margin-top: 1em;
}

.cd-input-group {
  margin-bottom: 1.5em;
  text-align: left;
}

.cd-input-group label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5em;
  color: var(--color-text-primary);
  font-weight: bold;
}

.cd-input-group input {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--color-bg-body);
  color: var(--color-text-primary);
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

.cd-input-group input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 5px rgba(67, 87, 121, 0.2);
}

.cd-forgot-password {
  display: block;
  font-size: 0.875rem;
  text-align: right;
  margin-bottom: 2em;
  text-decoration: underline;
  color: var(--color-text-muted);
}

.checkout-btn {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: var(--color-success);
  color: var(--color-white);
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: bold;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
}

.checkout-btn:hover {
  background: #5eb666;
  /* Tono verde ligeramente más oscuro que el original #7dcf85 */
}

.cancel-btn {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: transparent;
  color: var(--color-text-muted);
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.cancel-btn:hover {
  background: #f8f9fa;
  color: var(--color-text-primary);
}

.modal-buttons {
  margin-top: 20px;
}

#buy-modal-text {
  font-family: "Cinzel", serif;
  margin-bottom: 20px;
  color: var(--color-accent);
  line-height: 1.4;
}

.close-buy-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-buy-modal:hover {
  color: #333;
}

/* -------------------------------- 

xgallery 

-------------------------------- */
main {
  position: relative;
  flex: 1 0 auto;
  /* Permite que el contenido crezca y empuje el footer */
  background: var(--color-bg-body);
  padding-top: 70px;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  main {
    padding-top: 90px;
  }
}

@media only screen and (min-width: 1200px) {
  main {
    padding-top: 120px;
  }
}

#cd-gallery-items li {
  position: relative;
  /* Para el posicionamiento absoluto del botón de compra */
  margin-bottom: 1.5em;
  background: var(--color-white);
  border-radius: 0.25em;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

#cd-gallery-items li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

#cd-gallery-items li img {
  width: 100%;
  height: 250px;
  /* Altura uniforme para todos los cuadros */
  object-fit: cover;
  /* Recorte inteligente para mantener proporciones */
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#cd-gallery-items li img:hover {
  opacity: 0.9;
}

/* --- Modal Visor de Imágenes (Lightbox) --- */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.image-modal.is-visible {
  display: flex;
}

.image-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  animation: zoom-in 0.3s ease;
}

@keyframes zoom-in {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-image-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-image-modal:hover {
  color: #bbb;
}

@media only screen and (max-width: 700px) {
  .image-modal-content {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  #cd-gallery-items li {
    width: 48%;
    float: left;
    margin-bottom: 2em;
    margin-right: 4%;
  }

  #cd-gallery-items li:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 1200px) {
  #cd-gallery-items li {
    width: 31%;
    float: left;
    margin-bottom: 2.5em;
    margin-right: 3.5%;
  }

  #cd-gallery-items li:nth-child(2n) {
    margin-right: 3.5%;
  }

  #cd-gallery-items li:nth-child(3n) {
    margin-right: 0;
  }
}

#cd-shadow-layer {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--color-shadow-layer);
  cursor: pointer;
  z-index: 2;
  display: none;
}

#cd-shadow-layer.is-visible {
  display: block;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}

/* -------------------------------- 

xfooter 

-------------------------------- */
#main-footer {
  flex-shrink: 0;
  /* Evita que el footer se encoja */
  background-color: var(--color-header-element);
  color: var(--color-text-muted);
  padding: 3em 0;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2em;
  margin-bottom: 0;
}

#main-footer p {
  letter-spacing: 1px;
  margin: 0;
}

/* -------------------------------- 

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* --- Widget de WhatsApp Premium --- */
#whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-family: 'Cinzel', serif;
}

#wa-float-btn {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#wa-float-btn:hover {
  transform: scale(1.1);
  background-color: #20ba59;
}

.wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.6;
  z-index: -1;
  animation: wa-pulse-anim 2s infinite;
}

@keyframes wa-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

#wa-chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: rgba(38, 41, 47, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

#wa-chat-window.is-visible {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.wa-chat-header {
  background: linear-gradient(135deg, #128c7e, #075e54);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-admin-avatar {
  position: relative;
  width: 40px;
  height: 40px;
}

.wa-admin-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.5);
}

.online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #4cd137;
  border-radius: 50%;
  border: 2px solid #075e54;
}

.wa-admin-info {
  display: flex;
  flex-direction: column;
}

.wa-admin-name {
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
}

.wa-admin-status {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

#wa-close-chat {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  opacity: 0.7;
  cursor: pointer;
  transition: 0.3s;
}

#wa-close-chat:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.wa-chat-body {
  padding: 20px;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  background-size: contain;
}

.wa-msg {
  background: white;
  padding: 10px 15px;
  border-radius: 0 15px 15px 15px;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  animation: wa-slide-in 0.3s ease;
}

@keyframes wa-slide-in {
  from {
    transform: translateX(-10px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.wa-chat-footer {
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#wa-user-msg {
  width: 100%;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: white;
  font-size: 0.85rem;
  outline: none;
  transition: 0.3s;
}

#wa-user-msg:focus {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.15);
}

#wa-send-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
}

#wa-send-btn:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

@media only screen and (max-width: 768px) {
  #whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }

  #wa-chat-window {
    width: 280px;
    bottom: 70px;
  }
}