:root {
  --color000: #000000;
  --color001: #ffffff;
  --color002: #eff3f8;
  --color003: #e8363d;
  --color004: #D12C36;
  --color005: #019700;
  --color006: #ff9d14;
  --color007: #676666;
  --color008: #2e55f2;
  --color009: #c4c4c4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--color002);
}

body {
  overflow: auto;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 400px;
  position: relative;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
}

.button {
  background: var(--color003);
  color: var(--color001);
  border: 1px solid var(--color003);
  width: 240px;
  height: 40px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin: 0 auto;
}
.button:hover, .button.invers {
  background: var(--color001);
  color: var(--color003);
}

li {
  text-decoration: none;
  list-style: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.flex_column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.texteditor:focus {
  outline: none !important;
}

.all_buttons {
  margin: 0 auto;
  padding: 35px 16px 0;
  display: flex;
  gap: 12px;
}

input, .custom-input {
  padding: 10px 20px;
  border: 1px solid var(--color009);
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  color: var(--color007);
  width: 100%;
}

.field.none {
  border: 1px solid #f00;
}

.h1 {
  font-weight: 400;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.77);
}

.h2 {
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--color000);
}
.h2 span {
  color: var(--color003);
  font-family: "Philosopher", sans-serif;
}

.h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: var(--color000);
}

.text, .small_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 175%;
  color: var(--color000);
}

.small_text {
  color: var(--color007);
  line-height: 110%;
}

.small_bold_text {
  font-weight: 600;
  font-size: 12px;
  line-height: 175%;
  color: #000;
}

.t20 {
  font-size: 20px;
}

.t14 {
  font-size: 14px;
}

.blue_link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--color008);
}

.item {
  position: relative;
}

.icon_heart {
  position: absolute;
  top: 7px;
  right: 4px;
  opacity: 0.3;
}
.icon_heart.active {
  opacity: 1;
}

.grey_link {
  font-weight: 400;
  font-size: 14px;
  color: var(--color007);
}

summary::marker {
  content: "";
}

.status {
  width: 117px;
  height: 20px;
  border-radius: 0 5px 5px 0;
  padding-left: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 175%;
  color: #fff;
}
.status.available {
  background: var(--color005);
}
.status.reservation {
  background: var(--color006);
}

.icon.active {
  filter: brightness(0) saturate(100%) invert(48%) sepia(85%) saturate(6266%) hue-rotate(339deg) brightness(93%) contrast(92%);
}

details summary {
  cursor: pointer;
  transition: 0.3s ease-out;
}
details summary::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color007);
  border-bottom: 2px solid var(--color007);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(-135deg);
}

.icon_heart_block.added img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(58%) saturate(2253%) hue-rotate(333deg) brightness(113%) contrast(98%);
}

.messageInfo {
  padding: 20px;
  margin: 20px;
  width: auto;
  background: var(--color001);
  text-align: center;
  border-radius: 10px;
  gap: 16px;
}
.messageInfo .title {
  font-size: 24px;
  text-transform: uppercase;
}
.messageInfo .messageInfo {
  text-align: justify;
}

#favorite {
  position: relative;
  display: inline-block;
}

.favorite-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}

button#resetFavorites {
  width: 100%;
  padding: 15px 10px;
  background: var(--color004);
  color: var(--color001);
  border-radius: 8px;
  text-transform: uppercase;
}

.error {
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 10000;
  background: rgba(238, 238, 238, 0.7411764706);
}
.error .inform {
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  gap: 2vh;
  align-content: center;
  align-items: center;
  width: 100%;
}
.error .errorTitle {
  font-size: 40px;
}
.error .subtitle {
  font-size: 30px;
}
.error .text {
  font-size: 16px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */