@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Fa brands 400";
  src: url('../fonts/fa-brands-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Fa solid 900";
  src: url('../fonts/fa-solid-900.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

:root {
  --black: #222;
  --dodger-blue: #0098db;
  --dark-slate-grey: #1f1f1f;
  --orchid: #b774be;
  --steel-blue: #006896;
  --dim-grey: #727272;
  --alice-blue: #f1f6fd;
  --medium-sea-green: #00a253;
  --dark-green: #006333;
  --chocolate: #e66f00;
  --maroon: #772121;
  --brown: #884a4a;
  --dark-orchid: #92459b;
  --chocolate-dark: #c96100;
  --dark-orange: #ff7300;
  --dark-slate-blue: #314e6f;
  --midnight-blue: #1c3450;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

h1 {
  color: var(--dodger-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
}

h3 {
  color: #666;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.heading {
  letter-spacing: -1px;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
}

.heading-2 {
  color: var(--dark-slate-grey);
  letter-spacing: -1px;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.paragraph {
  color: #666;
  font-family: Inter, sans-serif;
}

.heading-3 {
  color: var(--dark-slate-grey);
  font-family: Inter, sans-serif;
}

.button {
  background-color: var(--dodger-blue);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  margin-top: 10px;
  padding: 12px 15px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.button:hover {
  background-color: var(--dark-slate-grey);
}

.button.admin {
  margin-left: 13px;
}

.button.admin.logout {
  background-color: #db1600;
}

.button.admin.logout:hover {
  background-color: var(--dark-slate-grey);
}

.button.cancel {
  background-color: var(--orchid);
  background-image: url('../images/plusicon.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 15px;
  border-radius: 4px;
  justify-content: flex-end;
  min-height: 44px;
  margin-top: 0;
  margin-left: 184px;
  padding: 9px 12px 9px 33px;
  display: inline-block;
}

.button.cancel:hover {
  background-color: var(--black);
}

.link {
  color: var(--dodger-blue);
  font-family: Inter, sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.link:hover {
  color: var(--dark-slate-grey);
  text-decoration: underline;
}

.form {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-block-2 {
  text-align: center;
}

.error-message {
  color: #fff;
  background-color: #f35454;
  border-radius: 4px;
  margin-top: 24px;
  padding: 20px;
  font-size: 18px;
}

.error-message.green {
  background-color: #4da360;
}

.module-headline {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  min-height: 75px;
  font-size: 22px;
  font-weight: 800;
  display: flex;
}

.dropdown-image {
  border-radius: 10px;
  margin-bottom: 14px;
}

.navigation-link {
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.navigation-link:hover {
  color: #8c54ff;
}

.navigation-link.w--current {
  color: #99d715;
}

.nav-content-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-left: 12px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  display: flex;
}

.nav-content-wrap:hover {
  color: var(--dodger-blue);
}

.dropdown-toggle {
  padding-left: 12px;
  padding-right: 24px;
  transition: all .2s;
}

.dropdown-toggle:hover {
  color: var(--dodger-blue);
}

.nav-blog-item {
  color: var(--dodger-blue);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 17px 6px 16px 29px;
  text-decoration: none;
  display: flex;
}

.nav-blog-item:hover {
  background-color: var(--dodger-blue);
  color: #fff;
}

.dropdown-pointer {
  position: relative;
}

.nav-link-details {
  color: #28333899;
  white-space: normal;
  font-size: 14px;
  line-height: 22px;
}

.navigation-container-mob {
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  margin-right: 44px;
}

.navigation-mob {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  display: none;
  position: relative;
  inset: 0% 0% auto;
}

.navigation-container {
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  min-height: 90px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.dropdown-column-left {
  flex-direction: column;
  width: 50%;
  height: 100%;
  display: flex;
}

.button-menu {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #8c54ff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding-left: 35px;
  padding-right: 35px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: background-color .2s ease-out;
  display: flex;
}

.button-menu:hover {
  background-color: #622bd3;
}

.navigation-dropdown {
  min-width: 140px;
}

.navigation-dropdown.w--open {
  background-color: #0000;
  min-width: 320px;
  max-height: 100vh;
  margin-top: -10px;
  padding-top: 10px;
  left: -181px;
}

.navigation-dropdown.dropdown-long {
  min-width: 500px;
  left: -185px;
}

.navigation-left {
  align-items: center;
  width: 50%;
  display: flex;
}

.dropdown-block {
  z-index: 25;
  color: #283338;
  background-color: #f1f1f1;
  border-top: 1px solid #00000014;
  align-items: center;
  width: 100%;
  padding: 0;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

.dropdown-wrapper-flex {
  background-color: #fff;
  border-radius: 10px;
  align-items: flex-start;
  min-width: 140px;
  display: flex;
  overflow: hidden;
  box-shadow: 4px -19px 35px #20355a14, 11px 11px 30px -10px #20355a26;
}

.dropdown-wrapper-flex.w--open {
  background-color: #fff;
  border-radius: 15px;
  min-width: 300px;
  max-height: 100vh;
  left: -97px;
  box-shadow: 0 50px 25px -50px #20355a26, 8px 18px 60px 4px #00000021;
}

.dropdown-title {
  margin-bottom: 2px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.navigation-right {
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  font-size: 16px;
  display: flex;
}

.dropdown-wrapper {
  background-color: #fff;
  border-radius: 20px;
  min-width: 140px;
  overflow: hidden;
  box-shadow: -10px 12px 30px -10px #20355a26, 4px -19px 35px #20355a14, 11px 11px 30px -10px #20355a26;
}

.dropdown-wrapper.w--open {
  background-color: #fff;
  border-radius: 15px;
  min-width: 300px;
  max-height: 100vh;
  left: -97px;
  box-shadow: 0 50px 25px -50px #20355a26, 8px 18px 60px 4px #00000021;
}

.icon-4 {
  margin-right: 5px;
}

.nav-menu {
  color: #283338;
  align-items: center;
  font-size: 15px;
  display: flex;
  position: static;
}

.flowbase-logo {
  width: 54px;
}

.icon-wrap {
  background-color: #e3eef3;
  border-radius: 100px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  display: flex;
}

.dropdown-link-mobile {
  color: #283338;
  width: 100%;
  padding: 20px 22px 16px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.dropdown-link-mobile:hover {
  background-color: #f8faff;
}

.icon {
  width: 100%;
  font-size: 20px;
}

.pointer {
  z-index: 20;
  background-color: #fff;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  inset: -3% -248px auto 0%;
  transform: rotate(45deg);
}

.login-buttons {
  align-items: center;
  margin-left: 30px;
  display: flex;
}

.close-session {
  text-transform: uppercase;
  white-space: normal;
  margin-left: 7px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.navigation {
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
}

.dropdown {
  flex: 0 auto;
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 1.1em;
  display: block;
}

.dropdown-column-right {
  background-color: #fafafa;
  border-left: 1px solid #00000014;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  padding: 25px;
}

.dropdown-link {
  z-index: 25;
  color: #283338;
  align-items: center;
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.dropdown-link:hover {
  color: var(--dodger-blue);
  background-color: #fafafacc;
}

.text-block-3, .text-block-4 {
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.text-block-4:hover {
  color: var(--dodger-blue);
}

.text-block-5 {
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.field-label {
  font-family: Inter, sans-serif;
  display: none;
}

.login-field {
  opacity: 1;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 5px;
  height: 50px;
  margin-bottom: 15px;
  padding-top: 12px;
  padding-bottom: 8px;
  padding-left: 14px;
  font-size: 20px;
  transition: background-color .2s, border-color .2s;
  position: relative;
}

.login-field:hover {
  background-color: #deebeb;
}

.login-field:active {
  border-color: var(--dodger-blue);
}

.login-field:focus {
  border: 2px solid var(--dodger-blue);
  box-shadow: inset 0 1px 3px #0000000d;
}

.lf-checkbox-label {
  z-index: 99;
  margin-bottom: 0;
  padding-top: 11px;
  padding-left: 60px;
  position: absolute;
  inset: 0%;
}

.field-label-3 {
  display: none;
}

.logout {
  font-family: "Fa solid 900", sans-serif;
}

.admin-navbar {
  z-index: 999;
  padding-top: 0;
  padding-bottom: 0;
  position: static;
  inset: 0% 0% auto;
}

.admin-navbar-button {
  float: right;
  justify-content: flex-end;
  display: none;
}

.body {
  background-color: #ddeaf3;
}

.body.cliente {
  background-color: #fff;
}

.logouticon {
  font-family: "Fa solid 900", sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.admin-form-field {
  color: var(--dark-slate-grey);
  border: 2px solid #72727261;
  border-radius: 4px;
  flex: none;
  width: 320px;
  min-height: 45px;
  margin-left: 0;
  margin-right: 10px;
  padding: 17px 14px;
  font-size: 17px;
  display: block;
}

.admin-form-field:hover {
  background-color: #f0f0f0;
}

.admin-form-field:focus {
  border-color: var(--dodger-blue);
  background-color: #f1f1f1;
}

.admin-form-field.dropdown {
  border-radius: 4px;
  width: 170px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 27px 5px 15px;
  line-height: 24px;
}

.admin-form-field.buscar {
  width: 250px;
}

.admin-submit-button {
  text-transform: uppercase;
  background-image: url('../images/search.svg');
  background-position: 10%;
  background-repeat: no-repeat;
  background-size: 17px;
  border-radius: 4px;
  min-height: 44px;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color .2s;
}

.admin-submit-button:hover {
  background-color: var(--steel-blue);
}

.loginscreen {
  height: 98vh;
}

.hero {
  background-image: url('../images/2023-fondomarie.jpg');
  background-position: 50%;
  background-size: cover;
}

.hero.turnos {
  background-color: #a4e8ff;
  background-image: none;
  max-width: 90vw;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
}

.loginform {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 198px;
}

.section-historia-clinica {
  margin-top: 0;
  display: flex;
}

.title {
  margin-bottom: 20px;
  font-size: 32px;
}

.title.pasos {
  font-size: 26px;
  font-weight: 400;
  line-height: 30px;
}

.title.pasos.cliente {
  color: #000;
  margin-bottom: 10px;
}

.title.pasos.cliente.raya {
  border-bottom: 4px solid #000;
  margin-bottom: 25px;
  padding-bottom: 14px;
}

.leftsep {
  border-left: 1px solid var(--dim-grey);
}

.navlink {
  color: var(--dark-slate-grey);
  margin-top: 16px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.navlink:hover {
  color: var(--dodger-blue);
}

.navbar {
  background-color: #0098db1f;
  padding-top: 12px;
  padding-bottom: 15px;
}

.formulario-busqueda {
  justify-content: flex-start;
  padding-left: 0;
  display: flex;
}

.form-2 {
  display: block;
}

.div-block {
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  display: none;
}

.div-block-2 {
  flex-direction: column;
  flex: 0 auto;
  display: flex;
}

.div-block-3 {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.listado {
  border-bottom: 1px solid #0000;
}

.repeat-row-historias {
  padding-top: 6px;
  padding-bottom: 6px;
}

.ver-historia {
  background-color: var(--dodger-blue);
  color: #34343400;
  background-image: url('../images/new-eye.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 5px;
  display: inline-block;
}

.ver-historia:hover {
  background-color: var(--steel-blue);
}

.petownerrheading {
  text-transform: uppercase;
  text-shadow: 0 1px 1px #00000075;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 0;
  font-size: 23px;
  font-weight: 500;
}

.add-form-page {
  padding-top: 14px;
  padding-bottom: 14px;
}

.form-container {
  display: block;
}

.form-columns {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.form-field-add {
  color: var(--dark-slate-grey);
  border: 2px solid #72727261;
  border-radius: 4px;
  flex: 1;
  min-height: 45px;
  margin-left: auto;
  margin-right: 10px;
  padding: 17px 14px;
  font-size: 17px;
  display: block;
}

.form-field-add:hover {
  background-color: #f0f0f0;
}

.form-field-add:focus {
  border-color: var(--dodger-blue);
  background-color: #f1f1f1;
}

.form-field-add.dropdown {
  border-radius: 4px;
  width: 170px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 27px 5px 15px;
  line-height: 24px;
}

.form-field-add.dropdown.mascota {
  width: 100%;
}

.form-submit-button {
  text-transform: uppercase;
  background-color: #23ad00;
  border-radius: 4px;
  min-height: 44px;
  margin-top: 11px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 15px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color .2s;
}

.form-submit-button:hover {
  background-color: var(--black);
}

.form-submit-button.red {
  background-color: #ad0000;
}

.form-submit-button.red:hover {
  background-color: #830101;
}

.heading-4, .select-headeing {
  font-size: 20px;
}

.agregarotramascota {
  color: #fff;
  text-transform: uppercase;
  background-color: #06c200;
  background-image: url('../images/plusicon.svg');
  background-position: 9px;
  background-repeat: no-repeat;
  background-size: 17px;
  border-radius: 3px;
  width: 170px;
  padding: 10px 10px 10px 38px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-block;
}

.agregarotramascota:hover {
  background-color: var(--black);
  border-radius: 3px;
}

.cargarhistoria {
  color: #fff;
  text-transform: uppercase;
  background-color: #bb3fb3;
  background-image: url('../images/select.svg');
  background-position: 9px;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 3px;
  width: auto;
  margin-top: 0;
  margin-left: 25px;
  padding: 10px 18px 10px 38px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-block;
}

.cargarhistoria:hover {
  background-color: var(--black);
  border-radius: 3px;
}

.repeat-agregar-mascota {
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
}

.noresults {
  padding-top: 31px;
}

.noresultswrapper {
  color: var(--dark-slate-grey);
}

.carga-datos {
  border-bottom: 1px solid #0098db82;
  margin-bottom: 11px;
  padding-bottom: 16px;
  display: flex;
}

.carga-datos.cliente {
  border-bottom-color: var(--black);
}

.informe-datos.reporte {
  margin-top: 17px;
}

.modulodatos {
  flex-direction: column;
  display: flex;
}

.modulodatos.siguentes {
  border-left: 1px solid #0098db87;
  margin-left: 16px;
  padding-left: 16px;
}

.modulodatos.siguentes.cliente {
  border-left-color: var(--black);
}

.modulodatos.cliente {
  line-height: 20px;
}

.repeat-reports-historia {
  border-bottom: 1px solid #0098db82;
  margin-bottom: 11px;
  padding-bottom: 20px;
  display: flex;
}

.repeat-reports-historia.cliente {
  border-bottom: 1px solid var(--black);
}

.adjuntos {
  margin-top: 13px;
}

.repeat-select-row {
  margin-bottom: 12px;
}

.form-upload {
  border: 3px solid #c9c9c9;
  border-radius: 4px;
  height: 45px;
  margin-bottom: 0;
}

.upload-button-form {
  background-color: var(--dodger-blue);
  border-radius: 3px;
  height: 35px;
  margin-top: 20px;
  margin-bottom: 1px;
  padding-top: 5px;
  font-size: 15px;
  transition: background-color .2s;
  display: inline-block;
}

.upload-button-form:hover {
  background-color: var(--steel-blue);
}

.repeat-report-edit-container {
  border: 4px solid var(--chocolate);
  background-color: #e6e6e6;
  border-radius: 6px;
  margin-bottom: 11px;
  padding: 11px 11px 16px;
  display: block;
}

.repeat-report-edit-container.receta {
  border-color: var(--steel-blue);
}

.repeat-report-edit-container.nefro {
  border-color: var(--maroon);
}

.searchcontainer {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bold-text {
  font-size: 21px;
  line-height: 23px;
}

.informe-container {
  padding-left: 0;
}

.informedatos {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.add-new-informe-container {
  justify-content: space-between;
  align-items: center;
  margin-top: 49px;
  display: flex;
}

.addnewreport {
  background-color: var(--medium-sea-green);
  color: var(--alice-blue);
  text-transform: uppercase;
  background-image: url('../images/plusicon.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 15px;
  border-radius: 4px;
  margin: 5px 9px 5px 0;
  padding: 10px 11px 10px 32px;
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.addnewreport:hover {
  background-color: var(--dark-green);
}

.addnewreport.receta {
  background-image: none;
  justify-content: center;
  margin: 11px 0;
  padding-left: 18px;
  padding-right: 18px;
}

.addnewreport.nefro {
  background-color: var(--brown);
}

.list-container {
  align-items: center;
  display: flex;
}

.icons-container {
  object-fit: contain;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100px;
  margin-right: 8px;
  transition: opacity .2s;
  display: flex;
}

.icons-container:hover {
  opacity: .83;
}

.text-field {
  height: 45px;
}

.selectable-area {
  color: var(--alice-blue);
  text-align: left;
  background-color: #5aa380;
  border-radius: 5px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  height: 76px;
  padding: 9px 16px 9px 12px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: flex;
}

.selectable-area:hover {
  color: var(--alice-blue);
  background-color: #388a47;
}

.selectable-area.receta-rapida {
  background-color: var(--orchid);
  justify-content: flex-start;
  align-items: center;
  height: auto;
}

.selectable-area.receta-rapida:hover {
  background-color: var(--dark-orchid);
}

.editarmascota {
  background-color: var(--orchid);
  color: var(--alice-blue);
  text-transform: uppercase;
  background-image: url('../images/edit.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 15px;
  border-radius: 4px;
  justify-content: center;
  margin-top: 11px;
  margin-bottom: 11px;
  margin-left: 21px;
  padding: 10px 18px 10px 32px;
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.editarmascota:hover {
  background-color: var(--dark-orchid);
}

.editar-persona {
  background-color: var(--dodger-blue);
  color: var(--alice-blue);
  text-transform: uppercase;
  background-image: url('../images/edit.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 15px;
  border-radius: 4px;
  justify-content: center;
  margin-top: 11px;
  margin-bottom: 11px;
  margin-left: 21px;
  padding: 10px 18px 10px 32px;
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.editar-persona:hover {
  background-color: var(--steel-blue);
}

.editar-persona.share {
  background-color: #2d379e;
  background-image: url('../images/share.svg');
  margin-bottom: 20px;
}

.editar-persona.share:hover {
  background-color: #0d1575;
}

.editar-persona-mascota-container {
  justify-content: flex-end;
  display: flex;
}

.editar-button-container {
  display: flex;
}

.editar-button-container.receta-list {
  flex-wrap: wrap;
  margin-bottom: 17px;
}

.button-editar-informe {
  background-color: var(--chocolate);
  color: var(--alice-blue);
  text-transform: uppercase;
  background-image: url('../images/edit.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 15px;
  border-radius: 4px;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 0;
  padding: 10px 11px 10px 32px;
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-block;
}

.button-editar-informe:hover {
  background-color: var(--chocolate-dark);
}

.button-editar-informe.subirvideo {
  background-color: #575757;
  background-image: url('../images/videoicon.svg');
  background-size: 20px;
  padding-left: 38px;
}

.button-editar-informe.subirvideo:hover {
  background-color: #3d3d3d;
}

.form-field-add-2 {
  color: #3d3d3d;
  border: 2px solid #72727261;
  border-radius: 4px;
  flex: 1;
  min-height: 45px;
  margin-left: auto;
  margin-right: 10px;
  padding: 17px 14px;
  font-size: 17px;
  display: block;
}

.form-field-add-2:hover {
  background-color: #f0f0f0;
}

.form-field-add-2:focus {
  background-color: #f1f1f1;
  border-color: #0098db;
}

.form-field-add-2.larger {
  min-height: 180px;
}

.file-container {
  background-color: #d6d6d6;
  border-bottom: 1px solid #f1f6fd;
  border-radius: 4px;
  width: 50%;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 20px;
}

.field-label-4, .field-label-5 {
  margin-bottom: 0;
}

.file-wrapper {
  background-color: #f1f6fd;
  border-radius: 4px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  display: flex;
}

.deletefile {
  background-color: var(--brown);
  color: var(--alice-blue);
  background-image: url('../images/trashicon.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 4px;
  margin-bottom: 0;
  margin-left: 20px;
  margin-right: 0;
  padding: 7px 12px 7px 38px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-block;
}

.deletefile:hover {
  background-color: var(--maroon);
}

.deletefile.receta {
  margin-top: 19px;
  margin-left: 0;
}

.deletefile.editar-receta {
  background-color: var(--dark-orange);
  background-image: url('../images/edit.svg');
  background-size: 15px;
  margin-top: 19px;
  margin-left: 0;
}

.deletefile.editar-receta:hover {
  background-color: var(--chocolate-dark);
}

.firstbuttoncontainer {
  flex: 1;
  margin-right: 16px;
}

.image {
  object-fit: contain;
  border-radius: 5px;
  max-width: 100px;
  max-height: 100px;
  overflow: hidden;
}

.imagen-gatito {
  object-fit: cover;
  object-position: 100% 100%;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  margin-right: 13px;
  display: flex;
  overflow: hidden;
}

.container-photo-y-valores {
  display: flex;
}

.image-2 {
  object-fit: contain;
  border-radius: 6px;
  max-width: 200px;
  max-height: 200px;
  overflow: hidden;
}

.div-block-8 {
  flex-direction: column;
  justify-content: space-between;
  width: 750px;
  max-width: 750px;
  height: auto;
  max-height: 1334px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-9 {
  padding: 38px 50px;
}

.div-block-10 {
  text-align: center;
  max-width: 750px;
}

.div-block-11 {
  text-align: center;
  width: 750px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.receta-title {
  color: var(--black);
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 500;
}

.receta-fecha {
  color: var(--black);
  text-align: left;
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 30px;
}

.bottom, .top {
  width: 100%;
}

.div-block-13 {
  background-color: var(--dark-orange);
  width: 360px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.div-block-14 {
  justify-content: flex-start;
  display: flex;
}

.div-block-15 {
  flex: 1;
  margin-left: 21px;
}

.div-block-16 {
  justify-content: space-between;
  display: flex;
}

.accordion-item-content {
  margin-top: 0;
  overflow: hidden;
}

.accordion-wrapper {
  width: 450px;
  margin-top: -28px;
  margin-bottom: 15px;
  margin-right: 27px;
}

.chevron {
  margin-bottom: -2px;
  margin-left: 15px;
}

.accordion-item-trigger {
  cursor: pointer;
  justify-content: flex-start;
  display: flex;
}

.profesores-wrapper {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.heading-5 {
  margin-top: 2px;
}

.heading-6 {
  color: var(--dark-slate-grey);
  margin-bottom: 30px;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}

.recompartir {
  background-color: var(--dark-slate-blue);
  color: var(--alice-blue);
  background-image: url('../images/share.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 4px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 7px 12px 7px 38px;
  font-size: 15px;
  line-height: 20px;
  transition: background-color .2s;
  display: inline-block;
}

.recompartir:hover {
  background-color: var(--black);
}

.div-block-18 {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.first-row {
  background-color: #b8d7ec;
  border-radius: 6px;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 25px;
  display: flex;
}

.adjuntodownload-2 {
  color: #f1f6fd;
  background-color: #727272;
  background-image: url('../images/new-eye.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 4px;
  margin-bottom: 0;
  margin-right: 6px;
  padding: 7px 12px 7px 38px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .2s;
  display: block;
}

.adjuntodownload-2:hover {
  background-color: #343434;
}

.editname {
  color: #f1f6fd;
  background-color: #314e6f;
  background-image: url('../images/edit.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 4px;
  margin-bottom: 0;
  margin-right: 0;
  padding: 7px 12px 7px 38px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-block;
}

.editname:hover {
  background-color: #1c3450;
}

.body-2 {
  padding: 54px;
}

.turnos {
  height: 98vh;
  padding: 0 24px 24px;
}

.quick-stack {
  margin-left: auto;
  margin-right: auto;
}

.div-block-19 {
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
}

.schedule {
  margin-bottom: 71px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px 45px;
}

.local {
  background-color: #fff;
  border-radius: 20px;
  width: 350px;
  min-height: 200px;
  padding: 21px;
  box-shadow: 3px 3px 12px #0003;
}

.local.virtual {
  align-self: center;
  min-height: 100px;
  padding-bottom: 21px;
}

.heading-7 {
  color: var(--dodger-blue);
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 700;
}

.div-block-20 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 10px;
  display: flex;
}

.paragraph-2 {
  margin-bottom: 0;
}

.disponibilidad {
  margin-top: 2px;
  margin-bottom: 20px;
}

.disponibilidadtitulo {
  margin-top: 20px;
  margin-bottom: 0;
}

.boton-disponibilidad {
  background-color: var(--orchid);
  border-radius: 5px;
  font-size: 14px;
  transition: background-color .2s;
}

.boton-disponibilidad:hover {
  background-color: var(--dark-orchid);
}

.boton-disponibilidad.whatsapp {
  background-color: var(--medium-sea-green);
  background-image: url('../images/icons8-whatsapp.svg');
  background-position: 8%;
  background-repeat: no-repeat;
  background-size: 25px 25px;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 38px;
  font-size: 16px;
  display: flex;
}

.boton-disponibilidad.whatsapp:hover {
  background-color: var(--dark-green);
}

.boton-disponibilidad.googlemaps {
  color: #6e6e6e;
  background-color: #fff;
  background-image: url('../images/icons8-google-maps.svg');
  background-position: 8%;
  background-repeat: no-repeat;
  background-size: 29px 29px;
  border: 3px solid #7b7b7b;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding-left: 36px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.boton-disponibilidad.googlemaps:hover {
  color: #313131;
  background-color: #e0e0e0;
}

.paragraph-3 {
  text-align: center;
  font-size: 23px;
  line-height: 31px;
}

.cartel {
  background-color: var(--dodger-blue);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 92px;
  display: flex;
}

.cartelheading {
  color: var(--alice-blue);
  text-align: center;
  text-transform: none;
  text-shadow: 1px 1px 1px #00000059;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 70%;
  font-weight: 700;
}

.botones {
  padding-top: 14px;
  padding-bottom: 14px;
}

.botoneras {
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.lista-fecha {
  width: 183px;
}

.lista-receta {
  flex: 1;
}

.receta-texto {
  border-left: 1px solid #000;
  margin-bottom: 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 20px;
}

.receta-fecha-listado {
  margin-bottom: 0;
  line-height: 20px;
}

.resetearbusqueda {
  color: var(--alice-blue);
  text-align: center;
  text-transform: uppercase;
  background-color: #bb3da4;
  border-radius: 4px;
  flex: 0 auto;
  justify-content: center;
  align-self: center;
  align-items: center;
  min-height: 44px;
  margin-top: 0;
  margin-left: 9px;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.resetearbusqueda:hover {
  background-color: #a52a8f;
}

.searchrecetacontainer {
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-21 {
  flex: 0 auto;
  display: flex;
}

.field-label-6 {
  color: var(--dark-slate-grey);
}

.editarsangre {
  color: var(--alice-blue);
  text-transform: uppercase;
  background-color: #c53916;
  border-radius: 4px;
  justify-content: center;
  margin-top: 11px;
  margin-bottom: 11px;
  margin-left: 21px;
  padding: 10px 18px;
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.editarsangre:hover {
  background-color: #880c0c;
}

.editarorina {
  color: var(--alice-blue);
  text-transform: uppercase;
  background-color: #a7a100;
  border-radius: 4px;
  justify-content: center;
  margin-top: 11px;
  margin-bottom: 11px;
  margin-left: 21px;
  padding: 10px 18px;
  font-size: 15px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.editarorina:hover {
  background-color: #696302;
}

.derivante {
  display: flex;
}

.editarderivante {
  border-radius: 3px;
  margin-left: 10px;
  padding: 7px 9px;
  font-size: 13px;
  line-height: 15px;
}

.paragraph-4 {
  text-shadow: 0 1px 1px #0000008c;
  margin-bottom: 0;
}

.areaseleccioanble {
  color: var(--alice-blue);
  text-align: left;
  background-color: #5aa380;
  border-radius: 5px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  height: 76px;
  padding: 9px 16px 9px 12px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: flex;
}

.areaseleccioanble:hover {
  color: var(--alice-blue);
  background-color: #388a47;
}

.areaseleccioanble.receta-rapida {
  background-color: var(--orchid);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: auto;
}

.areaseleccioanble.receta-rapida:hover {
  background-color: var(--dark-orchid);
}

.sangrecolumn {
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr;
}

.sangre-container {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  align-items: flex-start;
  margin-bottom: 64px;
  display: flex;
}

.grid-listado-items {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr;
  align-content: start;
  justify-items: stretch;
}

.grid-listado-items.records {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.sangre-item-title {
  border-top: 1px solid var(--dim-grey);
  text-align: right;
  margin-bottom: 0;
  padding-top: 6px;
  padding-right: 8px;
  font-weight: 700;
}

.sangre-item-title.separator {
  background-color: var(--dim-grey);
  color: #fff;
  padding: 4px;
}

.sangre-item-title.separator.empty {
  color: #fff0;
  background-color: #f000;
  border-top: 1px solid #727272;
}

.sangre-item-title.headerfecha {
  background-color: var(--dark-orchid);
  color: var(--alice-blue);
  text-align: left;
  border-top: 0 #b8b8b800;
  flex: none;
  align-self: auto;
  height: 40px;
  padding-top: 14px;
  padding-left: 9px;
  font-weight: 700;
  line-height: 16px;
}

.sangre-item-title.records {
  border-left: 1px solid var(--dim-grey);
  border-top-color: var(--dim-grey);
  text-align: left;
  padding-left: 8px;
  font-weight: 400;
}

.sangre-item-title.records.conclusiones {
  width: 20ch;
  font-size: 14px;
  line-height: 18px;
}

.sangre-item-title.columna-fondo {
  background-color: #fff;
  padding-left: 8px;
}

.sangre-small-container {
  justify-content: space-between;
  display: flex;
}

.sangre-comartir {
  background-color: var(--dark-slate-blue);
  color: var(--alice-blue);
  background-image: url('../images/share.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: 0;
  padding: 7px 12px 10px 38px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.sangre-comartir:hover {
  background-color: var(--black);
}

.container-4 {
  display: block;
}

.dates-container {
  display: flex;
}

.fecha-edit {
  background-color: var(--dark-orchid);
  align-items: center;
  display: flex;
}

.button-2 {
  background-image: url('../images/edit.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  border-radius: 4px;
}

.editdate-sangre {
  background-color: var(--medium-sea-green);
  background-image: url('../images/edit.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  border-radius: 4px;
  width: 25px;
  height: 25px;
  padding: 9px;
}

.editdate-sangre:hover {
  background-color: var(--dark-green);
}

.sangre-button-container {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  display: flex;
}

.sangrecrear {
  background-color: var(--medium-sea-green);
  color: var(--alice-blue);
  background-image: url('../images/plusicon.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: 0;
  padding: 7px 12px 10px 38px;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.sangrecrear:hover {
  background-color: var(--dark-green);
}

.grid {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.sangre-field-container.fecha {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.sangre-label.short {
  width: 250px;
}

.sangreform-field {
  color: var(--dark-slate-grey);
  border: 2px solid #72727261;
  border-radius: 4px;
  flex: 1;
  min-height: 45px;
  margin-left: auto;
  margin-right: 10px;
  padding: 17px 14px;
  font-size: 17px;
  display: block;
}

.sangreform-field:hover {
  background-color: #f0f0f0;
}

.sangreform-field:focus {
  border-color: var(--dodger-blue);
  background-color: #f1f1f1;
}

.sangreform-field.dropdown {
  border-radius: 4px;
  width: 170px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 27px 5px 15px;
  line-height: 24px;
}

.sangreform-field.dropdown.mascota {
  width: 100%;
}

.sangreform-field.short {
  flex: none;
  align-self: flex-start;
  width: 150px;
  margin-left: 0;
  margin-right: auto;
}

.sangrewrapper {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 33px;
}

.sangre-titleedit {
  color: var(--dark-orchid);
  border-bottom: 1px solid #898989;
  margin-top: 38px;
  margin-bottom: 19px;
  padding-bottom: 5px;
}

.space {
  border-top: 1px solid #898989;
  height: 35px;
  margin-top: 22px;
  padding-top: 20px;
  padding-bottom: 0;
}

.noasistir {
  color: var(--dark-slate-grey);
  text-align: center;
  border-radius: 20px;
  width: 100%;
  margin-top: 23px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px;
  font-size: 24px;
  font-weight: 500;
  line-height: 31px;
}

.quick-stack2 {
  margin-left: auto;
  margin-right: auto;
}

.vete {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.form-virtual {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.form-enviar {
  border-radius: 5px;
  margin-top: 16px;
}

.form-fields {
  color: var(--dark-slate-grey);
  border-radius: 10px;
  min-height: 60px;
  padding: 27px;
}

@media screen and (min-width: 1280px) {
  .login-field {
    border-radius: 5px;
  }

  .body {
    background-color: #ddeaf3;
    background-image: none;
  }

  .body.cliente {
    background-color: #fff;
  }

  .admin-form-field.buscar {
    width: 250px;
  }

  .admin-submit-button {
    margin-left: 0;
  }

  .admin-submit-button:hover {
    background-color: var(--steel-blue);
  }

  .hero.turnos {
    max-width: 85vw;
    margin-left: auto;
    margin-right: auto;
  }

  .title.pasos.cliente {
    color: #000;
    margin-top: 67px;
  }

  .navbar {
    background-color: #0098db1f;
  }

  .formulario-busqueda {
    border-bottom-style: none;
    border-bottom-width: 0;
  }

  .div-block-2 {
    flex-direction: column;
  }

  .listado {
    margin-top: 0;
  }

  .repeat-row-historias {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ver-historia {
    background-color: var(--dodger-blue);
    color: #34343400;
    background-image: url('../images/new-eye.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    padding: 20px 21px;
    font-size: 1px;
    display: block;
  }

  .ver-historia:hover {
    background-color: var(--steel-blue);
  }

  .petownerrheading {
    margin-left: 0;
    font-size: 23px;
    font-weight: 400;
  }

  .add-form-page {
    padding-top: 0;
    padding-bottom: 0;
  }

  .form-submit-button {
    background-color: var(--medium-sea-green);
  }

  .form-submit-button:hover {
    background-color: var(--dark-green);
  }

  .agregarotramascota, .cargarhistoria {
    background-color: var(--dodger-blue);
    color: #34343400;
    background-image: url('../images/new-eye.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    padding: 20px 21px;
    font-size: 1px;
    display: block;
  }

  .repeat-agregar-mascota {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .modulodatos {
    display: flex;
  }

  .repeat-reports-historia.cliente {
    border-bottom-style: solid;
    border-bottom-width: 2px;
  }

  .repeat-select-row {
    margin-bottom: 14px;
  }

  .section-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .informe-container {
    flex: 1;
    padding-left: 5px;
  }

  .informedatos {
    flex-direction: column;
    flex: 1;
    display: flex;
  }

  .add-new-informe-container {
    justify-content: space-between;
  }

  .addnewreport {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .addnewreport.receta {
    margin-left: 0;
    margin-right: 0;
  }

  .editarmascota, .editar-persona {
    margin-bottom: 11px;
    font-size: 14px;
  }

  .button-editar-informe {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .div-block-10, .div-block-11 {
    text-align: center;
  }

  .div-block-13 {
    width: 500px;
  }

  .profesores-wrapper {
    width: 322px;
  }

  .first-row {
    flex: 1;
    justify-content: center;
    align-self: auto;
  }

  .div-block-19, .schedule {
    margin-left: auto;
    margin-right: auto;
  }

  .botones {
    padding-top: 0;
    padding-bottom: 0;
  }

  .botoneras {
    justify-content: space-between;
  }

  .resetearbusqueda {
    margin-left: 0;
  }

  .resetearbusqueda:hover {
    background-color: var(--steel-blue);
  }

  .editarsangre, .editarorina {
    margin-bottom: 11px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1440px) {
  .div-block-10, .div-block-11 {
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .button.cancel {
    color: #92459b00;
    text-align: right;
    background-image: url('../images/plusicon.svg');
    background-position: 50%;
    background-size: 20px;
    margin-left: 170px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1px;
    display: inline-block;
  }

  .mobile-nav-link {
    width: 100%;
  }

  .navigation-container-mob {
    justify-content: space-between;
  }

  .navigation-mob {
    border-bottom: 1px solid #4455671c;
    flex-direction: row;
    justify-content: center;
    height: 85px;
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
  }

  .menu-mob {
    color: #000;
    background-color: #fafafa;
    border-radius: 100px;
    font-size: 22px;
  }

  .menu-mob.w--open {
    background-color: #824bf1;
  }

  .navigation-left {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .mobile-nav {
    background-color: #fff;
    padding-top: 15px;
    box-shadow: 42px 42px 55px #20355a17;
  }

  .dropdown-link-mobile {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .dropdown-list {
    background-color: #fff;
  }

  .navigation {
    display: none;
  }

  .admin-navbar-image {
    margin-top: 15px;
  }

  .plugin-title-form-historia {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .admin-form-field {
    width: 320px;
    margin-right: 0;
  }

  .admin-form-field.dropdown {
    margin-left: 12px;
    margin-right: 0;
  }

  .admin-submit-button {
    color: #0098db00;
    background-image: url('../images/search.svg');
    background-position: 50%;
    background-size: 20px;
    margin-left: 12px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 1px;
    display: block;
  }

  .hero.turnos {
    max-width: 100vw;
  }

  .navlink {
    color: var(--alice-blue);
  }

  .navlink:hover {
    color: #f3ff0a;
  }

  .navlink:visited {
    color: #fbff00;
  }

  .navbar {
    border-radius: 0;
    padding-top: 5px;
    padding-bottom: 4px;
  }

  .icon-5 {
    font-size: 50px;
  }

  .container-3 {
    width: 90%;
  }

  .nav-menu-2 {
    background-color: var(--dodger-blue);
    border-radius: 10px;
    margin-top: 11px;
    margin-left: 14px;
  }

  .listado {
    width: 90%;
    margin-left: 40px;
  }

  .repeat-row-historias {
    flex-direction: row;
    align-items: flex-start;
    display: block;
  }

  .petownerrheading {
    margin: 10px 6px 2px 1px;
  }

  .add-form-page {
    flex-direction: row;
    align-items: flex-start;
    display: block;
  }

  .form-field-add {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .form-field-add.dropdown {
    margin-left: 12px;
    margin-right: 0;
  }

  .form-field-add.dropdown.mascota {
    margin-left: 0;
  }

  .form-submit-button {
    color: #fff;
    margin-left: 0;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 15px;
    display: block;
  }

  .repeat-agregar-mascota {
    flex-direction: row;
    align-items: flex-start;
    display: flex;
  }

  .carga-datos {
    padding-bottom: 12px;
  }

  .modulodatos.siguentes {
    margin-left: 6px;
    padding-left: 6px;
  }

  .repeat-reports-historia {
    padding-bottom: 12px;
  }

  .adjuntos {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .section-2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .repeat-report-edit-container {
    padding-bottom: 12px;
  }

  .bold-text {
    font-size: 20px;
  }

  .add-new-informe-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .addnewreport {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .addnewreport.receta {
    background-position: 10px;
    justify-content: flex-start;
    margin-left: 13px;
    padding-right: 20px;
  }

  .selectable-area {
    height: 72px;
    padding-bottom: 0;
  }

  .editarmascota, .editar-persona {
    justify-content: flex-start;
    padding-right: 20px;
    font-size: 13px;
  }

  .editar-persona.share {
    margin-bottom: 5px;
  }

  .editar-persona-mascota-container {
    flex: 1;
  }

  .editar-button-container {
    flex: 1;
    justify-content: flex-start;
  }

  .button-editar-informe {
    font-size: 13px;
  }

  .form-field-add-2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .form-field-add-2.larger {
    min-height: 250px;
  }

  .file-wrapper {
    flex: 1;
  }

  .deletefile {
    margin-bottom: 0;
  }

  .image {
    width: 100px;
    height: 72px;
  }

  .imagen-gatito {
    object-fit: cover;
    object-position: 50% 50%;
    width: 120px;
    height: 120px;
  }

  .image-2 {
    width: 120px;
    height: 120px;
  }

  .div-block-8, .div-block-9 {
    width: 700px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-10 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-11 {
    width: 700px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .accordion-wrapper {
    width: auto;
  }

  .recompartir {
    margin-bottom: 0;
    margin-left: 0;
  }

  .first-row {
    flex: 1;
  }

  .adjuntodownload-2, .editname {
    margin-bottom: 0;
  }

  .schedule {
    padding-left: 0;
    padding-right: 0;
  }

  .botones {
    flex-direction: row;
    align-items: flex-start;
    display: block;
  }

  .botoneras {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .resetearbusqueda {
    color: #0098db00;
    background-image: url('../images/search.svg');
    background-position: 50%;
    background-size: 20px;
    margin-left: 12px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 1px;
    display: block;
  }

  .editarsangre, .editarorina {
    justify-content: flex-start;
    padding-right: 20px;
    font-size: 13px;
  }

  .areaseleccioanble {
    height: 72px;
    padding-bottom: 0;
  }

  .sangre-comartir, .sangrecrear {
    margin-bottom: 0;
    margin-left: 0;
  }

  .sangreform-field {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .sangreform-field.dropdown {
    margin-left: 12px;
    margin-right: 0;
  }

  .sangreform-field.dropdown.mascota {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .button {
    border-radius: 10px;
    padding: 12px 16px;
  }

  .button.cancel {
    margin-left: 51px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .login-field {
    border-radius: 10px;
  }

  .admin-navbar-image {
    margin-top: 11px;
  }

  .admin-form-field {
    margin-right: -7px;
  }

  .admin-form-field.dropdown {
    width: 140px;
    margin-right: 1px;
  }

  .admin-submit-button {
    margin-left: 15px;
  }

  .hero.turnos {
    max-width: 100vw;
  }

  .title {
    margin-top: 5px;
    margin-bottom: 3px;
    font-size: 24px;
    font-weight: 500;
  }

  .title.pasos {
    margin-bottom: 15px;
  }

  .formulario-busqueda {
    padding-left: 0;
  }

  .menu-button {
    padding: 9px;
  }

  .listado {
    margin-left: 27px;
  }

  .petownerrheading {
    margin-left: 6px;
  }

  .form-field-add {
    margin-right: -7px;
  }

  .form-field-add.dropdown {
    width: 140px;
    margin-right: 1px;
  }

  .form-field-add.dropdown.mascota {
    margin-right: -7px;
  }

  .form-submit-button {
    margin-top: 12px;
    margin-left: 0;
  }

  .column-3, .column-4, .column-5, .column-6, .column-7 {
    padding-left: 0;
    padding-right: 0;
  }

  .column-8 {
    padding-left: 0;
  }

  .agregarotramascota {
    width: 240px;
    font-size: 14px;
  }

  .cargarhistoria {
    width: 240px;
    margin-top: 21px;
    margin-left: 0;
    font-size: 14px;
  }

  .repeat-agregar-mascota {
    flex-flow: row;
    justify-content: flex-start;
    align-items: stretch;
    padding-left: 3px;
    display: flex;
  }

  .carga-datos {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 13px;
  }

  .informe-datos {
    line-height: 20px;
  }

  .modulodatos {
    flex-direction: column;
  }

  .repeat-reports-historia, .repeat-report-edit-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 13px;
  }

  .informe-container {
    padding-top: 0;
    padding-left: 0;
  }

  .informedatos {
    flex-direction: column;
  }

  .add-new-informe-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .addnewreport {
    margin-bottom: 5px;
    font-size: 13px;
  }

  .addnewreport.receta {
    background-position: 10px;
    flex: 1;
    justify-content: flex-start;
  }

  .selectable-area {
    height: 75px;
    padding-left: 5px;
  }

  .editarmascota, .editar-persona {
    flex: 1;
    justify-content: flex-start;
    font-size: 13px;
  }

  .editar-persona-mascota-container {
    flex: 0 auto;
  }

  .editar-button-container {
    flex: 0 auto;
    justify-content: space-between;
  }

  .editar-button-container.receta-list {
    place-content: flex-start;
  }

  .button-editar-informe {
    font-size: 13px;
  }

  .form-field-add-2 {
    margin-right: -7px;
  }

  .file-container {
    width: 100%;
  }

  .file-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .firstbuttoncontainer {
    align-self: stretch;
    margin-bottom: 11px;
    margin-right: 0;
  }

  .otherbuttonscontainer {
    justify-content: space-between;
    align-self: stretch;
    display: flex;
  }

  .image {
    height: 75px;
  }

  .imagen-gatito {
    width: 150px;
    height: auto;
  }

  .image-2 {
    width: 150px;
    height: 150px;
  }

  .div-block-8 {
    width: 90%;
    max-width: 90%;
  }

  .div-block-9 {
    width: 90%;
    max-width: 90%;
    margin-left: 0;
    padding: 10px;
  }

  .div-block-10 {
    max-width: 90%;
  }

  .div-block-11 {
    width: 90%;
    max-width: 90%;
  }

  .receta-title {
    font-size: 35px;
    line-height: 40px;
  }

  .div-block-14 {
    flex-direction: column;
  }

  .div-block-15 {
    margin-left: 0;
  }

  .accordion-wrapper {
    width: 100%;
    margin-top: 17px;
  }

  .accordion-item-trigger {
    justify-content: flex-start;
  }

  .recompartir {
    margin-left: 0;
  }

  .adjuntodownload-2 {
    margin-right: 0;
  }

  .paragraph-3 {
    font-size: 20px;
  }

  .botoneras {
    flex-direction: row;
    justify-content: space-between;
  }

  .resetearbusqueda {
    margin-left: 15px;
  }

  .editarsangre, .editarorina {
    flex: 1;
    justify-content: flex-start;
    font-size: 13px;
  }

  .areaseleccioanble {
    height: 75px;
    padding-left: 5px;
  }

  .sangre-comartir, .sangrecrear {
    margin-left: 0;
  }

  .sangreform-field {
    margin-right: -7px;
  }

  .sangreform-field.dropdown {
    width: 140px;
    margin-right: 1px;
  }

  .sangreform-field.dropdown.mascota {
    margin-right: -7px;
  }
}

@media screen and (max-width: 479px) {
  .button.cancel {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .module-headline {
    border-bottom: 1px #0098db45;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 9px;
  }

  .nav-link-details {
    line-height: 18px;
  }

  .navigation-dropdown.w--open {
    min-width: auto;
    margin-top: 4px;
    margin-left: auto;
    margin-right: 11px;
    left: -140px;
  }

  .dropdown-wrapper {
    min-width: auto;
  }

  .dropdown-link-mobile {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .pointer {
    display: block;
    top: -2%;
    right: -168px;
  }

  .login-field {
    border-radius: 10px;
  }

  .admin-navbar {
    text-align: center;
  }

  .admin-navbar-image {
    width: 50px;
  }

  .admin-navbar-button {
    float: none;
    display: none;
  }

  .section {
    padding-bottom: 0;
    position: relative;
  }

  .admin-form-field {
    width: 79%;
    min-height: 45px;
    margin-left: 0;
    margin-right: auto;
    padding: 10px;
    font-size: 14px;
  }

  .admin-form-field.dropdown {
    justify-content: flex-start;
    width: 70%;
    margin-left: 0;
    margin-right: auto;
    display: flex;
  }

  .admin-form-field.buscar {
    flex: 0 auto;
    width: 70%;
    margin-left: 0;
  }

  .admin-form-field.receta {
    width: 100%;
  }

  .admin-submit-button {
    color: #0098db00;
    width: 19%;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }

  .admin-submit-button.receta {
    width: 48%;
  }

  .loginscreen {
    height: 90vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero.turnos {
    max-width: 100vw;
  }

  .loginform {
    width: 250px;
    padding-top: 85px;
  }

  .title {
    margin-bottom: 4px;
    font-size: 25px;
  }

  .title.pasos {
    margin-bottom: 14px;
    font-size: 23px;
  }

  .navlink.leftsep {
    border-left-color: #72727200;
  }

  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-menu-2 {
    margin-left: 11px;
    position: absolute;
    inset: 0%;
  }

  .formulario-busqueda {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .div-block {
    flex: 1;
  }

  .div-block-2 {
    flex-direction: column;
    flex: 1;
  }

  .div-block-3 {
    flex-flow: row;
  }

  .menu-button {
    transition: background-color .2s;
  }

  .menu-button.w--open {
    background-color: var(--dodger-blue);
  }

  .form-block {
    margin-bottom: 15px;
  }

  .listado {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .repeat-row-historias {
    flex-flow: column;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
  }

  .ver-historia {
    background-size: 25px;
    width: 40px;
    height: 40px;
  }

  .petownerrheading {
    margin: 9px 5px 5px 6px;
    font-size: 17px;
    line-height: 20px;
  }

  .add-form-page {
    flex-direction: column;
    padding-bottom: 20px;
    display: block;
  }

  .form-add {
    margin-bottom: 15px;
  }

  .form-columns {
    flex-flow: wrap;
  }

  .form-field-add {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .form-field-add.dropdown {
    justify-content: flex-start;
    width: 70%;
    margin-left: 0;
    margin-right: auto;
    display: flex;
  }

  .form-field-add.receta {
    min-height: 60px;
  }

  .form-submit-button {
    color: #fff;
    flex: 1;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
  }

  .div-block-4 {
    flex-direction: column;
    flex: 0 auto;
    width: 100%;
    display: flex;
  }

  .select-headeing {
    font-size: 18px;
    line-height: 23px;
  }

  .agregarotramascota {
    color: #fff;
    background-position: 15px;
    width: 100%;
    padding-left: 42px;
    padding-right: 20px;
    font-size: 14px;
  }

  .cargarhistoria {
    color: #fff;
    background-position: 15px;
    background-size: 17px;
    width: 100%;
    margin-top: 17px;
    margin-left: 0;
    padding-left: 42px;
    padding-right: 20px;
    font-size: 15px;
  }

  .repeat-agregar-mascota {
    flex-direction: column;
    margin-bottom: 20px;
    display: flex;
  }

  .carga-datos {
    flex-direction: column;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .informe-datos, .informe-datos.reporte {
    padding-left: 10px;
    padding-right: 10px;
  }

  .modulodatos {
    align-self: stretch;
  }

  .modulodatos.siguentes {
    border-left: 0 #0098db00;
    margin-top: 3px;
    margin-left: 0;
    padding-left: 0;
  }

  .repeat-reports-historia {
    flex-direction: column;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .adjuntos {
    padding-left: 10px;
    padding-right: 10px;
  }

  .form-upload {
    width: 100%;
  }

  .upload-button-form {
    width: 100%;
    margin-top: 13px;
    display: block;
  }

  .repeat-report-edit-container {
    border-radius: 4px;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 14px;
    padding: 0 0 12px;
  }

  .searchcontainer {
    flex-flow: row;
    align-items: flex-start;
    width: 100%;
  }

  .bold-text {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 18px;
  }

  .informe-container {
    flex: 0 auto;
    align-self: stretch;
    padding-left: 0;
  }

  .add-new-informe-container {
    flex-direction: column;
    align-items: stretch;
  }

  .addnewreport {
    width: 100%;
    margin: 0 auto 13px;
    font-size: 13px;
    line-height: 20px;
  }

  .addnewreport.receta {
    text-align: center;
    background-position: 9px;
    justify-content: flex-start;
    align-self: stretch;
    margin-left: 0;
  }

  .addnewreport.nefro {
    margin-bottom: 10px;
    margin-right: auto;
  }

  .list-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .icons-container {
    align-self: flex-start;
    align-items: stretch;
    width: 100px;
    padding-right: 0;
    display: block;
  }

  .text-field {
    width: 100%;
  }

  .selectable-area {
    align-self: center;
    height: 75px;
    padding-top: 0;
    padding-left: 2px;
    padding-right: 8px;
  }

  .selectable-area.receta-rapida {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    padding-bottom: 18px;
  }

  .editarmascota, .editar-persona {
    text-align: center;
    background-image: url('../images/edit.svg');
    background-position: 9px;
    background-size: 15px;
    justify-content: flex-start;
    align-self: stretch;
    width: 100%;
    margin-left: 0;
    padding-left: 32px;
    padding-right: 11px;
    font-size: 13px;
    line-height: 20px;
  }

  .editar-persona.share {
    background-image: url('../images/share.svg');
    background-position: 10px;
    background-size: 15px;
    align-items: center;
    margin: 5px auto 10px;
  }

  .editar-button-container.receta-list {
    flex-direction: column;
  }

  .button-editar-informe {
    text-align: left;
    background-image: url('../images/edit.svg');
    background-position: 9px;
    background-size: 20px;
    border-radius: 4px;
    width: 94%;
    margin: 14px auto 13px;
    padding-left: 38px;
    font-size: 13px;
    line-height: 20px;
    display: block;
  }

  .button-editar-informe.subirvideo {
    text-align: left;
    background-image: url('../images/videoicon.svg');
    background-position: 9px;
    background-size: 20px;
    align-self: auto;
    margin-top: 1px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 38px;
  }

  .form-field-add-2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .form-field-add-2.larger {
    min-height: 300px;
  }

  .file-wrapper {
    align-items: stretch;
  }

  .deletefile {
    color: #f1f6fd00;
    background-position: 50%;
    width: 45px;
    height: 45px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    font-size: 1px;
  }

  .deletefile.receta, .deletefile.editar-receta {
    margin-left: 11px;
  }

  .otherbuttonscontainer {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .image {
    max-height: 75px;
  }

  .imagen-gatito {
    margin-bottom: 11px;
    margin-right: 0;
  }

  .container-photo-y-valores {
    flex-direction: column;
  }

  .div-block-8 {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-top: 21px;
    padding-bottom: 21px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-9 {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-10 {
    max-width: 100%;
  }

  .div-block-11 {
    width: 100%;
    max-width: 100%;
    position: static;
  }

  .receta-title {
    text-align: left;
    font-size: 28px;
    line-height: 32px;
  }

  .receta-fecha {
    text-align: left;
    padding-left: 0;
    padding-right: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    position: static;
    inset: 0% 0% auto;
  }

  .bottom, .top {
    width: 98%;
  }

  .div-block-13 {
    width: 100%;
  }

  .div-block-16 {
    flex-direction: column;
  }

  .accordion-item-content {
    flex-direction: column;
    width: auto;
    display: flex;
  }

  .accordion-item {
    width: auto;
  }

  .accordion-item-trigger {
    width: 100%;
  }

  .profesores-wrapper {
    margin-bottom: 24px;
  }

  .div-block-17 {
    width: 100%;
  }

  .heading-6 {
    font-size: 15px;
    line-height: 20px;
  }

  .recompartir {
    color: #f1f6fd00;
    background-position: 50%;
    width: 45px;
    height: 45px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 11px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    font-size: 1px;
  }

  .first-row {
    flex-direction: column;
    align-self: stretch;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 25px 20px 20px;
  }

  .adjuntodownload-2 {
    width: 100%;
    margin-right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    display: block;
  }

  .editname {
    color: #f1f6fd00;
    background-position: 50%;
    width: 45px;
    height: 45px;
    margin-right: 13px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    font-size: 1px;
  }

  .turnos {
    height: 90vh;
    padding: 6px;
  }

  .quick-stack {
    margin-bottom: 13px;
    padding: 10px 5px;
  }

  .schedule {
    margin-bottom: 90px;
    padding: 6px 6px 4px;
  }

  .local {
    width: 100%;
  }

  .paragraph-3 {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 21px;
  }

  .cartel {
    background-color: var(--dodger-blue);
    background-image: none;
    padding: 33px;
  }

  .cartelheading {
    font-size: 6vw;
    line-height: 2em;
  }

  .botones {
    flex-direction: column;
    padding-bottom: 20px;
    display: block;
  }

  .botoneras {
    flex-direction: column;
    align-items: stretch;
  }

  .lista-fecha {
    width: 100%;
  }

  .receta-texto {
    border-left-color: #0000;
  }

  .receta-fecha-listado {
    padding-bottom: 10px;
    padding-left: 18px;
  }

  .resetearbusqueda {
    color: #fff;
    background-image: none;
    width: 48%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    display: flex;
  }

  .searchrecetacontainer {
    flex-flow: column;
    align-items: flex-start;
    width: 100%;
  }

  .div-block-21 {
    justify-content: space-around;
    align-self: stretch;
    align-items: stretch;
    display: flex;
  }

  .editarsangre, .editarorina {
    text-align: center;
    justify-content: flex-start;
    align-self: stretch;
    width: 100%;
    margin-left: 0;
    padding-left: 32px;
    padding-right: 11px;
    font-size: 13px;
    line-height: 20px;
  }

  .paragraph-4 {
    margin-left: 6px;
    font-size: 16px;
    line-height: 18px;
  }

  .areaseleccioanble {
    align-self: center;
    height: 75px;
    padding-top: 0;
    padding-left: 2px;
    padding-right: 8px;
  }

  .areaseleccioanble.receta-rapida {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    padding-bottom: 18px;
  }

  .grid-listado-items.records {
    position: sticky;
  }

  .sangre-small-container {
    flex-flow: column;
  }

  .sangre-comartir {
    color: #f1f6fd;
    background-position: 11%;
    width: 48%;
    height: 45px;
    margin-top: 0;
    margin-left: 0;
    padding: 12px 11px 12px 22px;
    font-size: 16px;
  }

  .dates-container {
    overflow: scroll;
  }

  .sangre-button-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
    align-self: stretch;
    align-items: center;
    margin-bottom: 13px;
  }

  .sangrecrear {
    color: #f1f6fd;
    background-position: 9%;
    justify-content: center;
    align-items: center;
    width: 48%;
    height: 45px;
    margin-top: 0;
    margin-left: 0;
    padding: 12px 2px 12px 20px;
    font-size: 16px;
  }

  .sangreform-field {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .sangreform-field.dropdown {
    justify-content: flex-start;
    width: 70%;
    margin-left: 0;
    margin-right: auto;
    display: flex;
  }

  .sangreform-field.receta {
    min-height: 60px;
  }

  .sangrewrapper {
    grid-template-columns: 1fr 1fr;
  }

  .noasistir {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 32px;
    padding: 20px;
    font-size: 20px;
    line-height: 26px;
  }

  .quick-stack2 {
    margin-bottom: 13px;
    padding: 10px 5px;
  }

  .vete, .form-virtual {
    width: 100%;
  }
}

#w-node-_29d18ec8-aa26-91d8-3984-c5b6eb18521f-26f3f3a7 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_7d427209-289a-e8d0-fbbe-790a0dbcce16-c226131c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e434dee7-fbef-4b9c-b6d6-c58dbbc849e7-c226131c, #w-node-b96ec3ab-3459-a3c0-3aa2-86d1966ecba7-c226131c, #w-node-c21f8883-10c2-6a03-0aaa-567c3a1005ff-c226131c, #w-node-a681cf24-41b5-58bd-4e73-2caf5c50d272-c226131c, #w-node-_45dcbaf3-3657-a25d-c3f3-b2e13dc3edf3-c226131c {
  place-self: stretch stretch;
}

@media screen and (max-width: 991px) {
  #w-node-_29d18ec8-aa26-91d8-3984-c5b6eb18521f-26f3f3a7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_29d18ec8-aa26-91d8-3984-c5b6eb18521f-26f3f3a7 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}