@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alata&family=Poppins:wght@100;200;300;500;600;700;900&family=Roboto+Slab:wght@100;300;400;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20,400,0..1,200");
/* line 2, vendor/bundle/ruby/3.3.0/gems/simple_calendar-3.0.4/app/assets/stylesheets/simple_calendar.scss */
.simple-calendar table {
  -webkit-border-horizontal-spacing: 0px;
  -webkit-border-vertical-spacing: 0px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #dddddd;
  border-collapse: collapse;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
}

/* line 13, vendor/bundle/ruby/3.3.0/gems/simple_calendar-3.0.4/app/assets/stylesheets/simple_calendar.scss */
.simple-calendar tr {
  border-collapse: collapse;
}

/* line 17, vendor/bundle/ruby/3.3.0/gems/simple_calendar-3.0.4/app/assets/stylesheets/simple_calendar.scss */
.simple-calendar th {
  padding: 6px;
  border-bottom: 2px solid #dddddd;
  border-collapse: collapse;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-top: 0px none #333333;
  box-sizing: border-box;
  text-align: left;
}

/* line 28, vendor/bundle/ruby/3.3.0/gems/simple_calendar-3.0.4/app/assets/stylesheets/simple_calendar.scss */
.simple-calendar td {
  padding: 6px;
  vertical-align: top;
  width: 14%;
  border: 1px solid #ddd;
  border-top-color: #dddddd;
  border-top-style: solid;
  border-top-width: 1px;
  border-right-color: #dddddd;
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: #dddddd;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-color: #dddddd;
  border-left-style: solid;
  border-left-width: 1px;
}

/* line 48, vendor/bundle/ruby/3.3.0/gems/simple_calendar-3.0.4/app/assets/stylesheets/simple_calendar.scss */
.simple-calendar .calendar-heading nav {
  display: inline-block;
}

/* line 52, vendor/bundle/ruby/3.3.0/gems/simple_calendar-3.0.4/app/assets/stylesheets/simple_calendar.scss */
.simple-calendar .day {
  height: 80px;
}

/* line 64, vendor/bundle/ruby/3.3.0/gems/simple_calendar-3.0.4/app/assets/stylesheets/simple_calendar.scss */
.simple-calendar .today {
  background: #FFFFC0;
}

/* line 73, vendor/bundle/ruby/3.3.0/gems/simple_calendar-3.0.4/app/assets/stylesheets/simple_calendar.scss */
.simple-calendar .prev-month {
  background: #DDD;
}

/* line 76, vendor/bundle/ruby/3.3.0/gems/simple_calendar-3.0.4/app/assets/stylesheets/simple_calendar.scss */
.simple-calendar .next-month {
  background: #DDD;
}

/* line 3, app/assets/stylesheets/_dialog.scss */
dialog {
  width: fit-content;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* line 9, app/assets/stylesheets/_dialog.scss */
dialog section > header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
}

/* line 16, app/assets/stylesheets/_dialog.scss */
dialog section > header > h3 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.5rem !important;
  text-align: left !important;
}

/* line 21, app/assets/stylesheets/_dialog.scss */
dialog section > header > h3 > small {
  margin-left: 1vw !important;
  display: inline-block !important;
}

/* line 27, app/assets/stylesheets/_dialog.scss */
dialog section > header > button {
  color: #000000;
  background-color: transparent;
  border: none;
  padding: 0 0 0 1vw;
  cursor: pointer;
  font-size: 2vw;
  font-family: "Poppins", sans-serif;
}

/* line 36, app/assets/stylesheets/_dialog.scss */
dialog section > header > button:hover {
  font-weight: bolder;
}

/* line 42, app/assets/stylesheets/_dialog.scss */
dialog section > .main {
  padding-top: 1vw;
}

/* line 45, app/assets/stylesheets/_dialog.scss */
dialog section > .main h4 {
  margin-bottom: 1vw;
}

/* line 51, app/assets/stylesheets/_dialog.scss */
dialog section > footer button {
  color: #000000;
  background-color: #dddddd;
  border: none;
  padding: 5px;
  cursor: pointer;
}

/* line 58, app/assets/stylesheets/_dialog.scss */
dialog section > footer button:hover {
  background-color: #cacaca;
}

/* line 62, app/assets/stylesheets/_dialog.scss */
dialog section > footer button > span.close {
  vertical-align: middle;
}

/* line 69, app/assets/stylesheets/_dialog.scss */
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

/* line 3, app/assets/stylesheets/_tooltip.scss */
.with_tooltip {
  display: inline-block;
  position: relative;
  text-align: left;
}

/* line 10, app/assets/stylesheets/_tooltip.scss */
.with_tooltip:hover > .top {
  display: block;
}

/* line 15, app/assets/stylesheets/_tooltip.scss */
.with_tooltip > .tooltip {
  min-width: 200px;
  max-width: 500px;
  width: max-content;
  left: 30%;
  transform: translate(-30%, -100%);
  padding: 10px 20px;
  color: #ffffff;
  background-color: #009cdc;
  font-weight: normal;
  font-size: 14px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  display: none;
}

/* line 33, app/assets/stylesheets/_tooltip.scss */
.with_tooltip > .tooltip.top {
  top: -20px;
}

/* line 36, app/assets/stylesheets/_tooltip.scss */
.with_tooltip > .tooltip.bottom {
  top: 4vw;
  transform: translate(-30%, 0%);
}

/* line 41, app/assets/stylesheets/_tooltip.scss */
.with_tooltip > .tooltip > h4 {
  font-size: 1.3vw;
  margin-top: 0;
  margin-bottom: 1vw;
}

/* line 47, app/assets/stylesheets/_tooltip.scss */
.with_tooltip > .tooltip dl {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 0 1vw;
  margin: 0;
}

@media (max-width: 1024px) {
  /* line 47, app/assets/stylesheets/_tooltip.scss */
  .with_tooltip > .tooltip dl {
    grid-template-columns: 7vw auto;
    grid-gap: 0 7vw;
    margin-top: 4vw;
  }
}

/* line 62, app/assets/stylesheets/_tooltip.scss */
.with_tooltip > .tooltip dl dd {
  margin-left: 0;
  line-height: 2vw;
}

/* line 68, app/assets/stylesheets/_tooltip.scss */
.with_tooltip > .tooltip > i {
  position: absolute;
  top: 100%;
  left: 30%;
  margin-left: -15px;
  width: 30px;
  height: 15px;
  overflow: hidden;
}

/* line 77, app/assets/stylesheets/_tooltip.scss */
.with_tooltip > .tooltip > i:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #009cdc;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* line 6, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

/* line 10, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) *:focus {
  outline: none;
}

/* line 14, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vw;
  background-color: #51dacf;
  color: #000000;
}

@media (max-width: 1024px) {
  /* line 14, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > header {
    text-align: center;
    flex-flow: column nowrap;
  }
}

/* line 30, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > header a.brand {
  text-decoration: none;
}

@media (max-width: 1024px) {
  /* line 30, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > header a.brand {
    display: block;
    margin: 5vw auto 5vw auto;
  }
}

/* line 38, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > header a.brand > img:first-child {
  width: 9vw;
}

@media (max-width: 1024px) {
  /* line 38, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > header a.brand > img:first-child {
    width: 36vw;
  }
}

/* line 48, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > header > nav div:last-child {
  display: flex;
  align-items: flex-end;
  line-height: 1.3vw;
  font-size: 1.3vw;
  gap: 0.5vw;
}

@media (max-width: 1024px) {
  /* line 48, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > header > nav div:last-child {
    align-items: center;
    font-size: 6vw;
    margin-bottom: 2vw;
  }
}

/* line 60, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > header > nav div:last-child > a {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
}

/* line 65, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > header > nav div:last-child > a > .material-symbols-sharp {
  vertical-align: middle;
}

/* line 70, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > header > nav div:last-child > form > button {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0 0 -0.25rem 0;
  vertical-align: middle;
  text-align: left;
}

/* line 86, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main {
  padding-top: 2vw;
}

@media (max-width: 1024px) {
  /* line 86, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main {
    font-size: 4vw;
  }
}

/* line 93, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main h1, body.patient:not(.pages) > main h2, body.patient:not(.pages) > main h3, body.patient:not(.pages) > main h4, body.patient:not(.pages) > main h5 {
  font-family: "Alata", sans-serif;
  text-align: center;
}

/* line 97, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main h1 > small, body.patient:not(.pages) > main h2 > small, body.patient:not(.pages) > main h3 > small, body.patient:not(.pages) > main h4 > small, body.patient:not(.pages) > main h5 > small {
  font-family: "Roboto Slab", serif;
  display: block;
  font-weight: 100;
}

/* line 104, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main h1 {
  font-size: 4vw;
  margin-left: auto;
  margin-right: auto;
  width: 60vw;
}

@media (max-width: 1024px) {
  /* line 104, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main h1 {
    font-size: 8vw;
    width: auto;
    line-height: 1;
    margin: 16vw 5vw;
  }
}

/* line 116, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main h1 > small {
  margin-top: 2vw;
  font-size: 2vw;
}

@media (max-width: 1024px) {
  /* line 116, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main h1 > small {
    font-size: 5vw;
    margin: 11vw 7vw;
    line-height: 1.5;
  }
}

/* line 127, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main h2 {
  font-size: 3vw;
}

@media (max-width: 1024px) {
  /* line 127, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main h2 {
    font-size: 6vw;
  }
}

/* line 133, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main h2 > small {
  margin-top: 1vw;
  font-size: 1.5vw;
}

@media (max-width: 1024px) {
  /* line 133, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main h2 > small {
    margin: 2vw 7vw;
    font-size: 4vw;
  }
}

/* line 143, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main h3 {
  font-size: 2.5vw;
}

/* line 146, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main h3 > small {
  margin-top: 1vw;
  font-size: 1.25vw;
}

/* line 153, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
  padding: 2vw;
}

@media (max-width: 1024px) {
  /* line 153, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section {
    text-align: center;
    flex-flow: column-reverse nowrap;
  }
  /* line 164, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section ul {
    text-align: left;
    list-style: disc inside;
    padding: 0 0 0 3vw;
    margin: 8vw auto 0 auto;
    font-size: 4vw;
    width: fit-content;
  }
  /* line 173, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section dl {
    text-align: left;
  }
}

/* line 178, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col {
  width: 45vw;
}

/* line 183, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col:first-child > a:nth-child(n+1) {
  display: inline-block;
  color: #000000;
}

/* line 187, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col:first-child > a:nth-child(n+1) > span {
  font-size: 4vw;
}

@media (max-width: 1024px) {
  /* line 187, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section > .col:first-child > a:nth-child(n+1) > span {
    font-size: 14vw;
  }
}

/* line 2, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col:first-child > a:nth-child(n+1) > span.secondary {
  color: #C1C1C1;
}

/* line 5, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col:first-child > a:nth-child(n+1) > span.primary {
  color: #000000;
}

/* line 8, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col:first-child > a:nth-child(n+1) > span.warning {
  color: #FE9E12;
}

/* line 11, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col:first-child > a:nth-child(n+1) > span.alert {
  color: #F70019;
}

/* line 14, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col:first-child > a:nth-child(n+1) > span.success {
  color: #168f82;
}

/* line 199, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col > p {
  font-weight: 300;
  display: flex;
  align-items: center;
}

/* line 204, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col > p::before {
  content: "\e88e";
  font-family: 'Material Symbols Sharp';
  color: inherit;
  font-size: 1.5vw;
  margin-right: 1vw;
}

@media (max-width: 1024px) {
  /* line 204, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section > .col > p::before {
    font-size: 5vw;
  }
}

/* line 2, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col > p.secondary {
  color: #C1C1C1;
}

/* line 5, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col > p.primary {
  color: #000000;
}

/* line 8, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col > p.warning {
  color: #FE9E12;
}

/* line 11, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col > p.alert {
  color: #F70019;
}

/* line 14, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col > p.success {
  color: #168f82;
}

@media (max-width: 1024px) {
  /* line 178, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section > .col {
    width: 100%;
  }
  /* line 220, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section > .col:first-child {
    margin-bottom: 16vw;
  }
}

/* line 225, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col h1, body.patient:not(.pages) > main > turbo-frame#patient > section > .col h2, body.patient:not(.pages) > main > turbo-frame#patient > section > .col h3, body.patient:not(.pages) > main > turbo-frame#patient > section > .col h4, body.patient:not(.pages) > main > turbo-frame#patient > section > .col h5 {
  text-align: left;
}

@media (max-width: 1024px) {
  /* line 225, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section > .col h1, body.patient:not(.pages) > main > turbo-frame#patient > section > .col h2, body.patient:not(.pages) > main > turbo-frame#patient > section > .col h3, body.patient:not(.pages) > main > turbo-frame#patient > section > .col h4, body.patient:not(.pages) > main > turbo-frame#patient > section > .col h5 {
    text-align: center;
  }
}

/* line 235, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section > .col > h2 {
  margin-top: 0;
}

@media (max-width: 1024px) {
  /* line 235, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section > .col > h2 {
    margin-top: 10vw;
    margin-bottom: 5vw;
  }
}

/* line 251, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > dialog#popup {
  border: 1px solid #f9f9f9;
  border-radius: 2vw;
}

/* line 255, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child {
  padding: 1vw;
}

/* line 258, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > header {
  justify-content: center;
}

/* line 261, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > header > .material-symbols-sharp {
  font-size: 7vw;
  font-weight: 900;
}

@media (max-width: 1024px) {
  /* line 261, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > dialog#popup > section:first-child > header > .material-symbols-sharp {
    font-size: 21vw;
    margin: -5vw 0 -4vw 0;
  }
}

/* line 2, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > header > .material-symbols-sharp.secondary {
  color: #C1C1C1;
}

/* line 5, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > header > .material-symbols-sharp.primary {
  color: #000000;
}

/* line 8, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > header > .material-symbols-sharp.warning {
  color: #FE9E12;
}

/* line 11, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > header > .material-symbols-sharp.alert {
  color: #F70019;
}

/* line 14, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > header > .material-symbols-sharp.success {
  color: #168f82;
}

/* line 274, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  margin: 0;
}

@media (max-width: 1024px) {
  /* line 274, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 1vw auto 0 auto;
  }
}

/* line 16, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl dt {
  display: flex;
  align-items: center;
}

/* line 20, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 20, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl dt > span {
    font-size: 6vw;
  }
}

/* line 27, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl dt:nth-of-type(1) {
  color: #7A7D7E;
}

/* line 31, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl dt:nth-of-type(n+2) {
  color: #168f82;
}

/* line 36, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

@media (max-width: 1024px) {
  /* line 36, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl dd {
    font-size: 4vw;
  }
}

/* line 49, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl dd.error {
  font-weight: 500;
}

/* line 53, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl dd > code {
  font-size: inherit;
}

/* line 60, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl:has(.degree) dd:nth-of-type(2) {
  color: #7A7D7E;
  font-size: smaller;
}

@media (max-width: 1024px) {
  /* line 60, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl:has(.degree) dd:nth-of-type(2) {
    font-size: 3vw;
  }
}

/* line 69, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl:has(.degree) dd > .degree {
  font-weight: 200;
}

/* line 73, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > .main > dl:has(.degree) dd > .name {
  font-weight: 600;
}

/* line 279, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main > dialog#popup > section:first-child > footer {
  margin-top: 2vw;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5vw;
}

@media (max-width: 1024px) {
  /* line 279, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main > dialog#popup > section:first-child > footer {
    margin-top: 7vw;
    font-size: 4vw;
  }
}

/* line 292, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main .callout, body.patient:not(.pages) > main .flash {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  padding: 1vw;
  margin-bottom: 2vw;
  position: relative;
}

/* line 299, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main .callout > h5, body.patient:not(.pages) > main .flash > h5 {
  text-align: left;
  font-size: 2vw;
  margin-top: 0;
}

@media (max-width: 1024px) {
  /* line 299, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main .callout > h5, body.patient:not(.pages) > main .flash > h5 {
    font-size: 5vw;
  }
}

/* line 308, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main .callout > hr, body.patient:not(.pages) > main .flash > hr {
  border-color: white;
}

/* line 312, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main .callout button.close, body.patient:not(.pages) > main .flash button.close {
  position: absolute;
  top: 1vw;
  right: 1vw;
  border: none;
  background: transparent;
  font-size: 2vw;
  color: white;
}

/* line 322, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main .callout.alert, body.patient:not(.pages) > main .flash.alert {
  background-color: #F70019;
}

/* line 326, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main .callout.success, body.patient:not(.pages) > main .flash.success {
  background-color: #168f82;
}

@media (max-width: 1024px) {
  /* line 331, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main form {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
}

/* line 7, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form .field_with_errors {
  border-color: #E83731 !important;
}

/* line 10, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group {
  display: flex;
  margin-bottom: 1vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
}

/* line 18, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

@media (max-width: 1024px) {
  /* line 10, app/assets/stylesheets/_form.scss */
  body.patient:not(.pages) > main form > .input-group {
    width: 60vw;
    align-items: center;
  }
  /* line 27, app/assets/stylesheets/_form.scss */
  body.patient:not(.pages) > main form > .input-group:nth-of-type(1) {
    margin-top: 10vw;
  }
}

/* line 32, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group:last-child {
  margin-bottom: 0;
}

/* line 36, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 40, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  margin-right: 1vw;
  line-height: 1;
}

/* line 47, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group > label {
  display: none;
}

/* line 50, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
  margin-left: .5rem;
}

/* line 57, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group > input[type="text"], body.patient:not(.pages) > main form > .input-group > input[type="number"], body.patient:not(.pages) > main form > .input-group > input[type="email"], body.patient:not(.pages) > main form > .input-group > input[type="tel"], body.patient:not(.pages) > main form > .input-group > input[type="password"], body.patient:not(.pages) > main form > .input-group > textarea {
  border: none;
  background-color: transparent;
  width: 100%;
  padding: 0vw;
  font-size: larger;
}

@media (max-width: 1024px) {
  /* line 57, app/assets/stylesheets/_form.scss */
  body.patient:not(.pages) > main form > .input-group > input[type="text"], body.patient:not(.pages) > main form > .input-group > input[type="number"], body.patient:not(.pages) > main form > .input-group > input[type="email"], body.patient:not(.pages) > main form > .input-group > input[type="tel"], body.patient:not(.pages) > main form > .input-group > input[type="password"], body.patient:not(.pages) > main form > .input-group > textarea {
    text-align: center;
    font-size: 5vw;
  }
}

/* line 69, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group > input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

/* line 74, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 78, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group > textarea {
  font-size: medium;
}

/* line 82, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 90, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset > legend {
  font-weight: 300;
}

/* line 94, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group {
  display: flex;
  margin-bottom: 2vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
  gap: 0.5vw;
  padding-top: 0;
  padding-bottom: 0;
}

/* line 132, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

/* line 138, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group:last-child {
  margin-bottom: 0;
}

/* line 142, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 146, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group:has(label) {
  align-items: center;
}

/* line 150, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* line 157, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group > label {
  display: none;
}

/* line 160, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
}

/* line 166, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group > input[type="text"], body.patient:not(.pages) > main form > fieldset .input-group > input[type="number"], body.patient:not(.pages) > main form > fieldset .input-group > input[type="file"], body.patient:not(.pages) > main form > fieldset .input-group > input[type="email"], body.patient:not(.pages) > main form > fieldset .input-group > input [type="tel"], body.patient:not(.pages) > main form > fieldset .input-group > input [type="password"], body.patient:not(.pages) > main form > fieldset .input-group > input [type="time"], body.patient:not(.pages) > main form > fieldset .input-group > input [type="date"], body.patient:not(.pages) > main form > fieldset .input-group > textarea, body.patient:not(.pages) > main form > fieldset .input-group > select {
  border: none;
  background-color: transparent;
  color: inherit;
  width: 100%;
  padding: 0;
  font-size: larger;
}

/* line 175, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 179, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group > textarea {
  font-size: medium;
}

/* line 183, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group > input[type="time"], body.patient:not(.pages) > main form > fieldset .input-group input[type="date"] {
  width: auto;
}

/* line 187, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 100, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset > .help {
  color: #7A7D7E;
  font-weight: 300;
  font-size: 0.8rem;
}

/* line 106, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > fieldset button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1024px) {
  /* line 112, app/assets/stylesheets/_form.scss */
  body.patient:not(.pages) > main form > .actions {
    margin-top: 10vw;
  }
}

/* line 117, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main form > .actions > input[type="submit"] {
  padding: 1vw 2vw;
  background-color: #000000;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.4vw;
}

@media (max-width: 1024px) {
  /* line 117, app/assets/stylesheets/_form.scss */
  body.patient:not(.pages) > main form > .actions > input[type="submit"] {
    padding: 4vw 8vw;
    font-size: 6vw;
  }
}

/* line 184, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main form > .actions > input[type="submit"][disabled] {
  background-color: #dddddd;
  color: #cacaca;
  cursor: not-allowed;
}

/* line 334, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main form > .input-group {
  width: 42vw;
}

@media (max-width: 1024px) {
  /* line 334, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main form > .input-group {
    width: 77vw;
  }
}

/* line 341, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main form > input[type="text"], body.patient:not(.pages) > main form > input[type="email"], body.patient:not(.pages) > main form > input[type="tel"], body.patient:not(.pages) > main form > input[type="password"], body.patient:not(.pages) > main form > textarea {
  width: 42vw;
}

@media (max-width: 1024px) {
  /* line 341, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main form > input[type="text"], body.patient:not(.pages) > main form > input[type="email"], body.patient:not(.pages) > main form > input[type="tel"], body.patient:not(.pages) > main form > input[type="password"], body.patient:not(.pages) > main form > textarea {
    width: 100%;
  }
}

/* line 349, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main p {
  font-family: "Roboto Slab", serif;
}

/* line 2, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main p.secondary {
  color: #C1C1C1;
}

/* line 5, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main p.primary {
  color: #000000;
}

/* line 8, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main p.warning {
  color: #FE9E12;
}

/* line 11, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main p.alert {
  color: #F70019;
}

/* line 14, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main p.success {
  color: #168f82;
}

/* line 354, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > main .material-symbols-sharp {
  font-size: 2vw;
  font-weight: 900;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  /* line 354, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > main .material-symbols-sharp {
    font-size: 6vw;
  }
}

/* line 2, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main .material-symbols-sharp.secondary {
  color: #C1C1C1;
}

/* line 5, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main .material-symbols-sharp.primary {
  color: #000000;
}

/* line 8, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main .material-symbols-sharp.warning {
  color: #FE9E12;
}

/* line 11, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main .material-symbols-sharp.alert {
  color: #F70019;
}

/* line 14, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main .material-symbols-sharp.success {
  color: #168f82;
}

/* line 366, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > footer {
  position: relative;
  background-color: #EDEEEB;
  margin-top: 4vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2vw;
}

@media (max-width: 1024px) {
  /* line 366, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > footer {
    min-height: 4vw;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

/* line 386, app/assets/stylesheets/layout/_patient.scss */
body.patient:not(.pages) > footer > .copyright {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: .5vw;
  color: #000000;
  padding-right: .5vw;
  padding-bottom: .5vw;
}

@media (max-width: 1024px) {
  /* line 386, app/assets/stylesheets/layout/_patient.scss */
  body.patient:not(.pages) > footer > .copyright {
    font-size: 3vw;
  }
}

/* line 4, app/assets/stylesheets/layout/_signed.scss */
body.signed {
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 1.1vw;
}

@media (min-width: 1920px) {
  /* line 4, app/assets/stylesheets/layout/_signed.scss */
  body.signed {
    font-size: .85vw;
  }
}

/* line 12, app/assets/stylesheets/layout/_signed.scss */
body.signed *:focus {
  outline: none;
}

/* line 16, app/assets/stylesheets/layout/_signed.scss */
body.signed > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vw;
}

/* line 22, app/assets/stylesheets/layout/_signed.scss */
body.signed > header a.brand {
  text-decoration: none;
}

@media (max-width: 1024px) {
  /* line 22, app/assets/stylesheets/layout/_signed.scss */
  body.signed > header a.brand {
    display: block;
  }
}

/* line 29, app/assets/stylesheets/layout/_signed.scss */
body.signed > header a.brand > img:first-child {
  width: 6vw;
}

@media (max-width: 1024px) {
  /* line 29, app/assets/stylesheets/layout/_signed.scss */
  body.signed > header a.brand > img:first-child {
    width: 12vw;
  }
}

/* line 38, app/assets/stylesheets/layout/_signed.scss */
body.signed > header > nav {
  display: flex;
  font-family: "Poppins", sans-serif;
}

/* line 42, app/assets/stylesheets/layout/_signed.scss */
body.signed > header > nav > ul.menu {
  list-style: none;
}

/* line 45, app/assets/stylesheets/layout/_signed.scss */
body.signed > header > nav > ul.menu > li {
  display: inline-block;
  padding: 1vw 2vw;
}

/* line 49, app/assets/stylesheets/layout/_signed.scss */
body.signed > header > nav > ul.menu > li.active {
  border-bottom: 2px solid #000000;
}

/* line 53, app/assets/stylesheets/layout/_signed.scss */
body.signed > header > nav > ul.menu > li > a {
  text-decoration: none;
  color: #000000;
}

/* line 60, app/assets/stylesheets/layout/_signed.scss */
body.signed > header > nav div:last-child {
  display: flex;
  align-items: flex-end;
  line-height: 1.3vw;
  font-size: 1.3vw;
}

@media (max-width: 1024px) {
  /* line 60, app/assets/stylesheets/layout/_signed.scss */
  body.signed > header > nav div:last-child {
    align-items: center;
  }
}

/* line 69, app/assets/stylesheets/layout/_signed.scss */
body.signed > header > nav div:last-child > a {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
}

/* line 74, app/assets/stylesheets/layout/_signed.scss */
body.signed > header > nav div:last-child > a > .material-symbols-sharp {
  vertical-align: middle;
}

/* line 80, app/assets/stylesheets/layout/_signed.scss */
body.signed > header > nav div:last-child > form > button {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0 0 -0.25rem 0;
  vertical-align: middle;
  text-align: left;
}

/* line 96, app/assets/stylesheets/layout/_signed.scss */
body.signed > main {
  padding: 0 2vw 0 2vw;
}

/* line 99, app/assets/stylesheets/layout/_signed.scss */
body.signed > main h1, body.signed > main h2, body.signed > main h3, body.signed > main h4, body.signed > main h5 {
  font-family: "Alata", sans-serif;
  text-align: left;
}

/* line 103, app/assets/stylesheets/layout/_signed.scss */
body.signed > main h1 > small, body.signed > main h2 > small, body.signed > main h3 > small, body.signed > main h4 > small, body.signed > main h5 > small {
  font-family: "Poppins", sans-serif;
  display: block;
  font-weight: 100;
}

/* line 110, app/assets/stylesheets/layout/_signed.scss */
body.signed > main h1 {
  font-size: 4vw;
  margin: -7vw auto 2vw;
  width: 60vw;
  text-align: center;
}

/* line 116, app/assets/stylesheets/layout/_signed.scss */
body.signed > main h1 > small {
  margin-top: 2vw;
  font-size: 2vw;
}

/* line 122, app/assets/stylesheets/layout/_signed.scss */
body.signed > main h2 {
  font-size: 3vw;
}

@media (min-width: 1920px) {
  /* line 122, app/assets/stylesheets/layout/_signed.scss */
  body.signed > main h2 {
    font-size: 2.5vw;
  }
}

/* line 128, app/assets/stylesheets/layout/_signed.scss */
body.signed > main h2 > small {
  margin-top: 1vw;
  font-size: 1.5vw;
}

@media (min-width: 1920px) {
  /* line 128, app/assets/stylesheets/layout/_signed.scss */
  body.signed > main h2 > small {
    font-size: 1.25vw;
  }
}

/* line 137, app/assets/stylesheets/layout/_signed.scss */
body.signed > main h3 {
  font-size: 2.4vw;
}

@media (min-width: 1920px) {
  /* line 137, app/assets/stylesheets/layout/_signed.scss */
  body.signed > main h3 {
    font-size: 2vw;
  }
}

/* line 143, app/assets/stylesheets/layout/_signed.scss */
body.signed > main h3 > small {
  margin-top: 1vw;
  font-size: 1.25vw;
}

@media (min-width: 1920px) {
  /* line 143, app/assets/stylesheets/layout/_signed.scss */
  body.signed > main h3 > small {
    font-size: 1vw;
  }
}

/* line 152, app/assets/stylesheets/layout/_signed.scss */
body.signed > main h4 {
  font-size: 1.8vw;
  margin-top: 0;
}

@media (min-width: 1920px) {
  /* line 152, app/assets/stylesheets/layout/_signed.scss */
  body.signed > main h4 {
    font-size: 1.5vw;
  }
}

/* line 162, app/assets/stylesheets/layout/_signed.scss */
body.signed > main > section > .col h1, body.signed > main > section > .col h2, body.signed > main > section > .col h3, body.signed > main > section > .col h4, body.signed > main > section > .col h5 {
  text-align: left;
}

/* line 171, app/assets/stylesheets/layout/_signed.scss */
body.signed > main .callout, body.signed > main .flash {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  padding: 1vw;
  margin-bottom: 2vw;
  position: relative;
}

@media (max-width: 1024px) {
  /* line 171, app/assets/stylesheets/layout/_signed.scss */
  body.signed > main .callout, body.signed > main .flash {
    padding: 3vw;
  }
}

/* line 181, app/assets/stylesheets/layout/_signed.scss */
body.signed > main .callout > h5, body.signed > main .flash > h5 {
  text-align: left;
  font-size: 1.25vw;
  margin-top: 0;
}

@media (max-width: 1024px) {
  /* line 181, app/assets/stylesheets/layout/_signed.scss */
  body.signed > main .callout > h5, body.signed > main .flash > h5 {
    font-size: 3vw;
  }
}

/* line 190, app/assets/stylesheets/layout/_signed.scss */
body.signed > main .callout button.close, body.signed > main .flash button.close {
  position: absolute;
  top: 1vw;
  right: 1vw;
  border: none;
  background: transparent;
  font-size: 2vw;
  color: white;
}

@media (max-width: 1024px) {
  /* line 190, app/assets/stylesheets/layout/_signed.scss */
  body.signed > main .callout button.close, body.signed > main .flash button.close {
    font-size: 5vw;
  }
}

/* line 203, app/assets/stylesheets/layout/_signed.scss */
body.signed > main .callout a, body.signed > main .flash a {
  color: #ffffff;
  text-decoration: none;
}

/* line 207, app/assets/stylesheets/layout/_signed.scss */
body.signed > main .callout a:hover, body.signed > main .flash a:hover {
  text-decoration: underline;
}

/* line 212, app/assets/stylesheets/layout/_signed.scss */
body.signed > main .callout.alert, body.signed > main .flash.alert {
  background-color: #F70019;
}

/* line 216, app/assets/stylesheets/layout/_signed.scss */
body.signed > main .callout.success, body.signed > main .flash.success {
  background-color: #168f82;
}

@media (max-width: 1024px) {
  /* line 221, app/assets/stylesheets/layout/_signed.scss */
  body.signed > main form {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
}

/* line 7, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form .field_with_errors {
  border-color: #E83731 !important;
}

/* line 10, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group {
  display: flex;
  margin-bottom: 1vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
}

/* line 18, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

@media (max-width: 1024px) {
  /* line 10, app/assets/stylesheets/layout/../_form.scss */
  body.signed > main form > .input-group {
    width: 60vw;
    align-items: center;
  }
  /* line 27, app/assets/stylesheets/layout/../_form.scss */
  body.signed > main form > .input-group:nth-of-type(1) {
    margin-top: 10vw;
  }
}

/* line 32, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group:last-child {
  margin-bottom: 0;
}

/* line 36, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 40, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  margin-right: 1vw;
  line-height: 1;
}

/* line 47, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group > label {
  display: none;
}

/* line 50, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
  margin-left: .5rem;
}

/* line 57, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group > input[type="text"], body.signed > main form > .input-group > input[type="number"], body.signed > main form > .input-group > input[type="email"], body.signed > main form > .input-group > input[type="tel"], body.signed > main form > .input-group > input[type="password"], body.signed > main form > .input-group > textarea {
  border: none;
  background-color: transparent;
  width: 100%;
  padding: 0vw;
  font-size: larger;
}

@media (max-width: 1024px) {
  /* line 57, app/assets/stylesheets/layout/../_form.scss */
  body.signed > main form > .input-group > input[type="text"], body.signed > main form > .input-group > input[type="number"], body.signed > main form > .input-group > input[type="email"], body.signed > main form > .input-group > input[type="tel"], body.signed > main form > .input-group > input[type="password"], body.signed > main form > .input-group > textarea {
    text-align: center;
    font-size: 5vw;
  }
}

/* line 69, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group > input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

/* line 74, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 78, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group > textarea {
  font-size: medium;
}

/* line 82, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 90, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset > legend {
  font-weight: 300;
}

/* line 94, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group {
  display: flex;
  margin-bottom: 2vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
  gap: 0.5vw;
  padding-top: 0;
  padding-bottom: 0;
}

/* line 132, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

/* line 138, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group:last-child {
  margin-bottom: 0;
}

/* line 142, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 146, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group:has(label) {
  align-items: center;
}

/* line 150, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* line 157, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group > label {
  display: none;
}

/* line 160, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
}

/* line 166, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group > input[type="text"], body.signed > main form > fieldset .input-group > input[type="number"], body.signed > main form > fieldset .input-group > input[type="file"], body.signed > main form > fieldset .input-group > input[type="email"], body.signed > main form > fieldset .input-group > input [type="tel"], body.signed > main form > fieldset .input-group > input [type="password"], body.signed > main form > fieldset .input-group > input [type="time"], body.signed > main form > fieldset .input-group > input [type="date"], body.signed > main form > fieldset .input-group > textarea, body.signed > main form > fieldset .input-group > select {
  border: none;
  background-color: transparent;
  color: inherit;
  width: 100%;
  padding: 0;
  font-size: larger;
}

/* line 175, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 179, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group > textarea {
  font-size: medium;
}

/* line 183, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group > input[type="time"], body.signed > main form > fieldset .input-group input[type="date"] {
  width: auto;
}

/* line 187, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 100, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset > .help {
  color: #7A7D7E;
  font-weight: 300;
  font-size: 0.8rem;
}

/* line 106, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > fieldset button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1024px) {
  /* line 112, app/assets/stylesheets/layout/../_form.scss */
  body.signed > main form > .actions {
    margin-top: 10vw;
  }
}

/* line 117, app/assets/stylesheets/layout/../_form.scss */
body.signed > main form > .actions > input[type="submit"] {
  padding: 1vw 2vw;
  background-color: #000000;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.4vw;
}

@media (max-width: 1024px) {
  /* line 117, app/assets/stylesheets/layout/../_form.scss */
  body.signed > main form > .actions > input[type="submit"] {
    padding: 4vw 8vw;
    font-size: 6vw;
  }
}

/* line 184, app/assets/stylesheets/layout/../_custom.scss */
body.signed > main form > .actions > input[type="submit"][disabled] {
  background-color: #dddddd;
  color: #cacaca;
  cursor: not-allowed;
}

/* line 225, app/assets/stylesheets/layout/_signed.scss */
body.signed > main a.button {
  padding: 1vw 2vw;
  background-color: #dddddd;
  color: #000000;
  border: 1px solid #7A7D7E;
  cursor: pointer;
  text-decoration: none;
  font-size: 1vw;
  padding: 0.25em .55em .0em .55em;
  border-width: .0125vw;
}

/* line 215, app/assets/stylesheets/layout/../_custom.scss */
body.signed > main a.button > span {
  vertical-align: middle;
}

/* line 230, app/assets/stylesheets/layout/_signed.scss */
body.signed > footer {
  position: relative;
  background-color: #EDEEEB;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1vw 2vw;
}

/* line 242, app/assets/stylesheets/layout/_signed.scss */
body.signed > footer > .copyright {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: .5vw;
  color: #000000;
  padding-right: .5vw;
  padding-bottom: .5vw;
}

@keyframes carousel {
  0% {
    transform: translateX(200vw);
    opacity: 0;
  }
  5% {
    transform: translateX(0);
    opacity: 1;
  }
  15% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(-200vw);
    opacity: 0;
  }
  100% {
    transform: translateX(-200vw);
    opacity: 0;
  }
}

/* line 84, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.hero > img.main-banner {
  width: 100%;
}

@media (max-width: 1024px) {
  /* line 84, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.hero > img.main-banner {
    height: 65vw;
    object-fit: cover;
  }
}

/* line 94, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.hero > h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 2vw;
  background-color: #EDEEEB;
  padding: 1rem 0;
  margin-top: -0.5rem;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  /* line 94, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.hero > h4 {
    font-size: 5vw;
    font-weight: 300;
  }
}

/* line 109, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.hero > .buttons {
  display: grid;
  margin-top: 0;
  grid-template-columns: repeat(3, 1fr);
  font-weight: 300;
}

/* line 117, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.hero > .buttons > a {
  margin: 0;
  padding: 2vw;
  border-right: 1px solid #ffffff;
  color: #000000;
  background-color: #51dacf;
  text-decoration: none;
  font-size: 1.2em;
  text-align: center;
}

/* line 128, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.hero > .buttons > a:last-child {
  border-right: none;
}

/* line 132, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.hero > .buttons > a:hover {
  background-color: #000000;
  color: #51dacf;
}

@media (max-width: 1024px) {
  /* line 117, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.hero > .buttons > a {
    margin: 0 0.5vw;
    padding: 6vw;
    font-size: 1em;
    font-weight: 500;
  }
}

/* line 148, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#benefits > .benefit-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  /* line 148, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#benefits > .benefit-items {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}

/* line 36, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#benefits > .benefit-items > figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 1024px) {
  /* line 36, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#benefits > .benefit-items > figure {
    margin: 0;
  }
}

/* line 46, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#benefits > .benefit-items > figure > span.material-symbols-sharp {
  display: block;
  color: #51dacf;
  font-size: 10vw;
}

@media (max-width: 1024px) {
  /* line 46, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#benefits > .benefit-items > figure > span.material-symbols-sharp {
    font-size: 36vw;
  }
}

/* line 58, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#benefits > .benefit-items > figure > figcaption {
  padding: 0 5vw;
}

/* line 60, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#benefits > .benefit-items > figure > figcaption > h3 {
  font-size: 2.8vw;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  /* line 60, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#benefits > .benefit-items > figure > figcaption > h3 {
    font-size: 6vw;
  }
}

/* line 69, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#benefits > .benefit-items > figure > p {
  font-size: 1.5vw;
  font-weight: 300;
}

@media (max-width: 1024px) {
  /* line 69, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#benefits > .benefit-items > figure > p {
    font-size: 5vw;
    font-weight: 300;
  }
}

/* line 154, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.process > .process-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  /* line 154, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.process > .process-items {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
}

/* line 36, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.process > .process-items > figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 1024px) {
  /* line 36, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.process > .process-items > figure {
    margin: 0;
  }
}

/* line 46, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.process > .process-items > figure > span.material-symbols-sharp {
  display: block;
  color: #51dacf;
  font-size: 10vw;
}

@media (max-width: 1024px) {
  /* line 46, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.process > .process-items > figure > span.material-symbols-sharp {
    font-size: 36vw;
  }
}

/* line 58, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.process > .process-items > figure > figcaption {
  padding: 0 5vw;
}

/* line 60, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.process > .process-items > figure > figcaption > h3 {
  font-size: 2.8vw;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  /* line 60, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.process > .process-items > figure > figcaption > h3 {
    font-size: 6vw;
  }
}

/* line 69, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.process > .process-items > figure > p {
  font-size: 1.5vw;
  font-weight: 300;
}

@media (max-width: 1024px) {
  /* line 69, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.process > .process-items > figure > p {
    font-size: 5vw;
    font-weight: 300;
  }
}

/* line 161, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#recommended-tech p:last-child {
  font-family: "Roboto Slab", serif;
  font-weight: 100;
  margin-top: 2vw;
  font-size: 2vw;
  text-align: center;
}

@media (max-width: 1024px) {
  /* line 161, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#recommended-tech p:last-child {
    font-size: 5vw;
    margin: 11vw 7vw;
    line-height: 1.5;
  }
}

/* line 175, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#recommended-tech > ul {
  list-style: none;
  padding-left: 1vw;
}

/* line 179, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#recommended-tech > ul > li {
  padding-left: 7vw;
  /* Adjust based on image dimention */
  position: relative;
  margin-bottom: 3rem;
}

/* line 184, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#recommended-tech > ul > li:before {
  background-size: cover;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5vw;
  height: 5vw;
}

/* line 195, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#recommended-tech > ul > li:nth-child(1):before {
  background-image: url(/assets/apple-logo-5b4e6d43703e98781e160403fb2378c57aeea02692fa2376fb0daa5a51c58441.svg);
}

/* line 201, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#recommended-tech > ul > li:nth-child(2):before {
  background-image: url(/assets/microsoft-logo-299b057dc6c273805749387ed2523cbd828ff9912d9e11b56225e2509ba6ef3d.svg);
}

/* line 207, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#recommended-tech > ul > li:nth-child(3):before {
  background-image: url(/assets/android-logo-7ded4662f202ed885dbc52ec6963bccf92c152d73615b6e05a40d01c790ce0bc.svg);
}

/* line 216, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items {
  position: relative;
  width: 100%;
  height: 15vw;
  margin-top: 5vh;
  overflow: hidden;
}

@media (max-width: 1024px) {
  /* line 216, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#case-study > .case-study-items {
    box-sizing: border-box;
    height: 50vw;
    margin-top: 0;
    padding: 0 1rem;
  }
}

/* line 230, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items > blockquote {
  position: absolute;
  top: 0;
  left: calc(50% - 30vw);
  width: 60vw;
  opacity: 0;
  animation: carousel 60s infinite;
}

@media (max-width: 1024px) {
  /* line 230, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#case-study > .case-study-items > blockquote {
    width: 87vw;
    left: 1rem;
    margin: 0;
    animation: carousel 58s infinite;
  }
}

/* line 246, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items > blockquote:nth-child(1) {
  animation-delay: 0s;
}

/* line 250, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items > blockquote:nth-child(2) {
  animation-delay: 8s;
}

/* line 254, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items > blockquote:nth-child(3) {
  animation-delay: 16s;
}

/* line 258, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items > blockquote:nth-child(4) {
  animation-delay: 24s;
}

/* line 262, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items > blockquote:nth-child(5) {
  animation-delay: 32s;
}

/* line 266, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items > blockquote:nth-child(6) {
  animation-delay: 41s;
}

/* line 270, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items > blockquote:nth-child(7) {
  animation-delay: 50s;
}

/* line 281, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#case-study > .case-study-items > blockquote > p {
  font-family: "Roboto Slab", serif;
  font-weight: 100;
  font-size: 2vw;
}

@media (max-width: 1024px) {
  /* line 281, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#case-study > .case-study-items > blockquote > p {
    text-align: justify;
    font-size: 5vw;
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
  }
}

@media (max-width: 1024px) {
  /* line 294, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#case-study > .case-study-items > blockquote > footer {
    font-size: 4vw;
  }
}

/* line 304, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section.video-demo > video {
  margin: 0 auto;
  display: block;
  border: 1vw solid black;
  margin-top: 5vw;
}

@media (max-width: 1024px) {
  /* line 304, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.video-demo > video {
    border-width: 2vw;
    width: 92vw;
    width: -webkit-fill-available;
    height: auto;
    margin-top: 10vw;
  }
}

@media (max-width: 1024px) {
  /* line 321, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section.faq > h2 {
    margin-bottom: 4rem;
  }
}

/* line 333, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#contact > p:nth-of-type(2) {
  width: 45vw;
  margin: 0 auto;
}

/* line 338, app/assets/stylesheets/_pages.scss */
body.public.pages > main > section#contact > #new_contact_former {
  display: block;
  width: 45vw;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  /* line 338, app/assets/stylesheets/_pages.scss */
  body.public.pages > main > section#contact > #new_contact_former {
    width: 100%;
  }
}

/* line 7, app/assets/stylesheets/_session.scss */
body.public.sessions.new > main > section.session, body.public.sessions.create > main > section.session {
  margin-top: 4vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2vw;
  flex-wrap: wrap-reverse;
}

@media (max-width: 1024px) {
  /* line 7, app/assets/stylesheets/_session.scss */
  body.public.sessions.new > main > section.session, body.public.sessions.create > main > section.session {
    text-align: center;
  }
}

/* line 18, app/assets/stylesheets/_session.scss */
body.public.sessions.new > main > section.session > .col, body.public.sessions.create > main > section.session > .col {
  width: 45vw;
}

@media (max-width: 1024px) {
  /* line 18, app/assets/stylesheets/_session.scss */
  body.public.sessions.new > main > section.session > .col, body.public.sessions.create > main > section.session > .col {
    width: 100vw;
  }
}

/* line 23, app/assets/stylesheets/_session.scss */
body.public.sessions.new > main > section.session > .col > h2, body.public.sessions.create > main > section.session > .col > h2 {
  margin-top: 0;
}

@media (max-width: 1024px) {
  /* line 23, app/assets/stylesheets/_session.scss */
  body.public.sessions.new > main > section.session > .col > h2, body.public.sessions.create > main > section.session > .col > h2 {
    margin-top: 10vw;
    margin-bottom: 0;
  }
}

/* line 39, app/assets/stylesheets/_session.scss */
body.public.sessions.new > main > section.session > .col > mark, body.public.sessions.create > main > section.session > .col > mark {
  color: #000000;
  background-color: yellow;
  font-weight: 600;
  padding: .1em .5em;
  display: block;
  margin-bottom: 1rem;
}

/* line 48, app/assets/stylesheets/_session.scss */
body.public.sessions.new > main > section.session > .col > mark > a, body.public.sessions.create > main > section.session > .col > mark > a {
  color: yellow;
  text-decoration: underline;
  background-color: #000000;
  display: inline-block;
  padding: .1em .5em;
  text-transform: uppercase;
}

@media print {
  /* line 5, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > header {
    display: none;
  }
  /* line 9, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main {
    padding: 0;
  }
  /* line 13, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article {
    font-family: "Poppins", sans-serif;
    font-size: 11pt;
    color: #ffffff;
    padding: 0;
    margin: 0;
  }
  /* line 20, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article > header {
    display: none;
  }
  /* line 24, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content {
    display: block !important;
    padding: 0;
  }
  /* line 28, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts {
    color: #7A7D7E;
    background-color: #ffffff;
    overflow: hidden;
    border: 1pt solid #000000;
  }
  /* line 36, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts thead > tr > th {
    background-color: #dddddd;
    color: #000000;
    padding: 2.5mm;
    font-size: 12pt;
    border-bottom: 2pt solid #000000;
  }
  /* line 46, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts tbody {
    border-bottom: 2pt solid #000000;
  }
  /* line 50, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  /* line 54, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts tbody tr > th[colspan] {
    padding: 2mm 0.5mm;
    text-transform: capitalize;
    text-align: left;
  }
  /* line 60, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts tbody tr > td {
    font-size: 10pt;
    text-align: left;
    padding: 2mm 1mm;
    border-bottom: 1pt solid #dddddd;
  }
  /* line 67, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts tbody tr a {
    color: #000000;
    text-decoration: none;
  }
  /* line 78, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > main .entries {
    display: none;
  }
  /* line 83, app/assets/stylesheets/_office_print.scss */
  body.signed.offices.show > footer {
    display: none;
  }
}

@media screen {
  /* line 39, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.prevention {
    color: #168f82;
  }
  /* line 43, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.on_hold {
    color: #000000;
  }
  /* line 47, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.procedure {
    color: #FE9E12;
  }
  /* line 51, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.emergency {
    color: #F70019;
  }
  /* line 55, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.cleaning {
    color: #FE9E12;
  }
  /* line 59, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.whitening {
    color: #46D4C4;
  }
  /* line 63, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.examination {
    color: #000000;
  }
  /* line 67, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.reserved {
    color: #168f82;
  }
  /* line 71, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.vacation {
    color: #d3be00;
  }
  /* line 75, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.big_pain {
    color: #F70019;
  }
  /* line 79, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.small_pain {
    color: #FE9E12;
  }
  /* line 83, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.unsure_pain {
    color: #FE9E12;
  }
  /* line 87, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.pain_no_8 {
    color: #F70019;
  }
  /* line 91, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.gum_swelling {
    color: #F70019;
  }
  /* line 95, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.gum_bleeding {
    color: #F70019;
  }
  /* line 99, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.face_swelling {
    color: #F70019;
  }
  /* line 103, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.dropped_filler {
    color: #d3be00;
  }
  /* line 107, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.broken_tooth {
    color: #F70019;
  }
  /* line 111, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.cutting_edge {
    color: #FE9E12;
  }
  /* line 115, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.impacted_tooth {
    color: #F70019;
  }
  /* line 119, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.tooth_dislocation {
    color: #F70019;
  }
  /* line 123, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.crown_fell_out {
    color: #F70019;
  }
  /* line 127, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.fallen_bridge {
    color: #F70019;
  }
  /* line 131, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.broken_denture {
    color: #F70019;
  }
  /* line 135, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.wobbly_tooth {
    color: #F70019;
  }
  /* line 139, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.tooth_pulses {
    color: #F70019;
  }
  /* line 143, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.lost_tooth_from_denture {
    color: #F70019;
  }
  /* line 147, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.painkillers_taken {
    color: #d3be00;
  }
  /* line 151, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.cant_sleep {
    color: #FE9E12;
  }
  /* line 155, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.elevated_temperature {
    color: #FE9E12;
  }
  /* line 159, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.temperature_sensitivity {
    color: #FE9E12;
  }
  /* line 163, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.first_visit {
    color: #d3be00;
  }
  /* line 167, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.gum_inflammation {
    color: #F70019;
  }
  /* line 171, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.plaque_or_tartar {
    color: dimgrey;
  }
  /* line 175, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.tooth_discoloration {
    color: #7A7D7E;
  }
  /* line 179, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.any_cavities {
    color: #000000;
  }
  /* line 183, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.any_dentures {
    color: #d3be00;
  }
  /* line 187, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.any_implants {
    color: #d3be00;
  }
  /* line 191, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.without_complications {
    color: #168f82;
  }
  /* line 195, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.acute_gap {
    color: #9f6861;
  }
  /* line 199, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .material-symbols-sharp.to_be_paid {
    color: #000000;
    background-color: palegoldenrod;
  }
  /* line 13, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > section.search {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  /* line 20, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > section.search > form:first-child > .input-group > .append > a:first-child {
    display: block;
    padding: 1vw 2vw;
    background-color: #dddddd;
    color: #000000;
    border: 1px solid #7A7D7E;
    cursor: pointer;
    text-decoration: none;
    font-size: 1vw;
    padding: 0.25em .55em .0em .55em;
    border-width: .0125vw;
    margin: -.25vw -.25vw -.5vw -.5vw;
  }
  /* line 215, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main > section.search > form:first-child > .input-group > .append > a:first-child > span {
    vertical-align: middle;
  }
  /* line 33, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > section.search > turbo-frame#new_vacancy_former > form > .input-group > .append > button {
    display: block;
    padding: 1vw 2vw;
    background-color: #dddddd;
    color: #000000;
    border: 1px solid #7A7D7E;
    cursor: pointer;
    text-decoration: none;
    font-size: 1vw;
    padding: 0.25em .55em .0em .55em;
    border-width: .0125vw;
    margin: -.25vw -.25vw -.5vw -.5vw;
    padding: .3em .55em .125em .55em;
  }
  /* line 215, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main > section.search > turbo-frame#new_vacancy_former > form > .input-group > .append > button > span {
    vertical-align: middle;
  }
  /* line 45, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > dialog#control {
    padding: 2vw;
  }
  /* line 50, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > dialog#control > section > .main h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
  }
  /* line 205, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form .field_with_errors {
    border-color: #E83731 !important;
  }
  /* line 209, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data {
    display: flex;
    justify-content: center;
    margin-bottom: 1vw;
  }
  /* line 215, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group {
    display: flex;
    margin-bottom: 2vw;
    align-items: flex-start;
    border: 1px solid #7A7D7E;
    background-color: #f9f9f9;
    padding: 1vw;
    gap: 0.5vw;
  }
  /* line 132, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group.naked {
    border: none;
    background-color: transparent;
    padding: 0;
  }
  /* line 138, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group:last-child {
    margin-bottom: 0;
  }
  /* line 142, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group:has(.field_with_errors) {
    border-color: #E83731;
  }
  /* line 146, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group:has(label) {
    align-items: center;
  }
  /* line 150, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > .prepend {
    text-align: center;
    white-space: nowrap;
    line-height: 1;
  }
  /* line 157, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > label {
    display: none;
  }
  /* line 160, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > label.checkbox-inline {
    display: inline;
    font-weight: 300;
  }
  /* line 166, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input[type="text"], body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input[type="number"], body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input[type="file"], body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input[type="email"], body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input [type="tel"], body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input [type="password"], body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input [type="time"], body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input [type="date"], body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > textarea, body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > select {
    border: none;
    background-color: transparent;
    color: inherit;
    width: 100%;
    padding: 0;
    font-size: larger;
  }
  /* line 175, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input[type="email"] {
    min-width: 20vw;
  }
  /* line 179, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > textarea {
    font-size: medium;
  }
  /* line 183, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > input[type="time"], body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group input[type="date"] {
    width: auto;
  }
  /* line 187, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .input-group > .append {
    text-align: left;
    white-space: nowrap;
    margin-left: 1vw;
    display: inline-block;
  }
  /* line 219, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.data > fieldset > .help {
    margin-top: -1rem;
    font-size: smaller;
    display: block;
    position: relative;
    top: -1rem;
    color: #7A7D7E;
  }
  /* line 225, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard {
    margin-bottom: 1vw;
  }
  /* line 228, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
  }
  /* line 238, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > h4 {
    font-size: 1.4vw;
  }
  /* line 242, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group {
    display: flex;
    margin-bottom: 2vw;
    align-items: flex-start;
    border: 1px solid #7A7D7E;
    background-color: #f9f9f9;
    padding: 1vw;
    gap: 0.5vw;
  }
  /* line 132, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group.naked {
    border: none;
    background-color: transparent;
    padding: 0;
  }
  /* line 138, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group:last-child {
    margin-bottom: 0;
  }
  /* line 142, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group:has(.field_with_errors) {
    border-color: #E83731;
  }
  /* line 146, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group:has(label) {
    align-items: center;
  }
  /* line 150, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > .prepend {
    text-align: center;
    white-space: nowrap;
    line-height: 1;
  }
  /* line 157, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > label {
    display: none;
  }
  /* line 160, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > label.checkbox-inline {
    display: inline;
    font-weight: 300;
  }
  /* line 166, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="text"], body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="number"], body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="file"], body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="email"], body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input [type="tel"], body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input [type="password"], body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input [type="time"], body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input [type="date"], body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > textarea, body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > select {
    border: none;
    background-color: transparent;
    color: inherit;
    width: 100%;
    padding: 0;
    font-size: larger;
  }
  /* line 175, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="email"] {
    min-width: 20vw;
  }
  /* line 179, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > textarea {
    font-size: medium;
  }
  /* line 183, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="time"], body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group input[type="date"] {
    width: auto;
  }
  /* line 187, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .input-group > .append {
    text-align: left;
    white-space: nowrap;
    margin-left: 1vw;
    display: inline-block;
  }
  /* line 246, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > fieldset > .help {
    margin-top: -1rem;
    font-size: smaller;
    display: block;
    position: relative;
    top: -1rem;
    color: #7A7D7E;
  }
  /* line 251, app/assets/stylesheets/_form.scss */
  body.signed.offices.show > main > dialog#control form > section.wizard.office > h4 {
    grid-column: 1 / span 2;
    margin-bottom: 0;
    font-size: 1.4vw;
  }
  /* line 63, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patients-found > ul, body.signed.offices.show > main > #patients-found > p {
    position: absolute;
    background-color: white;
    border: 1px solid black;
    padding: 2vw;
    list-style: none;
    top: 12vw;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 999999;
  }
}

@media screen and (min-width: 1920px) {
  /* line 63, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patients-found > ul, body.signed.offices.show > main > #patients-found > p {
    margin-top: 0;
    padding: 1vw;
  }
}

@media screen {
  /* line 79, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patients-found > ul > li {
    margin: 1.5vw 0;
  }
  /* line 82, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patients-found > ul > li:first-child {
    margin-top: 0;
  }
  /* line 86, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patients-found > ul > li:last-child {
    margin-bottom: 0;
  }
  /* line 90, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patients-found > ul > li.selected {
    background-color: rgba(19, 89, 90, 0.5);
  }
  /* line 94, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patients-found > ul > li > * {
    pointer-events: none;
  }
  /* line 98, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patients-found > ul > li > .material-symbols-sharp {
    vertical-align: middle;
    margin-right: .5vw;
  }
  /* line 106, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 2vw 2vw;
  }
  /* line 111, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient > h2 {
    grid-column: 1 / span 2;
    margin: 0;
  }
  /* line 115, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient > h2 > .actions {
    float: right;
    display: flex;
    align-items: baseline;
    margin-top: 0;
  }
  /* line 122, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient > h2 > .actions > form > button {
    padding: 1vw 2vw;
    background-color: #dddddd;
    color: #000000;
    border: 1px solid #7A7D7E;
    cursor: pointer;
    text-decoration: none;
    font-size: 1vw;
    padding: 0.25em .55em .0em .55em;
    border-width: .0125vw;
    padding: .3em .55em .125em .55em;
  }
  /* line 215, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main > #patient > h2 > .actions > form > button > span {
    vertical-align: middle;
  }
  /* line 130, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient > dl {
    display: grid;
    grid-template-columns: 2vw auto;
    grid-gap: 0 1vw;
    align-content: start;
    margin: 0;
  }
}

@media screen and (max-width: 1024px) {
  /* line 130, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient > dl {
    grid-template-columns: 7vw auto;
    grid-gap: 0 7vw;
    margin-top: 4vw;
  }
}

@media screen {
  /* line 146, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient > dl dd {
    margin-left: 0;
    line-height: 2vw;
  }
  /* line 152, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient > table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
    color: #7A7D7E;
    background-color: #ffffff;
    overflow: hidden;
    border: 1px solid #000000;
  }
  /* line 14, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main > #patient > table thead > tr > th {
    background-color: #dddddd;
    color: #000000;
    font-weight: bold;
    text-align: left;
    padding: 0.5rem;
    font-size: 120%;
    border-bottom: 2px solid #000000;
  }
}

@media screen and (max-width: 1024px) {
  /* line 14, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main > #patient > table thead > tr > th {
    font-size: 4vw;
    font-weight: 300;
  }
}

@media screen {
  /* line 43, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main > #patient > table tbody tr > td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #dddddd;
  }
  /* line 48, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main > #patient > table tbody tr > td span {
    vertical-align: middle;
  }
  /* line 53, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main > #patient > table tbody tr > td span.material-symbols-sharp.check_circle.success {
    color: #168f82;
  }
  /* line 58, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main > #patient > table tbody tr > td span.material-symbols-sharp.help.warning {
    color: #FE9E12;
  }
  /* line 63, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main > #patient > table tbody tr > td span.material-symbols-sharp.error.error {
    color: #F70019;
  }
  /* line 20, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.future.on_hold {
    color: #C1C1C1;
  }
  /* line 23, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.future.prevention {
    color: #168f82;
  }
  /* line 26, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.future.examination {
    color: #000000;
  }
  /* line 29, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.future.procedure {
    color: #FE9E12;
  }
  /* line 32, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.future.emergency {
    color: #F70019;
  }
  /* line 164, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.today {
    background-color: #ffffc0;
  }
  /* line 20, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.today.on_hold {
    color: #C1C1C1;
  }
  /* line 23, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.today.prevention {
    color: #168f82;
  }
  /* line 26, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.today.examination {
    color: #000000;
  }
  /* line 29, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.today.procedure {
    color: #FE9E12;
  }
  /* line 32, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr.today.emergency {
    color: #F70019;
  }
  /* line 173, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > #patient > table > tbody > tr > td > p.note {
    font-size: smaller;
    font-weight: 300;
    margin-bottom: 0;
    color: #000000;
  }
  /* line 185, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr 1fr 1fr 1fr 1fr 0.5fr;
    gap: 0;
  }
  /* line 193, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-left: 0.5vw solid #cacaca;
    background-color: #f9f9f9;
  }
  /* line 202, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li:first-child:has(> form) {
    justify-content: flex-start;
    border-left: none;
  }
  /* line 206, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li:first-child:has(> form) button {
    display: block;
    padding: 1vw 2vw;
    background-color: #dddddd;
    color: #000000;
    border: 1px solid #7A7D7E;
    cursor: pointer;
    text-decoration: none;
    font-size: 1vw;
    padding: 0.25em .55em .0em .55em;
    border-width: .0125vw;
    margin: .5vw .5vw .5vw .5vw;
  }
  /* line 215, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main > ul#vacancies-found > li:first-child:has(> form) button > span {
    vertical-align: middle;
  }
  /* line 215, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li:last-child:has(> form) {
    justify-content: flex-end;
  }
  /* line 218, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li:last-child:has(> form) button {
    display: block;
    padding: 1vw 2vw;
    background-color: #dddddd;
    color: #000000;
    border: 1px solid #7A7D7E;
    cursor: pointer;
    text-decoration: none;
    font-size: 1vw;
    padding: 0.25em .55em .0em .55em;
    border-width: .0125vw;
    margin: .5vw .5vw .5vw .5vw;
  }
  /* line 215, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main > ul#vacancies-found > li:last-child:has(> form) button > span {
    vertical-align: middle;
  }
  /* line 226, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li.acute {
    background-color: #990000;
    color: #e6e6e6;
    border-left: 0.5vw solid #9f6861;
  }
  /* line 232, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li > .info {
    padding-left: 0.5vw;
    cursor: pointer;
  }
  /* line 237, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li > .times {
    cursor: pointer;
  }
  /* line 241, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li > .open {
    background-color: #dddddd;
  }
  /* line 244, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main > ul#vacancies-found > li > .open > span.material-symbols-sharp {
    font-size: 2vw;
    display: inline-block;
    cursor: pointer;
    color: #7A7D7E;
    line-height: 3vw;
  }
  /* line 256, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article {
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    background-color: #F70019;
    padding: 1vw;
    margin-bottom: 2vw;
  }
  /* line 263, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  /* line 269, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article > header > h2 {
    margin: 0;
    font-size: 2vw;
  }
}

@media screen and (max-width: 1024px) {
  /* line 269, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article > header > h2 {
    font-size: 4vw;
  }
}

@media screen {
  /* line 277, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article > header > a.button {
    color: #ffffff;
    background-color: #F70019;
    font-size: inherit;
    padding: .5vw 1vw;
    border: 1px solid #ffffff;
  }
  /* line 286, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content {
    padding-top: 1.2vw;
  }
  /* line 289, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts {
    color: #7A7D7E;
    background-color: #ffffff;
    overflow: hidden;
    border: 1px solid #000000;
  }
  /* line 297, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts thead > tr > th {
    background-color: #dddddd;
    color: #000000;
    padding: 0.3rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #000000;
  }
  /* line 309, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  /* line 313, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts tbody tr > th[colspan] {
    padding: 0.5rem 0.2rem;
    text-transform: capitalize;
    text-align: left;
  }
  /* line 319, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts tbody tr > td {
    font-size: 1rem;
    text-align: left;
    padding: 0.6rem;
    border-bottom: 1px solid #dddddd;
  }
  /* line 326, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main section#entry_conflicts > article section#entry_conflicts_content table#full_entry_conflicts tbody tr a {
    color: #000000;
    text-decoration: none;
  }
  /* line 337, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .actions {
    margin-top: 4vw;
  }
}

@media screen and (min-width: 1920px) {
  /* line 337, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .actions {
    margin-top: 2vw;
  }
}

@media screen {
  /* line 343, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .actions > a {
    color: inherit;
  }
  /* line 348, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries {
    display: flex;
    height: auto;
  }
  /* line 355, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar {
    flex-grow: 4;
    width: 58vw;
  }
  /* line 361, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading {
    font-family: "Alata", sans-serif;
    font-size: 2vw;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 1024px) {
  /* line 361, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading {
    font-size: 6vw;
    margin-bottom: 6vw;
  }
}

@media screen and (min-width: 1920px) {
  /* line 361, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading {
    font-size: 1.5vw;
  }
}

@media screen {
  /* line 380, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading > a {
    text-decoration: none;
    color: inherit;
  }
}

@media screen and (max-width: 1024px) {
  /* line 380, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading > a {
    font-size: 2vw;
    letter-spacing: -0.1vw;
    color: #000000;
    background-color: #51dacf;
    border: 0.125vw solid #000000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: .4em 1em .4em 1em;
    border-radius: .5vw;
    transition: background-color .25s ease-out,color .25s ease-out;
    font-family: inherit;
    font-weight: 600;
    -webkit-appearance: none;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    background-color: transparent;
  }
}

@media screen and (max-width: 1024px) and (max-width: 1024px) {
  /* line 380, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading > a {
    border-radius: 1vw;
    font-size: 5vw !important;
    border-width: .3vw !important;
  }
}

@media screen and (max-width: 1024px) {
  /* line 129, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading > a.hollow {
    border-width: .1vw;
    background-color: transparent;
  }
}

@media screen and (max-width: 1024px) and (max-width: 1024px) {
  /* line 129, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading > a.hollow {
    border-width: .0125vw;
  }
}

@media screen and (max-width: 1024px) {
  /* line 137, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading > a.small {
    padding: .05em .125em .025em .125em;
  }
}

@media screen and (max-width: 1024px) and (max-width: 1024px) {
  /* line 137, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading > a.small {
    padding: .2em .5em .2em .5em;
  }
}

@media screen and (max-width: 1024px) {
  /* line 144, app/assets/stylesheets/_custom.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > .calendar-heading > a:hover {
    background-color: #19A496;
    color: #ffffff;
    animation: .4s jump ease infinite alternate;
  }
}

@media screen {
  /* line 390, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
    color: #7A7D7E;
    background-color: #ffffff;
    overflow: hidden;
    border: 1px solid #000000;
    border: none;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0;
  }
  /* line 14, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table thead > tr > th {
    background-color: #dddddd;
    color: #000000;
    font-weight: bold;
    text-align: left;
    padding: 0.5rem;
    font-size: 120%;
    border-bottom: 2px solid #000000;
  }
}

@media screen and (max-width: 1024px) {
  /* line 14, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table thead > tr > th {
    font-size: 4vw;
    font-weight: 300;
  }
}

@media screen {
  /* line 43, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table tbody tr > td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #dddddd;
  }
  /* line 48, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table tbody tr > td span {
    vertical-align: middle;
  }
  /* line 53, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table tbody tr > td span.material-symbols-sharp.check_circle.success {
    color: #168f82;
  }
  /* line 58, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table tbody tr > td span.material-symbols-sharp.help.warning {
    color: #FE9E12;
  }
  /* line 63, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table tbody tr > td span.material-symbols-sharp.error.error {
    color: #F70019;
  }
  /* line 398, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > thead > tr > th {
    border-bottom: none;
  }
}

@media screen and (max-width: 1024px) {
  /* line 396, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > thead {
    display: none;
  }
}

@media screen {
  /* line 414, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td {
    padding: 0.8vw 0.1vw 0.1vw 0.8vw;
    position: relative;
  }
}

@media screen and (max-width: 1024px) {
  /* line 414, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td {
    padding: 1.6vw;
    padding: 3.2vw 0.4vw 0.4vw 3.2vw;
  }
}

@media screen {
  /* line 423, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.selected {
    box-shadow: inset 0px 0px 6px -1px #c21400;
  }
  /* line 428, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day {
    height: 7.5vw;
    width: 9vw;
    overflow: hidden;
  }
  /* line 433, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day > .vacation {
    font-size: 13vw;
    position: absolute;
    top: -2.5vw;
    right: -1.75vw;
    color: rgba(0, 0, 0, 0.04);
  }
  /* line 441, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day > .holiday {
    font-size: 13vw;
    position: absolute;
    top: -2.5vw;
    right: -1.75vw;
    color: rgba(0, 0, 0, 0.04);
  }
  /* line 452, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day > .text {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7vw;
  }
}

@media screen and (min-width: 1920px) {
  /* line 428, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day {
    height: 5.5vw;
    width: 6vw;
  }
}

@media screen and (max-width: 1024px) {
  /* line 428, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day {
    height: auto;
    min-height: 20vw;
  }
}

@media screen {
  /* line 470, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day.today {
    border: 2px solid #b6b600;
  }
  /* line 475, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day.vacation:not(.holiday) {
    background-color: #f9f9f9;
  }
  /* line 480, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day.holiday {
    background-color: #f0fbff;
  }
  /* line 482, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day.holiday > .vacation {
    display: none;
  }
  /* line 494, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.day.full:not(.vacation) {
    background-color: #FFE4E1;
  }
  /* line 501, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.current-month.wday-6, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.current-month.wday-0 {
    background-color: #f9f9f9;
  }
  /* line 506, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.prev-month, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.next-month {
    border-color: #dddddd;
    background-color: #cacaca;
  }
  /* line 510, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.prev-month.wday-6, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.prev-month.wday-0, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.next-month.wday-6, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td.next-month.wday-0 {
    background-color: #cacaca;
  }
}

@media screen and (max-width: 1024px) {
  /* line 414, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td {
    display: block;
    width: auto;
  }
}

@media screen {
  /* line 521, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > .header {
    display: flex;
    justify-content: space-between;
    font-weight: 200;
    padding-right: 0.8vw;
  }
}

@media screen and (max-width: 1024px) {
  /* line 532, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > .header > .week {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  /* line 541, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > .header > .week_day {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  /* line 541, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > .header > .week_day {
    font-size: smaller;
  }
}

@media screen and (max-width: 1024px) {
  /* line 554, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl {
    display: grid;
    grid-template-columns: 4vw auto;
    grid-gap: 0 0;
  }
  /* line 229, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > * {
    background-color: #ffffff;
    padding: 1vw .7vw;
    min-height: 2.5vw;
  }
  /* line 234, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > *:last-of-type {
    border-bottom: 1px solid #dddddd;
  }
  /* line 239, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dt {
    line-height: 2.5vw;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-bottom: none;
    font-size: 0.9vw;
  }
  /* line 246, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dt.day_note {
    display: none;
  }
  /* line 251, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd {
    margin-left: 0;
    border: 1px solid #dddddd;
    border-left: none;
    border-bottom: none;
  }
  /* line 257, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:empty {
    background-color: #f2fff8;
  }
  /* line 261, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:has(.acute_gap) {
    background-color: #ffecec;
  }
  /* line 265, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:has(.day_note) {
    grid-column: 1 / span 2;
    height: max-content;
    border-left: 1px solid #dddddd;
  }
  /* line 207, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:has(.day_note) > .day_note > h5 {
    margin-top: 0;
    display: flex;
    align-items: center;
    font-size: inherit;
    font-family: inherit;
    font-weight: 400;
  }
  /* line 215, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:has(.day_note) > .day_note > .comment {
    font-size: 1vw;
    font-weight: 300;
    color: #000000;
    margin-top: 1vw;
  }
  /* line 20, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd > div.on_hold {
    color: #C1C1C1;
  }
  /* line 23, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd > div.prevention {
    color: #168f82;
  }
  /* line 26, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd > div.examination {
    color: #000000;
  }
  /* line 29, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd > div.procedure {
    color: #FE9E12;
  }
  /* line 32, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd > div.emergency {
    color: #F70019;
  }
  /* line 278, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd > div.vacation {
    font-size: 2vw;
  }
  /* line 282, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd > div.vacation .with_tooltip > .material-symbols-sharp {
    font-size: 3vw;
    vertical-align: middle;
  }
  /* line 288, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd > div.vacation > .description {
    margin-left: 1vw;
  }
  /* line 296, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:nth-of-type(1) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:nth-of-type(2) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:nth-of-type(3) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:nth-of-type(4) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:nth-of-type(5) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd:nth-of-type(6) .with_tooltip > .tooltip {
    top: 4vw;
    transform: translate(0%, 0%);
    left: auto;
  }
  /* line 305, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .patient > .material-symbols-sharp {
    vertical-align: middle;
    margin-right: .5vw;
  }
  /* line 309, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .patient > .material-symbols-sharp:nth-child(n+3) {
    margin-left: 0.5vw;
    margin-right: 0;
    font-size: 1vw;
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
  }
  /* line 316, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .patient > .material-symbols-sharp.alert {
    color: #F70019;
  }
  /* line 320, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .patient > .material-symbols-sharp.success {
    color: #168f82;
  }
  /* line 324, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .patient > .material-symbols-sharp.warning {
    color: #FE9E12;
  }
  /* line 328, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .patient > .material-symbols-sharp.notice {
    color: #d3be00;
  }
  /* line 333, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .patient > .name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    max-width: 12vw;
  }
}

@media screen and (max-width: 1024px) and (min-width: 1920px) {
  /* line 333, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .patient > .name {
    max-width: 20vw;
  }
}

@media screen and (max-width: 1024px) {
  /* line 347, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .attributes > .time {
    font-weight: 300;
    margin-right: 1vw;
  }
  /* line 352, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .attributes > .material-symbols-sharp {
    vertical-align: middle;
  }
  /* line 357, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td > turbo-frame dl > dd .note {
    font-size: smaller;
    font-weight: 300;
    margin-top: 1vw;
    color: #000000;
  }
}

@media screen {
  /* line 560, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td dl {
    display: grid;
    grid-template-columns: 2vw auto 2vw auto;
    grid-gap: 0 1vw;
    margin: 0;
  }
}

@media screen and (min-width: 1920px) {
  /* line 560, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td dl {
    grid-template-columns: 1.5vw auto 1.5vw auto;
    grid-gap: 0 .75vw;
  }
}

@media screen and (max-width: 1024px) {
  /* line 560, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td dl {
    grid-template-columns: 7vw auto;
    grid-gap: 0 7vw;
    margin-top: 4vw;
  }
}

@media screen {
  /* line 576, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td dl dt {
    font-weight: bold;
    position: relative;
  }
  /* line 579, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td dl dt::after {
    content: ":";
    position: absolute;
    top: 0;
    right: -5px;
  }
  /* line 587, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> .simple-calendar) > .simple-calendar > table > tbody > tr > td dl dd {
    margin-left: 0;
  }
  /* line 598, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: .2fr 1fr 1fr 1fr;
    justify-content: space-between;
  }
  /* line 605, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > h3 {
    margin: 0;
    font-size: 2vw;
    grid-column: 1 / span 4;
    text-align: center;
    display: flex;
    justify-content: space-between;
  }
  /* line 613, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > h3 > a {
    text-decoration: none;
    color: inherit;
  }
  /* line 623, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure {
    margin: 0;
    text-align: center;
  }
  /* line 628, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure > figcaption > a {
    color: inherit;
  }
  /* line 634, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure > table {
    margin: 0 auto;
  }
  /* line 638, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure > table td.today {
    color: #b6b600;
  }
  /* line 642, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure > table td.vacation {
    color: #866c6c;
  }
  /* line 645, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure > table td.vacation.today {
    background-color: #ffffc0;
  }
  /* line 651, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure > table td.has-events:not(.vacation) {
    color: #007531;
  }
  /* line 655, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure > table td.has-events.today {
    background-color: #ffffc0;
  }
  /* line 661, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure > table td.full:not(.vacation) {
    color: #c21400;
  }
  /* line 665, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> turbo-frame) > [id^="month-"] > figure > table td.full.today {
    background-color: #ffffc0;
  }
  /* line 676, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> table) > h3 {
    margin: 0;
    font-size: 2vw;
    grid-column: 1 / span 4;
    text-align: center;
    display: flex;
    justify-content: space-between;
  }
  /* line 684, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> table) > h3 > a {
    text-decoration: none;
    color: inherit;
  }
  /* line 692, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> table) > div.day_note {
    border: 1px solid #dddddd;
    padding: 1vw;
  }
  /* line 207, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> table) > div.day_note > h5 {
    margin-top: 0;
    display: flex;
    align-items: center;
    font-size: inherit;
    font-family: inherit;
    font-weight: 400;
  }
  /* line 215, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar:has(> table) > div.day_note > .comment {
    font-size: 1vw;
    font-weight: 300;
    color: #000000;
    margin-top: 1vw;
  }
  /* line 701, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > h3 {
    margin: 0;
    font-size: 2vw;
    grid-column: 1 / span 4;
    text-align: center;
    display: flex;
    justify-content: space-between;
  }
  /* line 709, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > h3 > a {
    text-decoration: none;
    color: inherit;
  }
  /* line 717, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > ul#events {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
  }
  /* line 722, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > ul#events > li {
    display: grid;
    grid-template-columns: 2vw 2vw auto;
    grid-template-rows: auto auto;
    gap: 0;
    font-size: 1vw;
    margin-bottom: 0.5vw;
  }
  /* line 730, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > ul#events > li:last-child {
    margin-bottom: 0;
  }
  /* line 735, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > ul#events > li > *:nth-child(1) {
    grid-row: span 2;
  }
  /* line 739, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > ul#events > li > *:nth-child(2) {
    grid-row: span 2;
  }
  /* line 746, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > ul#events > li > *:nth-child(3) span.patient {
    cursor: pointer;
    border-bottom: 1px dashed #000000;
    text-decoration: none;
  }
  /* line 751, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > ul#events > li > *:nth-child(3) span.patient:hover {
    border-bottom-style: solid;
    color: #000000;
  }
  /* line 758, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar:has(> ul#events) > ul#events > li > *:nth-child(4) {
    font-weight: 200;
    font-size: 0.9vw;
  }
  /* line 767, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar > table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
    color: #7A7D7E;
    background-color: #ffffff;
    overflow: hidden;
    border: 1px solid #000000;
    border: none;
  }
  /* line 14, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar > table thead > tr > th {
    background-color: #dddddd;
    color: #000000;
    font-weight: bold;
    text-align: left;
    padding: 0.5rem;
    font-size: 120%;
    border-bottom: 2px solid #000000;
  }
}

@media screen and (max-width: 1024px) {
  /* line 14, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar > table thead > tr > th {
    font-size: 4vw;
    font-weight: 300;
  }
}

@media screen {
  /* line 43, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar > table tbody tr > td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid #dddddd;
  }
  /* line 48, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar > table tbody tr > td span {
    vertical-align: middle;
  }
  /* line 53, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar > table tbody tr > td span.material-symbols-sharp.check_circle.success {
    color: #168f82;
  }
  /* line 58, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar > table tbody tr > td span.material-symbols-sharp.help.warning {
    color: #FE9E12;
  }
  /* line 63, app/assets/stylesheets/_table.scss */
  body.signed.offices.show > main .entries > #calendar > table tbody tr > td span.material-symbols-sharp.error.error {
    color: #F70019;
  }
  /* line 773, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar > table > thead > tr > th {
    border-bottom: none;
    font-weight: 100;
  }
  /* line 20, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.future.on_hold {
    color: #C1C1C1;
  }
  /* line 23, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.future.prevention {
    color: #168f82;
  }
  /* line 26, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.future.examination {
    color: #000000;
  }
  /* line 29, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.future.procedure {
    color: #FE9E12;
  }
  /* line 32, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.future.emergency {
    color: #F70019;
  }
  /* line 789, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.current {
    background-color: #ffffc0;
  }
  /* line 20, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.current.on_hold {
    color: #C1C1C1;
  }
  /* line 23, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.current.prevention {
    color: #168f82;
  }
  /* line 26, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.current.examination {
    color: #000000;
  }
  /* line 29, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.current.procedure {
    color: #FE9E12;
  }
  /* line 32, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr.current.emergency {
    color: #F70019;
  }
  /* line 797, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr > td {
    border: 1px solid #dddddd;
  }
  /* line 800, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #calendar > table > tbody > tr > td > p.note {
    font-size: smaller;
    font-weight: 300;
    color: #000000;
  }
  /* line 812, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #selected_day {
    flex-grow: 1;
    width: 20vw;
    padding: 0 0 0 1vw;
    height: 49vw;
  }
}

@media screen and (max-width: 1024px) {
  /* line 812, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #selected_day {
    display: none;
  }
}

@media screen {
  /* line 822, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #selected_day > h3 {
    margin: 0;
    font-size: 2vw;
  }
}

@media screen and (min-width: 1920px) {
  /* line 822, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #selected_day > h3 {
    font-size: 1.5vw;
  }
}

@media screen {
  /* line 830, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #selected_day > h5.holiday {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1ex;
    background-color: #f0fbff;
  }
  /* line 837, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #selected_day > .day_open_time {
    margin-top: 0;
    background-color: #dddddd;
    padding: .6vw;
    border: 1px solid #dddddd;
  }
  /* line 844, app/assets/stylesheets/_office.scss */
  body.signed.offices.show > main .entries > #selected_day > dl {
    background-color: #dddddd;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: auto;
    height: 42.5vw;
    display: grid;
    grid-template-columns: 4vw auto;
    grid-gap: 0 0;
  }
  /* line 229, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > * {
    background-color: #ffffff;
    padding: 1vw .7vw;
    min-height: 2.5vw;
  }
  /* line 234, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > *:last-of-type {
    border-bottom: 1px solid #dddddd;
  }
  /* line 239, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dt {
    line-height: 2.5vw;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-bottom: none;
    font-size: 0.9vw;
  }
  /* line 246, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dt.day_note {
    display: none;
  }
  /* line 251, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd {
    margin-left: 0;
    border: 1px solid #dddddd;
    border-left: none;
    border-bottom: none;
  }
  /* line 257, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd:empty {
    background-color: #f2fff8;
  }
  /* line 261, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd:has(.acute_gap) {
    background-color: #ffecec;
  }
  /* line 265, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd:has(.day_note) {
    grid-column: 1 / span 2;
    height: max-content;
    border-left: 1px solid #dddddd;
  }
  /* line 207, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd:has(.day_note) > .day_note > h5 {
    margin-top: 0;
    display: flex;
    align-items: center;
    font-size: inherit;
    font-family: inherit;
    font-weight: 400;
  }
  /* line 215, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd:has(.day_note) > .day_note > .comment {
    font-size: 1vw;
    font-weight: 300;
    color: #000000;
    margin-top: 1vw;
  }
  /* line 20, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd > div.on_hold {
    color: #C1C1C1;
  }
  /* line 23, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd > div.prevention {
    color: #168f82;
  }
  /* line 26, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd > div.examination {
    color: #000000;
  }
  /* line 29, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd > div.procedure {
    color: #FE9E12;
  }
  /* line 32, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd > div.emergency {
    color: #F70019;
  }
  /* line 278, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd > div.vacation {
    font-size: 2vw;
  }
  /* line 282, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd > div.vacation .with_tooltip > .material-symbols-sharp {
    font-size: 3vw;
    vertical-align: middle;
  }
  /* line 288, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd > div.vacation > .description {
    margin-left: 1vw;
  }
  /* line 296, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd:nth-of-type(1) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #selected_day > dl > dd:nth-of-type(2) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #selected_day > dl > dd:nth-of-type(3) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #selected_day > dl > dd:nth-of-type(4) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #selected_day > dl > dd:nth-of-type(5) .with_tooltip > .tooltip, body.signed.offices.show > main .entries > #selected_day > dl > dd:nth-of-type(6) .with_tooltip > .tooltip {
    top: 4vw;
    transform: translate(0%, 0%);
    left: auto;
  }
  /* line 305, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .patient > .material-symbols-sharp {
    vertical-align: middle;
    margin-right: .5vw;
  }
  /* line 309, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .patient > .material-symbols-sharp:nth-child(n+3) {
    margin-left: 0.5vw;
    margin-right: 0;
    font-size: 1vw;
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
  }
  /* line 316, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .patient > .material-symbols-sharp.alert {
    color: #F70019;
  }
  /* line 320, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .patient > .material-symbols-sharp.success {
    color: #168f82;
  }
  /* line 324, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .patient > .material-symbols-sharp.warning {
    color: #FE9E12;
  }
  /* line 328, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .patient > .material-symbols-sharp.notice {
    color: #d3be00;
  }
  /* line 333, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .patient > .name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    max-width: 12vw;
  }
}

@media screen and (min-width: 1920px) {
  /* line 333, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .patient > .name {
    max-width: 20vw;
  }
}

@media screen {
  /* line 347, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .attributes > .time {
    font-weight: 300;
    margin-right: 1vw;
  }
  /* line 352, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .attributes > .material-symbols-sharp {
    vertical-align: middle;
  }
  /* line 357, app/assets/stylesheets/office/_helpers.scss */
  body.signed.offices.show > main .entries > #selected_day > dl > dd .note {
    font-size: smaller;
    font-weight: 300;
    margin-top: 1vw;
    color: #000000;
  }
  /* line 861, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings {
    display: flex;
    justify-content: space-between;
  }
  /* line 870, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="edit_office_"] {
    flex-grow: 1;
    flex-basis: 0;
    margin-right: 3vw;
  }
  /* line 876, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] {
    flex-grow: 2;
    flex-basis: 0;
    font-family: "Poppins", sans-serif;
  }
  /* line 881, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .head {
    display: flex;
    justify-content: space-around;
    font-weight: 200;
    margin-bottom: 1vw;
  }
  /* line 887, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .head > .th {
    flex-basis: 0;
  }
  /* line 890, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .head > .th:nth-child(1) {
    flex-grow: 3;
  }
  /* line 894, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .head > .th:nth-child(2) {
    flex-grow: 2;
  }
  /* line 898, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .head > .th:nth-child(3) {
    flex-grow: 2;
  }
  /* line 902, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .head > .th:nth-child(4) {
    flex-grow: 1;
  }
  /* line 909, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame {
    display: flex;
    justify-content: space-around;
  }
  /* line 913, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > .td {
    flex-basis: 0;
    font-weight: 500;
  }
  /* line 917, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > .td:nth-of-type(1) {
    flex-grow: 3;
    font-weight: 300;
  }
  /* line 922, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > .td:nth-of-type(2) {
    flex-grow: 2;
  }
  /* line 926, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > .td:nth-of-type(3) {
    flex-grow: 2;
  }
  /* line 930, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > .td:nth-of-type(4) {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
  }
  /* line 935, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > .td:nth-of-type(4) button[type="submit"] {
    padding: 1vw 2vw;
    background-color: #dddddd;
    color: #000000;
    border: 1px solid #7A7D7E;
    cursor: pointer;
    text-decoration: none;
    font-size: 1vw;
    padding: 0.25em .55em .0em .55em;
    border-width: .0125vw;
  }
  /* line 215, app/assets/stylesheets/_custom.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > .td:nth-of-type(4) button[type="submit"] > span {
    vertical-align: middle;
  }
  /* line 941, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form {
    flex-grow: 1;
    display: flex;
    justify-content: space-around;
  }
  /* line 946, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .td {
    flex-basis: 0;
    display: flex;
    justify-content: flex-start;
  }
  /* line 951, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .td:nth-of-type(1) {
    flex-grow: 3;
  }
  /* line 955, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .td:nth-of-type(2) {
    flex-grow: 2;
  }
  /* line 959, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .td:nth-of-type(3) {
    flex-grow: 2;
  }
  /* line 964, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .td > .input-group > label {
    display: none;
  }
  /* line 968, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .td > .input-group > input {
    font-size: 1vw;
    font-family: "Poppins", sans-serif;
    width: 2.5em;
    padding: 0;
  }
  /* line 975, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .td > .input-group > .append {
    font-size: xx-small;
    display: inline-block;
  }
  /* line 982, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .actions {
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
  }
  /* line 988, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .actions > button[type="submit"] {
    padding: 1vw 2vw;
    background-color: #dddddd;
    color: #000000;
    border: 1px solid #7A7D7E;
    cursor: pointer;
    text-decoration: none;
    font-size: 1vw;
    padding: 0.25em .55em .0em .55em;
    border-width: .0125vw;
    background-color: #F70019;
  }
  /* line 215, app/assets/stylesheets/_custom.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .actions > button[type="submit"] > span {
    vertical-align: middle;
  }
  /* line 992, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .actions > button[type="submit"] > .material-symbols-sharp {
    font-weight: bold;
    color: #ffffff;
  }
  /* line 999, app/assets/stylesheets/_office.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .actions > a {
    padding: 1vw 2vw;
    background-color: #dddddd;
    color: #000000;
    border: 1px solid #7A7D7E;
    cursor: pointer;
    text-decoration: none;
    font-size: 1vw;
    padding: 0.25em .55em .0em .55em;
    border-width: .0125vw;
  }
  /* line 215, app/assets/stylesheets/_custom.scss */
  body.signed.offices.edit > main > #settings > [id^="day_open_times_office_"] > .data > turbo-frame > form > .actions > a > span {
    vertical-align: middle;
  }
  /* line 1012, app/assets/stylesheets/_office.scss */
  .back-to-top-button {
    position: fixed;
    right: 2vw;
    bottom: 2vw;
    width: 5vw;
    height: 5vw;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25vw 0.5vw rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    transform: translateY(2vw);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}

