#beds-block .beds_title {
  font-weight: 500;
  font-size: 40px;
  line-height: 51px;
  text-align: center;
  color: var(--text_titles);
  width: 100%;
  padding-bottom: 40px;
  padding-top: 90px;
  letter-spacing: 3px;
}
#beds-block .beds_cats_holder {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#beds-block .beds_cats_holder .beds_cat_item {
  padding: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  border: solid transparent 2px;
}
#beds-block .beds_cats_holder .beds_cat_item:hover {
  filter: drop-shadow(0px 0px 5px var(--col_light));
  transition: all 0.2s ease-in;
}
#beds-block .show_more:hover {
  color: var(--col_btn_text2);
  background: var(--col_btn2);
  transition: all 0.3s ease-in;
  filter: drop-shadow(0px 0px 5px var(--col_light));
  -webkit-filter: drop-shadow(0px 0px 5px var(--col_light));
  border: solid var(--col_light) 1px;
}
#beds-block .bed:hover {
  cursor: pointer;
}
#beds-block .bed * {
  pointer-events: none;
}
#beds-block .bed:hover .btn_bed {
  background: var(--col_btn2);
  transition: all 0.3s ease-in;
  border: solid var(--col_btn_text2) 1px;
}
#beds-block .bed:hover .btn_bed svg path {
  stroke: var(--col_btn_text2);
}
#beds-block .beds_cats_holder .beds_cat_item.active {
  background: var(--col_btn2);
  color: var(--col_btn_text2);
  border: solid 2px var(--col_btn_text2);
}
#beds-block .show_more {
  width: 200px;
  margin: 50px auto 0px auto;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: var(--col_btn_text);
}
#beds-block .beds_holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
}
#beds-block .beds_holder.disable {
  display: none;
}
#beds-block .beds_holder.active.hide .bed:nth-child(n + 4) {
  opacity: 0;
}
#beds-block .beds_holder.active:not(.hide) .bed:nth-child(n + 4) {
  opacity: 1;
}
#beds-block .beds_holder.active:not(.open) .bed:nth-child(n + 4) {
  opacity: 0;
  height: 0;
  overflow: hidden;
  width: 0;
  position: absolute;
  transform: translateY(-100%);
}
#beds-block .bed_card {
  background: var(--color_b2);
  width: calc(100vw / 3 - 30px);
  max-width: 370px;
}
#beds-block .bed_img {
  height: 270px;
  width: 100%;
  object-fit: cover;
}
#beds-block .bed_info_container {
  padding: 20px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: var(--color_b2);
}
#beds-block .bed_decr {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  color: var(--color_text);
}
#beds-block .bed_name {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--text_titles);
  letter-spacing: 1px;
}
#beds-block .bed_hard {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: var(--text_titles);
  white-space: nowrap;
}
#beds-block .hard_holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
#beds-block .bed {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
#beds-block .hard_visual {
  width: 100%;
  background: var(--color_b2);
}
#beds-block .hard_background {
  border: 1px solid var(--text_titles);
}
#beds-block .bed_hard::before {
  content: "Жесткость";
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: var(--color_text);
}
#beds-block .bed_hard::after {
  content: "из 10";
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: var(--text_titles);
}
#beds-block .bed_mid_top_holder {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
#beds-block .btn_bed {
  background: var(--color_btn);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
}
#beds-block .btn_bed svg path {
  stroke: var(--col_btn_text);
}
#beds-block .btn_bed * {
  pointer-events: none;
}
#beds-block .bed_bottom_holder {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid var(--color_b2) 1px;
  border-top: solid var(--color_b2) 1px;
}
#beds-block .cost_holder {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#beds-block .bed_cost_old {
  font-family: "FoglihtenNo06";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-decoration-line: line-through;
  color: var(--color_text);
}
#beds-block .bed_cost_new {
  font-family: "FoglihtenNo06";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: var(--text_titles);
}
/*----MEDIA----*/
@media (max-width: 1200px) {
  #beds-block .beds_holder {
    grid-template-columns: 1fr 1fr;
  }
  #beds-block .bed_card {
    background: var(--color_b2);
    width: calc(100vw / 2 - 30px);
    max-width: none;
  }
}
@media (max-width: 600px) {
  #beds-block .beds_holder {
    grid-template-columns: 1fr;
  }
  #beds-block .beds_title {
    font-size: 32px;
  }
  #beds-block .bed_card {
    background: var(--color_b2);
    width: calc(100vw - 30px);
  }
}
/*----MEDIA----*/