@media screen and (max-width: 1024px) {
  /* line 1012, app/assets/stylesheets/_office.scss */
  .back-to-top-button {
    width: 10vw;
    height: 10vw;
    right: 4vw;
    bottom: 4vw;
  }
  /* line 1037, app/assets/stylesheets/_office.scss */
  .back-to-top-button svg {
    width: 5vw;
    height: 5vw;
  }
}

@media screen {
  /* line 1043, app/assets/stylesheets/_office.scss */
  .back-to-top-button.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* line 1048, app/assets/stylesheets/_office.scss */
  .back-to-top-button:hover {
    background-color: black;
  }
  /* line 1052, app/assets/stylesheets/_office.scss */
  .back-to-top-button svg {
    width: 3vw;
    height: 3vw;
  }
}

/* line 5, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal {
  min-width: 41vw;
}

/* line 11, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

/* line 16, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main > .actions {
  border-bottom: 1px solid #000000;
  margin-bottom: 1vw;
  margin-top: 0;
}

/* line 21, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main > .actions > a {
  padding: 1vw 2vw;
  background-color: #dddddd;
  color: #000000;
  border: 1px solid #7A7D7E;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-bottom: none;
}

/* line 215, app/assets/stylesheets/_custom.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main > .actions > a > span {
  vertical-align: middle;
}

/* line 26, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main > .actions > a.current {
  background-color: #000000;
  color: white;
}

/* line 205, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form .field_with_errors {
  border-color: #E83731 !important;
}

/* line 209, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data {
  display: flex;
  justify-content: center;
  margin-bottom: 1vw;
}

/* line 215, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group {
  display: flex;
  margin-bottom: 2vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
  gap: 0.5vw;
}

/* line 132, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

/* line 138, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group:last-child {
  margin-bottom: 0;
}

/* line 142, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 146, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group:has(label) {
  align-items: center;
}

/* line 150, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* line 157, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > label {
  display: none;
}

/* line 160, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
}

/* line 166, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input[type="text"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input[type="number"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input[type="file"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input[type="email"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input [type="tel"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input [type="password"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input [type="time"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input [type="date"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > textarea, body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > select {
  border: none;
  background-color: transparent;
  color: inherit;
  width: 100%;
  padding: 0;
  font-size: larger;
}

/* line 175, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 179, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > textarea {
  font-size: medium;
}

/* line 183, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > input[type="time"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group input[type="date"] {
  width: auto;
}

/* line 187, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 219, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset > .help {
  margin-top: -1rem;
  font-size: smaller;
  display: block;
  position: relative;
  top: -1rem;
  color: #7A7D7E;
}

/* line 225, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard {
  margin-bottom: 1vw;
}

/* line 228, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1vw;
}

/* line 238, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > h4 {
  font-size: 1.4vw;
}

/* line 242, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group {
  display: flex;
  margin-bottom: 2vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
  gap: 0.5vw;
}

/* line 132, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

/* line 138, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group:last-child {
  margin-bottom: 0;
}

/* line 142, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 146, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group:has(label) {
  align-items: center;
}

/* line 150, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* line 157, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > label {
  display: none;
}

/* line 160, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
}

/* line 166, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input[type="text"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input[type="number"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input[type="file"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input[type="email"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input [type="tel"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input [type="password"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input [type="time"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input [type="date"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > textarea, body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > select {
  border: none;
  background-color: transparent;
  color: inherit;
  width: 100%;
  padding: 0;
  font-size: larger;
}

/* line 175, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 179, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > textarea {
  font-size: medium;
}

/* line 183, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > input[type="time"], body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group input[type="date"] {
  width: auto;
}

/* line 187, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 246, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > fieldset > .help {
  margin-top: -1rem;
  font-size: smaller;
  display: block;
  position: relative;
  top: -1rem;
  color: #7A7D7E;
}

/* line 251, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.wizard.office > h4 {
  grid-column: 1 / span 2;
  margin-bottom: 0;
  font-size: 1.4vw;
}

/* line 39, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > section.data > fieldset:nth-of-type(2) {
  overflow-y: auto;
  height: 32vw;
}

/* line 47, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1vw;
}

/* line 52, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > a {
  padding: 1vw 2vw;
  background-color: #dddddd;
  color: #000000;
  border: 1px solid #7A7D7E;
  cursor: pointer;
  text-decoration: none;
  font-size: 2vw;
  padding: 1vw 2vw;
  display: inline-block;
}

/* line 215, app/assets/stylesheets/_custom.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > a > span {
  vertical-align: middle;
}

/* line 56, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > a.delete {
  background-color: #E83731;
  color: #ffffff;
}

/* line 62, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group {
  display: flex;
  margin-bottom: 2vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
  gap: 0.5vw;
  border: none;
  background: none;
  align-items: center;
}

/* line 132, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

/* line 138, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group:last-child {
  margin-bottom: 0;
}

/* line 142, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 146, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group:has(label) {
  align-items: center;
}

/* line 150, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* line 157, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > label {
  display: none;
}

/* line 160, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
}

/* line 166, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input[type="text"], body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input[type="number"], body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input[type="file"], body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input[type="email"], body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input [type="tel"], body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input [type="password"], body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input [type="time"], body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input [type="date"], body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > textarea, body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > select {
  border: none;
  background-color: transparent;
  color: inherit;
  width: 100%;
  padding: 0;
  font-size: larger;
}

/* line 175, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 179, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > textarea {
  font-size: medium;
}

/* line 183, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > input[type="time"], body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group input[type="date"] {
  width: auto;
}

/* line 187, app/assets/stylesheets/_form.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 70, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > .prepend > span.material-symbols-sharp.success {
  color: #168f82;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
}

/* line 75, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main form > .actions > .input-group > .prepend > span.material-symbols-sharp.alert {
  color: #F70019;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
}

/* line 86, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main #found-patients > ul, body.signed dialog#modal > #modal_dialog_body > section > .main #found-patients > p {
  position: absolute;
  background-color: white;
  border: 1px solid black;
  padding: 2vw;
  list-style: none;
  margin-top: -2vw;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 999999;
}

/* line 98, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main #found-patients > ul > li {
  margin: 1.5vw 0;
}

/* line 101, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main #found-patients > ul > li:first-child {
  margin-top: 0;
}

/* line 105, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main #found-patients > ul > li:last-child {
  margin-bottom: 0;
}

/* line 109, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main #found-patients > ul > li.selected {
  background-color: rgba(19, 89, 90, 0.5);
}

/* line 113, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main #found-patients > ul > li > * {
  pointer-events: none;
}

/* line 117, app/assets/stylesheets/_entry.scss */
body.signed dialog#modal > #modal_dialog_body > section > .main #found-patients > ul > li > .material-symbols-sharp {
  vertical-align: middle;
  margin-right: .5vw;
}

/* line 11, app/assets/stylesheets/patients/_connect.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  width: fit-content;
}

@media (max-width: 1024px) {
  /* line 11, app/assets/stylesheets/patients/_connect.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices {
    margin: 9vw auto 0 auto;
  }
}

/* line 21, app/assets/stylesheets/patients/_connect.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  padding-bottom: 1vw;
  margin-bottom: 1vw;
  border-bottom: 1px solid #dddddd;
}

/* line 30, app/assets/stylesheets/patients/_connect.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

/* line 38, app/assets/stylesheets/patients/_connect.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  margin: 0;
}

@media (max-width: 1024px) {
  /* line 38, app/assets/stylesheets/patients/_connect.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 1vw auto 0 auto;
  }
}

/* line 16, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) dt {
  display: flex;
  align-items: center;
}

/* line 20, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 20, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) dt > span {
    font-size: 6vw;
  }
}

/* line 27, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) dt:nth-of-type(1) {
  color: #7A7D7E;
}

/* line 31, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) dt:nth-of-type(n+2) {
  color: #168f82;
}

/* line 36, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

@media (max-width: 1024px) {
  /* line 36, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) dd {
    font-size: 4vw;
  }
}

/* line 49, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) dd.error {
  font-weight: 500;
}

/* line 53, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree) dd > code {
  font-size: inherit;
}

/* line 60, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree):has(.degree) dd:nth-of-type(2) {
  color: #7A7D7E;
  font-size: smaller;
}

@media (max-width: 1024px) {
  /* line 60, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree):has(.degree) dd:nth-of-type(2) {
    font-size: 3vw;
  }
}

/* line 69, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree):has(.degree) dd > .degree {
  font-weight: 200;
}

/* line 73, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.connect > .col:nth-child(2) > form > ul.offices > li > label dl:has(.degree):has(.degree) dd > .name {
  font-weight: 600;
}

/* line 12, app/assets/stylesheets/patients/book/_base.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2):has(.col) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  /* line 12, app/assets/stylesheets/patients/book/_base.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2):has(.col) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10vw;
  }
}

/* line 28, app/assets/stylesheets/patients/book/_base.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  margin: 0;
}

@media (max-width: 1024px) {
  /* line 28, app/assets/stylesheets/patients/book/_base.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 1vw auto 0 auto;
  }
}

/* line 16, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office dt {
  display: flex;
  align-items: center;
}

/* line 20, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 20, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office dt > span {
    font-size: 6vw;
  }
}

/* line 27, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office dt:nth-of-type(1) {
  color: #7A7D7E;
}

/* line 31, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office dt:nth-of-type(n+2) {
  color: #168f82;
}

/* line 36, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

@media (max-width: 1024px) {
  /* line 36, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office dd {
    font-size: 4vw;
  }
}

/* line 49, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office dd.error {
  font-weight: 500;
}

/* line 53, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office dd > code {
  font-size: inherit;
}

/* line 60, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office:has(.degree) dd:nth-of-type(2) {
  color: #7A7D7E;
  font-size: smaller;
}

@media (max-width: 1024px) {
  /* line 60, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office:has(.degree) dd:nth-of-type(2) {
    font-size: 3vw;
  }
}

/* line 69, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office:has(.degree) dd > .degree {
  font-weight: 200;
}

/* line 73, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.office:has(.degree) dd > .name {
  font-weight: 600;
}

/* line 32, app/assets/stylesheets/patients/book/_base.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  background-color: lightgoldenrodyellow;
  padding: 0.1vw;
  margin-top: 2vw;
  width: fit-content;
}

@media (max-width: 1024px) {
  /* line 32, app/assets/stylesheets/patients/book/_base.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 0 auto 0 auto;
    padding: 0.4vw;
  }
}

/* line 139, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price dt {
  display: flex;
  align-items: center;
}

/* line 143, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 143, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price dt > span {
    font-size: 6vw;
  }
}

/* line 150, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price dt:nth-of-type(1) {
  color: darkgoldenrod;
}

/* line 155, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

@media (max-width: 1024px) {
  /* line 155, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price dd {
    font-size: 4vw;
  }
}

/* line 165, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price dd > .name {
  font-weight: 200;
  font-size: 75%;
}

/* line 170, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price dd > .price {
  font-weight: 600;
}

/* line 177, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price:has(.degree) dd:nth-of-type(2) {
  color: #7A7D7E;
  font-size: smaller;
}

@media (max-width: 1024px) {
  /* line 177, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price:has(.degree) dd:nth-of-type(2) {
    font-size: 3vw;
  }
}

/* line 186, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price:has(.degree) dd > .degree {
  font-weight: 200;
}

/* line 190, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price:has(.degree) dd > .name {
  font-weight: 600;
}

@media (max-width: 1024px) {
  /* line 32, app/assets/stylesheets/patients/book/_base.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.price {
    margin: 08vw auto 0 auto;
    padding: 1vw 3vw;
    list-style-type: initial;
    list-style-position: inside;
    width: auto;
  }
}

/* line 45, app/assets/stylesheets/patients/book/_base.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.duration {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  background-color: transparent;
  padding: 0.1vw;
}

@media (max-width: 1024px) {
  /* line 45, app/assets/stylesheets/patients/book/_base.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.duration {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 0 auto 0 auto;
    padding: 0.4vw;
  }
}

/* line 214, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.duration dt {
  display: flex;
  align-items: center;
}

/* line 218, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.duration dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 218, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.duration dt > span {
    font-size: 6vw;
  }
}

/* line 225, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.duration dt:nth-of-type(1) {
  color: #FE9E12;
}

/* line 230, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.duration dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

@media (max-width: 1024px) {
  /* line 230, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) dl.duration dd {
    font-size: 6vw;
  }
}

/* line 50, app/assets/stylesheets/patients/book/_base.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) > hr {
  width: 14vw;
  margin-left: 0;
  border: none;
  height: 0;
  border-top: 1px solid black;
}

@media (max-width: 1024px) {
  /* line 50, app/assets/stylesheets/patients/book/_base.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) > hr {
    width: 100%;
  }
}

/* line 62, app/assets/stylesheets/patients/book/_base.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) .entry-type {
  margin-top: 2vw;
  padding: .25em .4em;
  font-size: 100%;
  font-weight: 200;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
}

@media (max-width: 1024px) {
  /* line 62, app/assets/stylesheets/patients/book/_base.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) .entry-type {
    margin-top: 8vw;
    font-size: 120%;
    padding: .5em .8em;
    width: auto;
  }
}

/* line 314, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) .entry-type.prevention {
  color: #ffffff;
  background-color: #19A496;
}

/* line 319, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) .entry-type.examination {
  color: #ffffff;
  background-color: #000000;
}

/* line 324, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) .entry-type.procedure {
  color: #000000;
  background-color: #C1C1C1;
}

/* line 329, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) .entry-type.emergency {
  color: #ffffff;
  background-color: #990000;
}

/* line 66, app/assets/stylesheets/patients/book/_base.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) ul.date-of-visit {
  width: 15vw;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  /* line 66, app/assets/stylesheets/patients/book/_base.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) ul.date-of-visit {
    width: 100%;
  }
}

/* line 89, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) ul.date-of-visit > li {
  border-top: 1px solid #dddddd;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-left: 0.5vw solid #46D4C4;
  margin-bottom: 1vw;
  cursor: pointer;
}

@media (max-width: 1024px) {
  /* line 89, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) ul.date-of-visit > li {
    border-left: 2.5vw solid #46D4C4;
  }
}

/* line 102, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) ul.date-of-visit > li > .info {
  padding-left: 0.5vw;
  pointer-events: none;
}

@media (max-width: 1024px) {
  /* line 102, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) ul.date-of-visit > li > .info {
    padding-left: 2.5vw;
  }
}

/* line 110, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) ul.date-of-visit > li > .times {
  pointer-events: none;
}

/* line 112, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book > .col:nth-child(2) > .col:nth-child(1) ul.date-of-visit > li > .times > div:nth-child(2) {
  color: #cacaca;
}

/* line 10, app/assets/stylesheets/patients/book/entries/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form {
  display: inline-block;
  align-items: center;
  margin-right: 2rem;
}

@media (max-width: 1024px) {
  /* line 10, app/assets/stylesheets/patients/book/entries/_form.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form {
    margin-right: 0;
  }
}

/* line 19, app/assets/stylesheets/patients/book/entries/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* line 24, app/assets/stylesheets/patients/book/entries/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #000000;
  display: inline-block;
}

/* line 32, app/assets/stylesheets/patients/book/entries/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions button > span {
  font-size: 4vw;
}

@media (max-width: 1024px) {
  /* line 32, app/assets/stylesheets/patients/book/entries/_form.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions button > span {
    font-size: 14vw;
  }
}

/* line 2, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions button > span.secondary {
  color: #C1C1C1;
}

/* line 5, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions button > span.primary {
  color: #000000;
}

/* line 8, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions button > span.warning {
  color: #FE9E12;
}

/* line 11, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions button > span.alert {
  color: #F70019;
}

/* line 14, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions button > span.success {
  color: #168f82;
}

/* line 42, app/assets/stylesheets/patients/book/entries/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions .family-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
}

/* line 48, app/assets/stylesheets/patients/book/entries/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions .family-option input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

/* line 54, app/assets/stylesheets/patients/book/entries/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) .booking-form .actions .family-option label {
  cursor: pointer;
  user-select: none;
}

/* line 62, app/assets/stylesheets/patients/book/entries/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) > a {
  display: inline-block;
  color: #000000;
  text-decoration: none;
}

/* line 67, app/assets/stylesheets/patients/book/entries/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) > a > span {
  font-size: 4vw;
}

@media (max-width: 1024px) {
  /* line 67, app/assets/stylesheets/patients/book/entries/_form.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) > a > span {
    font-size: 14vw;
  }
}

/* line 2, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) > a > span.secondary {
  color: #C1C1C1;
}

/* line 5, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) > a > span.primary {
  color: #000000;
}

/* line 8, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) > a > span.warning {
  color: #FE9E12;
}

/* line 11, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) > a > span.alert {
  color: #F70019;
}

/* line 14, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(1) > a > span.success {
  color: #168f82;
}

/* line 12, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(1) > ul.symptoms {
  font-weight: 200;
  font-size: smaller;
}

/* line 19, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) h3 {
  margin: -1.6vw 0 1vw -.6vw;
  font-size: 2vw;
  display: flex;
  align-items: center;
  border-bottom: 1px solid gray;
}

@media (max-width: 1024px) {
  /* line 19, app/assets/stylesheets/patients/book/entries/_detail.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) h3 {
    font-size: 5vw;
    margin: -4vw 0 2vw 2.5vw;
    gap: 6vw;
  }
}

/* line 32, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) h3 > span.material-symbols-sharp {
  font-size: 5vw;
  font-weight: 900;
  line-height: 5vw;
}

@media (max-width: 1024px) {
  /* line 32, app/assets/stylesheets/patients/book/entries/_detail.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) h3 > span.material-symbols-sharp {
    font-size: 10vw;
    line-height: 10vw;
  }
}

/* line 42, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) h3 > span.material-symbols-sharp.success {
  color: #168f82;
}

/* line 46, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) h3 > span.material-symbols-sharp.alert {
  color: #F70019;
}

/* line 52, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > figure.entry {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  /* line 52, app/assets/stylesheets/patients/book/entries/_detail.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > figure.entry {
    gap: 4vw;
    text-align: left;
  }
}

/* line 63, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > figure.entry > span.material-symbols-sharp {
  vertical-align: middle;
  color: #cacaca;
  font-size: 3.5vw;
}

@media (max-width: 1024px) {
  /* line 63, app/assets/stylesheets/patients/book/entries/_detail.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > figure.entry > span.material-symbols-sharp {
    font-size: 14vw;
  }
}

/* line 75, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > figure.entry > .info > div:nth-child(2) {
  color: #cacaca;
}

/* line 83, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > figure.entry > .times > div:nth-child(2) {
  color: #cacaca;
}

/* line 90, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > form.button_to {
  margin-top: 1.6vw;
}

/* line 93, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > form.button_to button[type="submit"] {
  padding: 1vw 2vw;
  background-color: #dddddd;
  color: #000000;
  border: 1px solid #7A7D7E;
  cursor: pointer;
  text-decoration: none;
  font-size: inherit;
  padding: .5vw 1vw;
  display: flex;
  align-items: center;
}

/* line 215, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > form.button_to button[type="submit"] > span {
  vertical-align: middle;
}

/* line 99, app/assets/stylesheets/patients/book/entries/_detail.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > .col:nth-child(2) > form.button_to button[type="submit"] > span {
  margin-right: 1vw;
  font-size: inherit;
}

/* line 10, app/assets/stylesheets/patients/book/entries/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  color: #7A7D7E;
  background-color: #ffffff;
  overflow: hidden;
  border: 1px solid #000000;
  font-size: .9vw;
  font-weight: 300;
}

/* line 14, app/assets/stylesheets/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table thead > tr > th {
  background-color: #dddddd;
  color: #000000;
  font-weight: bold;
  text-align: left;
  padding: 0.5rem;
  font-size: 120%;
  border-bottom: 2px solid #000000;
}

@media (max-width: 1024px) {
  /* line 14, app/assets/stylesheets/_table.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table thead > tr > th {
    font-size: 4vw;
    font-weight: 300;
  }
}

/* line 43, app/assets/stylesheets/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table tbody tr > td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #dddddd;
}

/* line 48, app/assets/stylesheets/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table tbody tr > td span {
  vertical-align: middle;
}

/* line 53, app/assets/stylesheets/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table tbody tr > td span.material-symbols-sharp.check_circle.success {
  color: #168f82;
}

/* line 58, app/assets/stylesheets/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table tbody tr > td span.material-symbols-sharp.help.warning {
  color: #FE9E12;
}

/* line 63, app/assets/stylesheets/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table tbody tr > td span.material-symbols-sharp.error.error {
  color: #F70019;
}

@media (max-width: 1024px) {
  /* line 10, app/assets/stylesheets/patients/book/entries/_table.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table {
    font-size: 5vw;
  }
  /* line 18, app/assets/stylesheets/patients/book/entries/_table.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > thead {
    display: none;
  }
}

@media (max-width: 1024px) {
  /* line 24, app/assets/stylesheets/patients/book/entries/_table.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    border-bottom: 1px solid #000000;
  }
}

/* line 20, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr.on_hold {
  color: #C1C1C1;
}

/* line 23, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr.prevention {
  color: #168f82;
}

/* line 26, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr.examination {
  color: #000000;
}

/* line 29, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr.procedure {
  color: #FE9E12;
}

/* line 32, app/assets/stylesheets/office/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr.emergency {
  color: #F70019;
}

/* line 35, app/assets/stylesheets/patients/book/entries/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr.today {
  background-color: #ffffc0;
}

@media (max-width: 1024px) {
  /* line 39, app/assets/stylesheets/patients/book/entries/_table.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td {
    border: none;
    width: fit-content;
  }
}

/* line 45, app/assets/stylesheets/patients/book/entries/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td.symptoms {
  width: 30%;
}

@media (max-width: 1024px) {
  /* line 45, app/assets/stylesheets/patients/book/entries/_table.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td.symptoms {
    width: fit-content;
  }
}

/* line 53, app/assets/stylesheets/patients/book/entries/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  margin: 0;
}

@media (max-width: 1024px) {
  /* line 53, app/assets/stylesheets/patients/book/entries/_table.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 1vw auto 0 auto;
  }
}

/* line 16, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office dt {
  display: flex;
  align-items: center;
}

/* line 20, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 20, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office dt > span {
    font-size: 6vw;
  }
}

/* line 27, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office dt:nth-of-type(1) {
  color: #7A7D7E;
}

/* line 31, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office dt:nth-of-type(n+2) {
  color: #168f82;
}

/* line 36, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

@media (max-width: 1024px) {
  /* line 36, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office dd {
    font-size: 4vw;
  }
}

/* line 49, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office dd.error {
  font-weight: 500;
}

/* line 53, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office dd > code {
  font-size: inherit;
}

/* line 60, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office:has(.degree) dd:nth-of-type(2) {
  color: #7A7D7E;
  font-size: smaller;
}

@media (max-width: 1024px) {
  /* line 60, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office:has(.degree) dd:nth-of-type(2) {
    font-size: 3vw;
  }
}

/* line 69, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office:has(.degree) dd > .degree {
  font-weight: 200;
}

/* line 73, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.office:has(.degree) dd > .name {
  font-weight: 600;
}

/* line 57, app/assets/stylesheets/patients/book/entries/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  background-color: lightgoldenrodyellow;
  padding: 0.1vw;
  width: fit-content;
  padding: 0.1vw;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  /* line 57, app/assets/stylesheets/patients/book/entries/_table.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 0 auto 0 auto;
    padding: 0.4vw;
  }
}

/* line 139, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price dt {
  display: flex;
  align-items: center;
}

/* line 143, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 143, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price dt > span {
    font-size: 6vw;
  }
}

/* line 150, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price dt:nth-of-type(1) {
  color: darkgoldenrod;
}

/* line 155, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

@media (max-width: 1024px) {
  /* line 155, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price dd {
    font-size: 4vw;
  }
}

/* line 165, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price dd > .name {
  font-weight: 200;
  font-size: 75%;
}

/* line 170, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price dd > .price {
  font-weight: 600;
}

/* line 177, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price:has(.degree) dd:nth-of-type(2) {
  color: #7A7D7E;
  font-size: smaller;
}

@media (max-width: 1024px) {
  /* line 177, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price:has(.degree) dd:nth-of-type(2) {
    font-size: 3vw;
  }
}

/* line 186, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price:has(.degree) dd > .degree {
  font-weight: 200;
}

/* line 190, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > dl.price:has(.degree) dd > .name {
  font-weight: 600;
}

/* line 65, app/assets/stylesheets/patients/book/entries/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > .time {
  text-align: center;
}

/* line 69, app/assets/stylesheets/patients/book/entries/_table.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries > .col:nth-child(2) > table > tbody > tr > td > p.note {
  font: caption;
  font-size: smaller;
  font-weight: 300;
  margin-bottom: 0;
  color: #000000;
}

@media (max-width: 1024px) {
  /* line 20, app/assets/stylesheets/patients/book/entries/_base.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries:has(table) {
    flex-flow: column;
  }
}

/* line 26, app/assets/stylesheets/patients/book/entries/_base.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entries:has(table) > .col:nth-child(2) {
  margin-bottom: 16vw;
}

/* line 13, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* line 20, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li:last-child > button {
  margin-bottom: 0;
}

/* line 25, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button {
  padding: 1vw 2vw;
  background-color: #000000;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.4vw;
  width: 18vw;
  margin-bottom: 1vw;
}

@media (max-width: 1024px) {
  /* line 25, app/assets/stylesheets/patients/book/_entry_types.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button {
    padding: 4vw 8vw;
    font-size: 6vw;
  }
}

/* line 184, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button[disabled] {
  background-color: #dddddd;
  color: #cacaca;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  /* line 25, app/assets/stylesheets/patients/book/_entry_types.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button {
    width: 100%;
  }
}

/* line 33, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button.prevention {
  color: #ffffff;
  background-color: #19A496;
}

/* line 42, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button.procedure {
  color: #000000;
  background-color: #C1C1C1;
}

/* line 47, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button.emergency {
  color: #ffffff;
  background-color: #990000;
}

/* line 53, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button.paid > small {
  color: gold;
}

/* line 58, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button[disabled] {
  background-color: #f9f9f9;
  color: #7A7D7E;
  border: 1px dashed #7A7D7E;
}

/* line 63, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button[disabled] > small {
  color: inherit;
}

/* line 68, app/assets/stylesheets/patients/book/_entry_types.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.entry-types > .col:nth-child(2) > .col:nth-child(2) > form > ul > li > button > small {
  display: block;
  font-size: 60%;
  font-weight: 300;
  margin-top: .25em;
}

/* line 11, app/assets/stylesheets/patients/book/_symptoms.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.symptoms > .col:nth-child(2) > .col > form {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: .25vw 1vw;
}

@media (max-width: 1024px) {
  /* line 11, app/assets/stylesheets/patients/book/_symptoms.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.symptoms > .col:nth-child(2) > .col > form {
    grid-template-columns: 3fr auto;
    grid-gap: 0.25vw 4vw;
    text-align: left;
  }
}

/* line 22, app/assets/stylesheets/patients/book/_symptoms.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.symptoms > .col:nth-child(2) > .col > form > hr {
  grid-column: 1 / span 2;
  width: 100%;
  border-color: white;
}

/* line 28, app/assets/stylesheets/patients/book/_symptoms.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.symptoms > .col:nth-child(2) > .col > form > .actions {
  width: fit-content;
  margin-top: 1vw;
  grid-column: 1 / span 2;
}

@media (max-width: 1024px) {
  /* line 28, app/assets/stylesheets/patients/book/_symptoms.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.symptoms > .col:nth-child(2) > .col > form > .actions {
    width: initial;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 8vw;
  }
}

/* line 12, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member {
  width: 14vw;
  margin: 3vw 0;
  font-weight: 200;
}

@media (max-width: 1024px) {
  /* line 12, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member {
    margin: 11vw 0;
    width: 100%;
  }
}

/* line 22, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > figcaption {
  margin-bottom: 1vw;
  font-weight: 200;
  font-size: 1.3vw;
}

@media (max-width: 1024px) {
  /* line 22, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > figcaption {
    margin-bottom: 2vw;
    font-weight: 200;
    font-size: 6vw;
  }
}

/* line 34, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > .entry-type {
  margin-top: 0;
}

@media (max-width: 1024px) {
  /* line 38, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > ul.symptoms {
    font-size: 5vw;
  }
}

/* line 44, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  background-color: transparent;
  padding: 0.1vw;
}

@media (max-width: 1024px) {
  /* line 44, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 0 auto 0 auto;
    padding: 0.4vw;
  }
}

/* line 214, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration dt {
  display: flex;
  align-items: center;
}

/* line 218, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 218, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration dt > span {
    font-size: 6vw;
  }
}

/* line 225, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration dt:nth-of-type(1) {
  color: #FE9E12;
}

/* line 230, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

@media (max-width: 1024px) {
  /* line 230, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration dd {
    font-size: 6vw;
  }
}

/* line 48, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration dt:nth-of-type(1) {
  color: #C1C1C1;
}

/* line 53, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration dd {
  font-size: 1vw;
}

@media (max-width: 1024px) {
  /* line 53, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > dl.duration dd {
    font-size: 4vw;
  }
}

/* line 61, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(1) > figure.member > hr {
  border: none;
  border-top: 1px solid black;
}

@media (max-width: 1024px) {
  /* line 68, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) {
    width: 100%;
  }
}

/* line 75, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr 0.3fr;
  gap: 1vw;
  border: none;
  padding: 0;
  margin-bottom: 1vw;
}

/* line 83, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset > select {
  border: 1px solid #000000;
  background: transparent;
  margin: 0;
  padding: 1vw;
  font-size: 1vw;
  border-radius: .5vw;
  color: #000000;
}

@media (max-width: 1024px) {
  /* line 83, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset > select {
    font-size: 4vw;
    border-radius: 1vw;
  }
}

/* line 98, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset > button {
  font-size: 2vw;
  letter-spacing: -0.1vw;
  color: #000000;
  background-color: #51dacf;
  border: 0.125vw solid #000000;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: .4em 1em .4em 1em;
  border-radius: .5vw;
  transition: background-color .25s ease-out,color .25s ease-out;
  font-family: inherit;
  font-weight: 600;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 1024px) {
  /* line 98, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset > button {
    border-radius: 1vw;
    font-size: 5vw !important;
    border-width: .3vw !important;
  }
}

/* line 129, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset > button.hollow {
  border-width: .1vw;
  background-color: transparent;
}

@media (max-width: 1024px) {
  /* line 129, app/assets/stylesheets/_custom.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset > button.hollow {
    border-width: .0125vw;
  }
}

/* line 137, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset > button.small {
  padding: .05em .125em .025em .125em;
}

@media (max-width: 1024px) {
  /* line 137, app/assets/stylesheets/_custom.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset > button.small {
    padding: .2em .5em .2em .5em;
  }
}

/* line 144, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > fieldset > button:hover {
  background-color: #19A496;
  color: #ffffff;
  animation: .4s jump ease infinite alternate;
}

@media (max-width: 1024px) {
  /* line 104, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month {
    width: 100%;
  }
}

/* line 109, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure {
  margin: 0 0 0.5vw 0;
  padding: 0;
  width: 100%;
}

/* line 114, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > figcaption {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1vw;
}

@media (max-width: 1024px) {
  /* line 114, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > figcaption {
    margin-bottom: 4vw;
    padding: 0 4vw;
  }
}

/* line 123, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > figcaption > a {
  text-decoration: none;
  margin: 0 0.75vw;
  color: #000000;
}

/* line 130, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > figcaption > .disabled {
  color: #dddddd;
  margin: 0 0.75vw;
}

/* line 136, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table {
  width: 100%;
}

/* line 148, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td {
  padding: 0.75vw;
}

@media (max-width: 1024px) {
  /* line 148, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td {
    padding: 2vw;
  }
}

/* line 154, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.clickable {
  cursor: pointer;
}

/* line 157, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.clickable:hover {
  background-color: #dddddd;
}

/* line 162, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.clickable.empty:not(.wday-0, .wday-6) {
  background-color: #f2fff8;
}

/* line 167, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.clickable.full {
  background-color: #FFE4E1;
}

/* line 172, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.wday-0, body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.wday-6 {
  color: #7A7D7E;
}

/* line 176, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.disabled {
  color: #dddddd;
}

/* line 180, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.selected {
  box-shadow: inset 0px 0px 6px -1px #000000;
}

/* line 186, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.vacation:not(.holiday) {
  background-color: #ffffc0 !important;
}

/* line 191, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > turbo-frame#month > figure > table > tbody > tr > td.holiday {
  background-color: #f0fbff !important;
}

/* line 201, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > ul#vacancies-found {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  /* line 201, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > ul#vacancies-found {
    width: 100%;
  }
}

/* line 89, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > ul#vacancies-found > li {
  border-top: 1px solid #dddddd;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-left: 0.5vw solid #46D4C4;
  margin-bottom: 1vw;
  cursor: pointer;
}

@media (max-width: 1024px) {
  /* line 89, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > ul#vacancies-found > li {
    border-left: 2.5vw solid #46D4C4;
  }
}

/* line 102, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > ul#vacancies-found > li > .info {
  padding-left: 0.5vw;
  pointer-events: none;
}

@media (max-width: 1024px) {
  /* line 102, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > ul#vacancies-found > li > .info {
    padding-left: 2.5vw;
  }
}

/* line 110, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > ul#vacancies-found > li > .times {
  pointer-events: none;
}

/* line 112, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > form > ul#vacancies-found > li > .times > div:nth-child(2) {
  color: #cacaca;
}

/* line 206, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > dl.explanatory-notes {
  margin-bottom: 2vw;
  font-size: 0.7vw;
  display: grid;
  grid-template-columns: 1fr 4fr 1fr 4fr 1fr 4fr 1fr 4fr;
  gap: 0.25vw;
}

@media (max-width: 1024px) {
  /* line 206, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > dl.explanatory-notes {
    font-size: 3vw;
    gap: 1vw;
    margin-bottom: 12vw;
  }
}

/* line 220, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > dl.explanatory-notes > dt {
  border: 1px solid #000000;
}

/* line 223, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > dl.explanatory-notes > dt.available {
  background-color: #f2fff8;
}

/* line 227, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > dl.explanatory-notes > dt.unavailable {
  background-color: #FFE4E1;
}

/* line 231, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > dl.explanatory-notes > dt.vacation {
  background-color: #ffffc0;
}

/* line 235, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > dl.explanatory-notes > dt.holiday {
  background-color: #f0fbff;
}

/* line 240, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > dl.explanatory-notes > dd {
  margin: 0;
}

/* line 245, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  /* line 245, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies {
    margin: 4vw auto 0 auto;
    width: fit-content;
  }
}

/* line 255, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > img.loading {
  width: 2vw;
  height: 2vw;
  margin-right: .5vw;
}

@media (max-width: 1024px) {
  /* line 255, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > img.loading {
    width: 8vw;
    height: 8vw;
    margin-right: 2vw;
  }
}

/* line 268, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > form > button {
  font-size: 2vw;
  letter-spacing: -0.1vw;
  color: #000000;
  background-color: #51dacf;
  border: 0.125vw solid #000000;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: .4em 1em .4em 1em;
  border-radius: .5vw;
  transition: background-color .25s ease-out,color .25s ease-out;
  font-family: inherit;
  font-weight: 600;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1vw;
  font-size: 1vw;
  letter-spacing: inherit;
}

@media (max-width: 1024px) {
  /* line 268, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > form > button {
    border-radius: 1vw;
    font-size: 5vw !important;
    border-width: .3vw !important;
  }
}

/* line 129, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > form > button.hollow {
  border-width: .1vw;
  background-color: transparent;
}

@media (max-width: 1024px) {
  /* line 129, app/assets/stylesheets/_custom.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > form > button.hollow {
    border-width: .0125vw;
  }
}

/* line 137, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > form > button.small {
  padding: .05em .125em .025em .125em;
}

@media (max-width: 1024px) {
  /* line 137, app/assets/stylesheets/_custom.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > form > button.small {
    padding: .2em .5em .2em .5em;
  }
}

/* line 144, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > form > button:hover {
  background-color: #19A496;
  color: #ffffff;
  animation: .4s jump ease infinite alternate;
}

@media (max-width: 1024px) {
  /* line 268, app/assets/stylesheets/patients/book/_vacancies.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies > .col:nth-child(2) > .col:nth-child(2) > #more-vacancies > form > button {
    padding: 0.7em 1em .5em 1em;
    margin-top: 5vw;
  }
}

/* line 293, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies.family > .col:nth-child(2) > .col:nth-child(1) > dl.duration > dd {
  font-weight: 600;
}

/* line 299, app/assets/stylesheets/patients/book/_vacancies.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.vacancies.family > .col:nth-child(2) > .col:nth-child(1) > hr {
  border-top: 6px double black;
}

/* line 12, app/assets/stylesheets/patients/book/family/_acceptance.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  background-color: transparent;
  padding: 0.1vw;
}

@media (max-width: 1024px) {
  /* line 12, app/assets/stylesheets/patients/book/family/_acceptance.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 4vw auto 0 auto;
    padding: 0.4vw;
  }
}

/* line 259, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details dt {
  display: flex;
  align-items: center;
}

/* line 263, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 263, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details dt > span {
    font-size: 6vw;
  }
}

/* line 270, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details dt:nth-of-type(1) {
  color: #FE9E12;
}

/* line 275, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

/* line 281, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details dd:nth-of-type(1) {
  color: #7A7D7E;
  font-size: 1vw;
}

@media (max-width: 1024px) {
  /* line 281, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details dd:nth-of-type(1) {
    font-size: 5vw;
  }
}

/* line 289, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details dd:nth-of-type(2) {
  font-weight: 600;
}

@media (max-width: 1024px) {
  /* line 289, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(1) > dl.invitation-details dd:nth-of-type(2) {
    font-size: 5vw;
  }
}

@media (max-width: 1024px) {
  /* line 20, app/assets/stylesheets/patients/book/family/_acceptance.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions {
    margin-top: 0;
  }
}

/* line 25, app/assets/stylesheets/patients/book/family/_acceptance.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions > button {
  padding: 1vw 2vw;
  background-color: #000000;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.4vw;
  width: 18vw;
  margin-bottom: 1vw;
}

@media (max-width: 1024px) {
  /* line 25, app/assets/stylesheets/patients/book/family/_acceptance.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions > button {
    padding: 4vw 8vw;
    font-size: 6vw;
  }
}

/* line 184, app/assets/stylesheets/_custom.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions > button[disabled] {
  background-color: #dddddd;
  color: #cacaca;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  /* line 25, app/assets/stylesheets/patients/book/family/_acceptance.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions > button {
    width: 100%;
  }
}

/* line 33, app/assets/stylesheets/patients/book/family/_acceptance.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions > button.accept {
  color: #ffffff;
  background-color: #19A496;
}

/* line 37, app/assets/stylesheets/patients/book/family/_acceptance.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions > button.accept:disabled {
  background-color: #cacaca;
  color: #dddddd;
}

/* line 43, app/assets/stylesheets/patients/book/family/_acceptance.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions > button.decline {
  color: #ffffff;
  background-color: #990000;
}

/* line 47, app/assets/stylesheets/patients/book/family/_acceptance.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions > button.decline:disabled {
  background-color: #cacaca;
  color: #dddddd;
}

/* line 53, app/assets/stylesheets/patients/book/family/_acceptance.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.acceptance > .col:nth-child(2) > .col:nth-child(2) > form.invitation-actions > .actions > button:disabled {
  background-color: #cacaca;
  color: #dddddd;
  cursor: not-allowed;
}

/* line 13, app/assets/stylesheets/patients/book/family/_members.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.members > .col:nth-child(2) > .col:nth-child(2) > form > ul#family-members {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* line 18, app/assets/stylesheets/patients/book/family/_members.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.members > .col:nth-child(2) > .col:nth-child(2) > form > ul#family-members > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  padding-bottom: 1vw;
}

@media (max-width: 1024px) {
  /* line 18, app/assets/stylesheets/patients/book/family/_members.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.members > .col:nth-child(2) > .col:nth-child(2) > form > ul#family-members > li {
    padding-bottom: 3vw;
    gap: 3vw;
  }
}

/* line 30, app/assets/stylesheets/patients/book/family/_members.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.members > .col:nth-child(2) > .col:nth-child(2) > form > ul#family-members > li > label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5vw;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  /* line 30, app/assets/stylesheets/patients/book/family/_members.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.members > .col:nth-child(2) > .col:nth-child(2) > form > ul#family-members > li > label {
    font-size: 5vw;
  }
}

/* line 41, app/assets/stylesheets/patients/book/family/_members.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.members > .col:nth-child(2) > .col:nth-child(2) > form > ul#family-members > li > a {
  margin-left: auto;
  /* Pushes the link to the right */
}

/* line 48, app/assets/stylesheets/patients/book/family/_members.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.members > .col:nth-child(2) > .col:nth-child(2) > form > .input-group {
  width: 30vw;
}

@media (max-width: 1024px) {
  /* line 48, app/assets/stylesheets/patients/book/family/_members.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.members > .col:nth-child(2) > .col:nth-child(2) > form > .input-group {
    width: 77vw;
  }
}

@media (max-width: 1024px) {
  /* line 15, app/assets/stylesheets/patients/book/family/_orders.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(1) > .family-members > h4 {
    margin-bottom: 0;
    font-size: 5vw;
    font-weight: 300;
  }
}

/* line 25, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members {
  margin-top: -1.5vw;
  padding: 0 1.5vw 1.5vw 1.5vw;
  overflow: auto;
  height: 43vw;
}

@media (max-width: 1024px) {
  /* line 25, app/assets/stylesheets/patients/book/family/_orders.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members {
    padding: 0 5vw 5vw 5vw;
    height: auto;
    overflow: visible;
  }
}

/* line 37, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset {
  border: none;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 2vw;
  padding: 0;
  transition: box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* line 51, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  /* line 37, app/assets/stylesheets/patients/book/family/_orders.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset {
    margin-bottom: 6vw;
  }
}

/* line 60, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > legend {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: #51dacf;
  font-weight: bold;
  padding: 1vw 1.5vw;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  float: none;
  position: relative;
  top: 1.5vw;
}

@media (max-width: 1024px) {
  /* line 60, app/assets/stylesheets/patients/book/family/_orders.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > legend {
    padding: 2vw 5vw;
    font-size: 6vw;
  }
}

/* line 80, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset .fieldset-content {
  padding: 1.5vw;
}

@media (max-width: 1024px) {
  /* line 80, app/assets/stylesheets/patients/book/family/_orders.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset .fieldset-content {
    padding: 5vw;
  }
}

/* line 88, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group {
  margin-top: 1.5vw;
  display: flex;
  margin-bottom: 2vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
  gap: 0.5vw;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  /* line 88, app/assets/stylesheets/patients/book/family/_orders.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group {
    margin-top: 3vw;
  }
}

/* line 132, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

/* line 138, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group:last-child {
  margin-bottom: 0;
}

/* line 142, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 146, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group:has(label) {
  align-items: center;
}

/* line 150, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* line 157, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > label {
  display: none;
}

/* line 160, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
}

/* line 166, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input[type="text"], body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input[type="number"], body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input[type="file"], body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input[type="email"], body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input [type="tel"], body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input [type="password"], body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input [type="time"], body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input [type="date"], body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > textarea, body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > select {
  border: none;
  background-color: transparent;
  color: inherit;
  width: 100%;
  padding: 0;
  font-size: larger;
}

/* line 175, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 179, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > textarea {
  font-size: medium;
}

/* line 183, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > input[type="time"], body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group input[type="date"] {
  width: auto;
}

/* line 187, app/assets/stylesheets/_form.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 99, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset h4 {
  padding: 0 1.5vw;
  margin-bottom: 0.75vw;
}

@media (max-width: 1024px) {
  /* line 99, app/assets/stylesheets/patients/book/family/_orders.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset h4 {
    padding: 0 5vw;
    margin-bottom: 5vw;
    font-size: 6vw;
  }
}

/* line 110, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .symptoms {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: .25vw 1vw;
  padding: 0 1.5vw 1.5vw 1.5vw;
}

@media (max-width: 1024px) {
  /* line 110, app/assets/stylesheets/patients/book/family/_orders.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .symptoms {
    grid-template-columns: 3fr auto;
    grid-gap: 1.5vw 4vw;
    text-align: left;
    padding: 0 5vw 5vw 5vw;
  }
}

/* line 123, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .members fieldset > .symptoms > hr {
  grid-column: 1 / span 2;
  width: 100%;
  border-color: white;
}

/* line 132, app/assets/stylesheets/patients/book/family/_orders.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .actions {
  width: fit-content;
  margin-top: 2vw;
  grid-column: 1 / span 2;
  padding-left: 1.5vw;
}

@media (max-width: 1024px) {
  /* line 132, app/assets/stylesheets/patients/book/family/_orders.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.orders > .col:nth-child(2) > .col:nth-child(2) > form > .actions {
    width: initial;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 8vw;
    padding-left: 5vw;
  }
}

/* line 15, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > h3 {
  margin-left: 0;
}

/* line 20, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure {
  border: none;
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin: 2vw 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* line 33, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  /* line 20, app/assets/stylesheets/patients/book/family/_entries.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure {
    margin-bottom: 6vw;
  }
}

/* line 41, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > figcaption {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: #51dacf;
  font-weight: bold;
  padding: 1vw 1.5vw;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  /* line 41, app/assets/stylesheets/patients/book/family/_entries.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > figcaption {
    padding: 2vw 5vw;
    font-size: 7vw;
  }
}

/* line 57, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .entry-type {
  margin-top: 2vw;
  padding: .25em .4em;
  font-size: 100%;
  font-weight: 200;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
  margin-left: 2vw;
}

@media (max-width: 1024px) {
  /* line 57, app/assets/stylesheets/patients/book/family/_entries.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .entry-type {
    margin-top: 8vw;
    font-size: 120%;
    padding: .5em .8em;
    width: auto;
  }
}

/* line 314, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .entry-type.prevention {
  color: #ffffff;
  background-color: #19A496;
}

/* line 319, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .entry-type.examination {
  color: #ffffff;
  background-color: #000000;
}

/* line 324, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .entry-type.procedure {
  color: #000000;
  background-color: #C1C1C1;
}

/* line 329, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .entry-type.emergency {
  color: #ffffff;
  background-color: #990000;
}

@media (max-width: 1024px) {
  /* line 57, app/assets/stylesheets/patients/book/family/_entries.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .entry-type {
    margin-top: 0;
    margin-left: 0;
  }
}

/* line 66, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price {
  display: grid;
  grid-template-columns: 2vw auto;
  grid-gap: 1vw 1vw;
  align-content: start;
  align-items: center;
  background-color: lightgoldenrodyellow;
  padding: 0.1vw;
}

@media (max-width: 1024px) {
  /* line 66, app/assets/stylesheets/patients/book/family/_entries.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price {
    grid-template-columns: 7vw auto;
    grid-gap: 3vw 4vw;
    width: fit-content;
    margin: 0 auto 0 auto;
    padding: 0.4vw;
  }
}

/* line 139, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price dt {
  display: flex;
  align-items: center;
}

/* line 143, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price dt > span {
  font-size: 2.5vw;
}

@media (max-width: 1024px) {
  /* line 143, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price dt > span {
    font-size: 6vw;
  }
}

/* line 150, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price dt:nth-of-type(1) {
  color: darkgoldenrod;
}

/* line 155, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price dd {
  margin-left: 0;
  line-height: 1rem;
  font-weight: 200;
  font-size: 1.25vw;
}

@media (max-width: 1024px) {
  /* line 155, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price dd {
    font-size: 4vw;
  }
}

/* line 165, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price dd > .name {
  font-weight: 200;
  font-size: 75%;
}

/* line 170, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price dd > .price {
  font-weight: 600;
}

/* line 177, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price:has(.degree) dd:nth-of-type(2) {
  color: #7A7D7E;
  font-size: smaller;
}

@media (max-width: 1024px) {
  /* line 177, app/assets/stylesheets/patient/_helpers.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price:has(.degree) dd:nth-of-type(2) {
    font-size: 3vw;
  }
}

/* line 186, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price:has(.degree) dd > .degree {
  font-weight: 200;
}

/* line 190, app/assets/stylesheets/patient/_helpers.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > dl.price:has(.degree) dd > .name {
  font-weight: 600;
}

/* line 70, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > ul.symptoms {
  font-weight: 200;
  font-size: smaller;
}

@media (max-width: 1024px) {
  /* line 70, app/assets/stylesheets/patients/book/family/_entries.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > ul.symptoms {
    font-size: 4vw;
    margin-bottom: 8vw;
  }
}

/* line 79, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .datetime {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  align-items: flex-start;
  margin: 0 2vw 2vw;
}

@media (max-width: 1024px) {
  /* line 79, app/assets/stylesheets/patients/book/family/_entries.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .datetime {
    gap: 4vw;
    text-align: left;
  }
}

/* line 91, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .datetime > span.material-symbols-sharp {
  vertical-align: middle;
  color: #cacaca;
  font-size: 3.5vw;
}

@media (max-width: 1024px) {
  /* line 91, app/assets/stylesheets/patients/book/family/_entries.scss */
  body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .datetime > span.material-symbols-sharp {
    font-size: 14vw;
  }
}

/* line 103, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .datetime > .info > div:nth-child(2) {
  color: #cacaca;
}

/* line 111, app/assets/stylesheets/patients/book/family/_entries.scss */
body.patient:not(.pages) > main > turbo-frame#patient > section.book.family.entries > .col:nth-child(2) > .col:nth-child(2) > section.entries > figure > .datetime > .times > div:nth-child(2) {
  color: #cacaca;
}

/* line 12, app/assets/stylesheets/_patient.scss */
body.patient:not(.pages) > main > turbo-frame#patient > a:first-child {
  position: absolute;
}

/* line 3, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > h1 {
  margin-top: -2vw;
}

/* line 7, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  color: #7A7D7E;
  background-color: #ffffff;
  overflow: hidden;
  border: 1px solid #000000;
}

/* line 14, app/assets/stylesheets/_table.scss */
body.signed.index > main > table thead > tr > th {
  background-color: #dddddd;
  color: #000000;
  font-weight: bold;
  text-align: left;
  padding: 0.5rem;
  font-size: 120%;
  border-bottom: 2px solid #000000;
}

@media (max-width: 1024px) {
  /* line 14, app/assets/stylesheets/_table.scss */
  body.signed.index > main > table thead > tr > th {
    font-size: 4vw;
    font-weight: 300;
  }
}

/* line 43, app/assets/stylesheets/_table.scss */
body.signed.index > main > table tbody tr > td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #dddddd;
}

/* line 48, app/assets/stylesheets/_table.scss */
body.signed.index > main > table tbody tr > td span {
  vertical-align: middle;
}

/* line 53, app/assets/stylesheets/_table.scss */
body.signed.index > main > table tbody tr > td span.material-symbols-sharp.check_circle.success {
  color: #168f82;
}

/* line 58, app/assets/stylesheets/_table.scss */
body.signed.index > main > table tbody tr > td span.material-symbols-sharp.help.warning {
  color: #FE9E12;
}

/* line 63, app/assets/stylesheets/_table.scss */
body.signed.index > main > table tbody tr > td span.material-symbols-sharp.error.error {
  color: #F70019;
}

/* line 12, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > table > thead > tr > th:last-child {
  padding-right: 1rem;
}

/* line 15, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > table > thead > tr > th:last-child > .actions {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

/* line 20, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > table > thead > tr > th:last-child > .actions button[type="submit"] {
  padding: 1vw 2vw;
  background-color: #dddddd;
  color: #000000;
  border: 1px solid #7A7D7E;
  cursor: pointer;
  text-decoration: none;
  font-size: 1vw;
  padding: 0.25em .55em .0em .55em;
  border-width: .0125vw;
  background-color: #168f82;
  color: #ffffff;
}

/* line 215, app/assets/stylesheets/_custom.scss */
body.signed.index > main > table > thead > tr > th:last-child > .actions button[type="submit"] > span {
  vertical-align: middle;
}

/* line 25, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > table > thead > tr > th:last-child > .actions button[type="submit"] > span {
  font-weight: bold !important;
}

/* line 38, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > table > tbody > tr:last-child > td {
  border-bottom: 1px solid #000000;
}

/* line 44, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > table > tbody > tr > td:last-child > .actions {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

/* line 49, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > table > tbody > tr > td:last-child > .actions button[type="submit"] {
  padding: 1vw 2vw;
  background-color: #dddddd;
  color: #000000;
  border: 1px solid #7A7D7E;
  cursor: pointer;
  text-decoration: none;
  font-size: 1vw;
  padding: 0.25em .55em .0em .55em;
  border-width: .0125vw;
}

/* line 215, app/assets/stylesheets/_custom.scss */
body.signed.index > main > table > tbody > tr > td:last-child > .actions button[type="submit"] > span {
  vertical-align: middle;
}

/* line 59, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > .pagination {
  display: flex;
  gap: 1vw;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  font-size: 1.5vw;
}

/* line 67, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > .pagination > em {
  font-style: inherit;
}

/* line 76, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > dialog#control {
  padding: 2vw;
}

/* line 81, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > dialog#control > section > .main h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

/* line 86, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > dialog#control > section > .main p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

/* line 89, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main > dialog#control > section > .main p > code {
  font-size: larger;
  background-color: #dddddd;
  padding: 0 0.25vw;
}

/* line 205, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form .field_with_errors {
  border-color: #E83731 !important;
}

/* line 209, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data {
  display: flex;
  justify-content: center;
  margin-bottom: 1vw;
}

/* line 215, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group {
  display: flex;
  margin-bottom: 2vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
  gap: 0.5vw;
}

/* line 132, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

/* line 138, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group:last-child {
  margin-bottom: 0;
}

/* line 142, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 146, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group:has(label) {
  align-items: center;
}

/* line 150, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* line 157, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > label {
  display: none;
}

/* line 160, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
}

/* line 166, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input[type="text"], body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input[type="number"], body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input[type="file"], body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input[type="email"], body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input [type="tel"], body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input [type="password"], body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input [type="time"], body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input [type="date"], body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > textarea, body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > select {
  border: none;
  background-color: transparent;
  color: inherit;
  width: 100%;
  padding: 0;
  font-size: larger;
}

/* line 175, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 179, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > textarea {
  font-size: medium;
}

/* line 183, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > input[type="time"], body.signed.index > main > dialog#control form > section.data > fieldset > .input-group input[type="date"] {
  width: auto;
}

/* line 187, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 219, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.data > fieldset > .help {
  margin-top: -1rem;
  font-size: smaller;
  display: block;
  position: relative;
  top: -1rem;
  color: #7A7D7E;
}

/* line 225, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard {
  margin-bottom: 1vw;
}

/* line 228, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1vw;
}

/* line 238, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > h4 {
  font-size: 1.4vw;
}

/* line 242, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group {
  display: flex;
  margin-bottom: 2vw;
  align-items: flex-start;
  border: 1px solid #7A7D7E;
  background-color: #f9f9f9;
  padding: 1vw;
  gap: 0.5vw;
}

/* line 132, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group.naked {
  border: none;
  background-color: transparent;
  padding: 0;
}

/* line 138, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group:last-child {
  margin-bottom: 0;
}

/* line 142, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group:has(.field_with_errors) {
  border-color: #E83731;
}

/* line 146, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group:has(label) {
  align-items: center;
}

/* line 150, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > .prepend {
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* line 157, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > label {
  display: none;
}

/* line 160, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > label.checkbox-inline {
  display: inline;
  font-weight: 300;
}

/* line 166, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="text"], body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="number"], body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="file"], body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="email"], body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input [type="tel"], body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input [type="password"], body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input [type="time"], body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input [type="date"], body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > textarea, body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > select {
  border: none;
  background-color: transparent;
  color: inherit;
  width: 100%;
  padding: 0;
  font-size: larger;
}

/* line 175, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="email"] {
  min-width: 20vw;
}

/* line 179, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > textarea {
  font-size: medium;
}

/* line 183, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > input[type="time"], body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group input[type="date"] {
  width: auto;
}

/* line 187, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .input-group > .append {
  text-align: left;
  white-space: nowrap;
  margin-left: 1vw;
  display: inline-block;
}

/* line 246, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > fieldset > .help {
  margin-top: -1rem;
  font-size: smaller;
  display: block;
  position: relative;
  top: -1rem;
  color: #7A7D7E;
}

/* line 251, app/assets/stylesheets/_form.scss */
body.signed.index > main > dialog#control form > section.wizard.office > h4 {
  grid-column: 1 / span 2;
  margin-bottom: 0;
  font-size: 1.4vw;
}

/* line 103, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: initial;
  text-transform: uppercase;
  white-space: nowrap;
}

/* line 111, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.primary {
  color: #ffffff;
  background-color: #FE9E12;
}

/* line 116, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.secondary {
  color: #000000;
  background-color: #168f82;
}

/* line 121, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.active {
  color: #ffffff;
  background-color: #168f82;
}

/* line 126, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.inactive {
  color: #000000;
  background-color: #C1C1C1;
}

/* line 131, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.prevention {
  color: #ffffff;
  background-color: #168f82;
}

/* line 136, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.procedure {
  color: #000000;
  background-color: #FE9E12;
}

/* line 141, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.emergency {
  color: #ffffff;
  background-color: #F70019;
}

/* line 146, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.vacation {
  color: #000000;
  background-color: #d3be00;
}

/* line 151, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.pad {
  color: #000000;
  background-color: #C1C1C1;
}

/* line 156, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.acute_gap {
  color: #000000;
  background-color: #9f6861;
}

/* line 161, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.on_hold {
  color: #000000;
  background-color: #C1C1C1;
}

/* line 166, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.reserved {
  color: black;
  background-color: #46D4C4;
}

/* line 171, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.accomplished {
  color: #000000;
  background-color: #d3be00;
}

/* line 176, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.canceled {
  color: #000000;
  text-decoration: line-through;
  background-color: #e6e6e6;
}

/* line 182, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.error {
  color: #ffffff;
  background-color: #F70019;
}

/* line 187, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.success {
  color: #ffffff;
  background-color: #168f82;
}

/* line 192, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.super_admin {
  color: #000000;
  background-color: #FE9E12;
}

/* line 197, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.admin {
  color: #000000;
  background-color: #d3be00;
}

/* line 202, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.user {
  color: #000000;
  background-color: #168f82;
}

/* line 207, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.patient {
  color: #168f82;
  background-color: #000000;
}

/* line 212, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.guest {
  color: #000000;
  background-color: #C1C1C1;
}

/* line 217, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.nurse {
  color: #d3be00;
  background-color: #000000;
}

/* line 222, app/assets/stylesheets/control/_layout.scss */
body.signed.index > main .badge.doctor {
  color: #FE9E12;
  background-color: #000000;
}

/* line 3, app/assets/stylesheets/control/_offices.scss */
body.signed.offices.index > main > form.button_to {
  float: right;
  position: relative;
  top: 2vw;
}

/* line 8, app/assets/stylesheets/control/_offices.scss */
body.signed.offices.index > main > form.button_to button[type="submit"] {
  padding: 1vw 2vw;
  background-color: #dddddd;
  color: #000000;
  border: 1px solid #7A7D7E;
  cursor: pointer;
  text-decoration: none;
  font-size: 1vw;
  padding: 0.25em .55em .0em .55em;
  border-width: .0125vw;
  background-color: darkviolet;
  color: #ffffff;
}

/* line 215, app/assets/stylesheets/_custom.scss */
body.signed.offices.index > main > form.button_to button[type="submit"] > span {
  vertical-align: middle;
}

/* line 13, app/assets/stylesheets/control/_offices.scss */
body.signed.offices.index > main > form.button_to button[type="submit"] > span {
  font-weight: bold !important;
}

/* line 1, app/assets/stylesheets/control/rouge.scss.erb */
pre table td {
  padding: 5px;
}

/* line 2, app/assets/stylesheets/control/rouge.scss.erb */
pre table pre {
  margin: 0;
}

/* line 3, app/assets/stylesheets/control/rouge.scss.erb */
pre .c, pre .ch, pre .cd, pre .cpf {
  color: #5e5d83;
  font-style: italic;
}

/* line 7, app/assets/stylesheets/control/rouge.scss.erb */
pre .cm {
  color: #5e5d83;
  font-style: italic;
}

/* line 11, app/assets/stylesheets/control/rouge.scss.erb */
pre .c1 {
  color: #5e5d83;
  font-style: italic;
}

/* line 15, app/assets/stylesheets/control/rouge.scss.erb */
pre .cp {
  color: #465457;
  font-weight: bold;
}

/* line 19, app/assets/stylesheets/control/rouge.scss.erb */
pre .cs {
  color: #465457;
  font-weight: bold;
  font-style: italic;
}

/* line 24, app/assets/stylesheets/control/rouge.scss.erb */
pre .err {
  color: #f8f8f2;
  background-color: #403d3d;
}

/* line 28, app/assets/stylesheets/control/rouge.scss.erb */
pre .gi {
  color: #a6e22e;
}

/* line 31, app/assets/stylesheets/control/rouge.scss.erb */
pre .gd {
  color: #f92672;
}

/* line 34, app/assets/stylesheets/control/rouge.scss.erb */
pre .ge {
  font-style: italic;
}

/* line 37, app/assets/stylesheets/control/rouge.scss.erb */
pre .ges {
  font-weight: bold;
  font-style: italic;
}

/* line 41, app/assets/stylesheets/control/rouge.scss.erb */
pre .gr {
  color: #f92672;
}

/* line 44, app/assets/stylesheets/control/rouge.scss.erb */
pre .gt {
  color: #f92672;
}

/* line 47, app/assets/stylesheets/control/rouge.scss.erb */
pre .gh {
  color: #403d3d;
}

/* line 50, app/assets/stylesheets/control/rouge.scss.erb */
pre .go {
  color: #403d3d;
}

/* line 53, app/assets/stylesheets/control/rouge.scss.erb */
pre .gp {
  color: #66d9ef;
}

/* line 56, app/assets/stylesheets/control/rouge.scss.erb */
pre .gs {
  font-weight: bold;
}

/* line 59, app/assets/stylesheets/control/rouge.scss.erb */
pre .gu {
  color: #465457;
}

/* line 62, app/assets/stylesheets/control/rouge.scss.erb */
pre .k, pre .kv {
  color: #66d9ef;
  font-weight: bold;
}

/* line 66, app/assets/stylesheets/control/rouge.scss.erb */
pre .kc {
  color: #66d9ef;
  font-weight: bold;
}

/* line 70, app/assets/stylesheets/control/rouge.scss.erb */
pre .kd {
  color: #66d9ef;
  font-weight: bold;
}

/* line 74, app/assets/stylesheets/control/rouge.scss.erb */
pre .kp {
  color: #66d9ef;
  font-weight: bold;
}

/* line 78, app/assets/stylesheets/control/rouge.scss.erb */
pre .kr {
  color: #66d9ef;
  font-weight: bold;
}

/* line 82, app/assets/stylesheets/control/rouge.scss.erb */
pre .kt {
  color: #66d9ef;
  font-weight: bold;
}

/* line 86, app/assets/stylesheets/control/rouge.scss.erb */
pre .kn {
  color: #f92672;
  font-weight: bold;
}

/* line 90, app/assets/stylesheets/control/rouge.scss.erb */
pre .ow {
  color: #f92672;
  font-weight: bold;
}

/* line 94, app/assets/stylesheets/control/rouge.scss.erb */
pre .o {
  color: #f92672;
  font-weight: bold;
}

/* line 98, app/assets/stylesheets/control/rouge.scss.erb */
pre .mf {
  color: #af87ff;
}

/* line 101, app/assets/stylesheets/control/rouge.scss.erb */
pre .mh {
  color: #af87ff;
}

/* line 104, app/assets/stylesheets/control/rouge.scss.erb */
pre .il {
  color: #af87ff;
}

/* line 107, app/assets/stylesheets/control/rouge.scss.erb */
pre .mi {
  color: #af87ff;
}

/* line 110, app/assets/stylesheets/control/rouge.scss.erb */
pre .mo {
  color: #af87ff;
}

/* line 113, app/assets/stylesheets/control/rouge.scss.erb */
pre .m, pre .mb, pre .mx {
  color: #af87ff;
}

/* line 116, app/assets/stylesheets/control/rouge.scss.erb */
pre .se {
  color: #af87ff;
}

/* line 119, app/assets/stylesheets/control/rouge.scss.erb */
pre .sb {
  color: #d7d787;
}

/* line 122, app/assets/stylesheets/control/rouge.scss.erb */
pre .sc {
  color: #d7d787;
}

/* line 125, app/assets/stylesheets/control/rouge.scss.erb */
pre .sd {
  color: #d7d787;
}

/* line 128, app/assets/stylesheets/control/rouge.scss.erb */
pre .s2 {
  color: #d7d787;
}

/* line 131, app/assets/stylesheets/control/rouge.scss.erb */
pre .sh {
  color: #d7d787;
}

/* line 134, app/assets/stylesheets/control/rouge.scss.erb */
pre .si {
  color: #d7d787;
}

/* line 137, app/assets/stylesheets/control/rouge.scss.erb */
pre .sx {
  color: #d7d787;
}

/* line 140, app/assets/stylesheets/control/rouge.scss.erb */
pre .sr {
  color: #d7d787;
}

/* line 143, app/assets/stylesheets/control/rouge.scss.erb */
pre .s1 {
  color: #d7d787;
}

/* line 146, app/assets/stylesheets/control/rouge.scss.erb */
pre .ss {
  color: #d7d787;
}

/* line 149, app/assets/stylesheets/control/rouge.scss.erb */
pre .s, pre .sa, pre .dl {
  color: #d7d787;
}

/* line 152, app/assets/stylesheets/control/rouge.scss.erb */
pre .na {
  color: #a6e22e;
}

/* line 155, app/assets/stylesheets/control/rouge.scss.erb */
pre .nc {
  color: #a6e22e;
  font-weight: bold;
}

/* line 159, app/assets/stylesheets/control/rouge.scss.erb */
pre .nd {
  color: #a6e22e;
  font-weight: bold;
}

/* line 163, app/assets/stylesheets/control/rouge.scss.erb */
pre .ne {
  color: #a6e22e;
  font-weight: bold;
}

/* line 167, app/assets/stylesheets/control/rouge.scss.erb */
pre .nf, pre .fm {
  color: #a6e22e;
  font-weight: bold;
}

/* line 171, app/assets/stylesheets/control/rouge.scss.erb */
pre .no {
  color: #66d9ef;
}

/* line 174, app/assets/stylesheets/control/rouge.scss.erb */
pre .bp {
  color: #f8f8f2;
}

/* line 177, app/assets/stylesheets/control/rouge.scss.erb */
pre .nb {
  color: #f8f8f2;
}

/* line 180, app/assets/stylesheets/control/rouge.scss.erb */
pre .ni {
  color: #f8f8f2;
}

/* line 183, app/assets/stylesheets/control/rouge.scss.erb */
pre .nn {
  color: #f8f8f2;
}

/* line 186, app/assets/stylesheets/control/rouge.scss.erb */
pre .vc {
  color: #f8f8f2;
}

/* line 189, app/assets/stylesheets/control/rouge.scss.erb */
pre .vg {
  color: #f8f8f2;
}

/* line 192, app/assets/stylesheets/control/rouge.scss.erb */
pre .vi {
  color: #f8f8f2;
}

/* line 195, app/assets/stylesheets/control/rouge.scss.erb */
pre .nv, pre .vm {
  color: #f8f8f2;
}

/* line 198, app/assets/stylesheets/control/rouge.scss.erb */
pre .w {
  color: #f8f8f2;
}

/* line 201, app/assets/stylesheets/control/rouge.scss.erb */
pre .nl {
  color: #f8f8f2;
  font-weight: bold;
}

/* line 205, app/assets/stylesheets/control/rouge.scss.erb */
pre .nt {
  color: #f92672;
}

/* line 208, app/assets/stylesheets/control/rouge.scss.erb */
pre {
  color: #f8f8f2;
  background-color: #1b1d1e;
}

/* line 1, app/assets/stylesheets/control/_direct_upload.scss */
.direct-upload {
  display: inline-block;
  position: relative;
  padding: 2px 4px;
  margin: 0 3px 3px 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  font-size: 11px;
  line-height: 13px;
}

/* line 12, app/assets/stylesheets/control/_direct_upload.scss */
.direct-upload--pending {
  opacity: 0.6;
}

/* line 16, app/assets/stylesheets/control/_direct_upload.scss */
.direct-upload__progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0.2;
  background: #0076ff;
  transition: width 120ms ease-out, opacity 60ms 60ms ease-in;
  transform: translate3d(0, 0, 0);
}

/* line 27, app/assets/stylesheets/control/_direct_upload.scss */
.direct-upload--complete .direct-upload__progress {
  opacity: 0.4;
}

/* line 31, app/assets/stylesheets/control/_direct_upload.scss */
.direct-upload--error {
  border-color: red;
}

/* line 35, app/assets/stylesheets/control/_direct_upload.scss */
input[type=file][data-direct-upload-url][disabled] {
  display: none;
}

/* line 2, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}

/* line 11, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar * {
  box-sizing: border-box;
}

/* line 14, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}

/* line 20, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}

/* line 28, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}

@media (max-width: 768px) {
  /* line 32, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}

/* line 36, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}

@media (max-width: 768px) {
  /* line 40, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}

/* line 44, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}

/* line 59, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

/* line 62, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: black;
}

/* line 66, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}

/* line 69, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}

@media (max-width: 768px) {
  /* line 73, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}

/* line 78, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}

@media (max-width: 768px) {
  /* line 86, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}

/* line 91, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 768px) {
  /* line 105, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}

/* line 110, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}

/* line 113, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}

/* line 116, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-attach::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  top: 8%;
  bottom: 4%;
}

/* line 121, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-bold::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 124, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-italic::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 127, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-link::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 130, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-strike::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 133, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-quote::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 136, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 139, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-code::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 142, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 145, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-number-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 148, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-undo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 151, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-redo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 154, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 157, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 160, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialogs {
  position: relative;
}

/* line 163, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}

/* line 176, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 189, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: #F00 0px 0px 1.5px 1px;
}

/* line 192, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}

/* line 197, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog--link {
  max-width: 600px;
}

/* line 200, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}

/* line 204, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1;
}

/* line 207, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}

/* line 212, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 219, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor [data-trix-mutable] ::-moz-selection, trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection {
  background: none;
}

/* line 223, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor [data-trix-mutable] ::selection, trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection {
  background: none;
}

/* line 228, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::-moz-selection {
  background: highlight;
}

/* line 231, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::selection {
  background: highlight;
}

/* line 235, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment.attachment--file[data-trix-mutable] {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}

/* line 239, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment[data-trix-mutable] img {
  box-shadow: 0 0 0 2px highlight;
}

/* line 242, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment {
  position: relative;
}

/* line 245, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment:hover {
  cursor: default;
}

/* line 248, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}

/* line 251, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}

/* line 261, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}

/* line 264, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 280, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 288, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button-group {
  display: inline-flex;
}

/* line 291, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}

/* line 304, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

/* line 307, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button.trix-active {
  background: #cbeefa;
}

/* line 310, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}

/* line 313, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

/* line 326, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

/* line 340, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button--remove:hover {
  border-color: #333;
}

/* line 343, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}

/* line 346, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__metadata-container {
  position: relative;
}

/* line 349, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}

/* line 361, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 369, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}

/* line 374, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content {
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* line 379, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 384, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}

/* line 388, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}

/* line 394, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}

/* line 401, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content li {
  margin-left: 1em;
}

/* line 404, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content [dir=rtl] li {
  margin-right: 1em;
}

/* line 407, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}

/* line 418, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content img {
  max-width: 100%;
  height: auto;
}

/* line 422, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

/* line 427, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}

/* line 431, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
  color: inherit;
}

/* line 434, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment__caption {
  text-align: center;
}

/* line 437, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: " •";
}

/* line 440, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}

/* line 444, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}

/* line 449, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}

/* line 457, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

/* line 462, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

/* line 467, vendor/bundle/ruby/3.3.0/gems/actiontext-8.0.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/*
 * Provides a drop-in pointer for the default Trix stylesheet that will format the toolbar and
 * the trix-editor content (whether displayed or under editing). Feel free to incorporate this
 * inclusion directly in any other asset bundle and remove this file.
 *
 *= require trix
*/
/*
 * We need to override trix.css’s image gallery styles to accommodate the
 * <action-text-attachment> element we wrap around attachments. Otherwise,
 * images in galleries will be squished by the max-width: 33%; rule.
*/
/* line 14, app/assets/stylesheets/actiontext.css */
.trix-content .attachment-gallery > action-text-attachment,
.trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

/* line 21, app/assets/stylesheets/actiontext.css */
.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment, .trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/* line 28, app/assets/stylesheets/actiontext.css */
.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
}

/* line 1, app/assets/stylesheets/trix/_custom.scss */
trix-editor {
  font-weight: 300;
}
