#price-block {
  padding-bottom: 70px;
}

.price-holder .price-btns-holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.price-tab-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0c0c0c;
  padding: 10px 15px;
  background-color: #e5e5e5;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}
.price-tab-btn:hover,
.price-tab-btn.active {
  background-color: #284e4f;
  color: #fff;
}
.price-holder .price-item-tab {
  /*display: grid;*/
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 60px;
  display: none;
}
.price-holder .price-item-tab.active {
  display: block;
}
.price-accordeon-content {
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
.price-accordeons {
  display: flex;
  justify-content: space-between;
}
.price-column {
  width: calc(50% - 15px);
}
.price-accordeon {
  margin-bottom: 10px;
}
.price-accordeon-title {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 30px 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}
.price-accordeon-title svg {
  width: 20px;
  height: 20px;
  margin-left: 30px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.price-accordeon-title:hover {
  border-color: #284e4f;
}
.price-accordeon-title .title-tab {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #0c0c0c;
}
.price-accordeon-title.is-opened {
  background-color: #284e4f;
  border-color: #284e4f;
}
.price-accordeon-title.is-opened .title-tab {
  color: #ffffff;
}
.price-accordeon-title.is-opened svg {
  transform: rotate(-45deg);
}
.price-accordeon-title.is-opened path {
  fill: #ffffff;
}

.price-file {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #0c0c0c;
  width: max-content;
}
.price-file svg {
  margin-right: 10px;
  width: 21px;
  height: 25px;
}
.price-file:hover {
  color: #633a34;
}
.price-file:hover path {
  fill: #633a34;
}
.price-accordeon-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 35px;
  border-bottom: 1px solid #284e4f;
}
.price-accordeon-content-img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s;
}
.price-accordeon-content-img:hover {
  opacity: 0.5;
}
.price-accordeon-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.price-accordeon-content-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0c0c0c;
  padding: 10px 0;
  flex: 1;
}
.price-accordeon-content-value {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #0c0c0c;
  flex-shrink: 0;
  padding: 10px 0;
  margin-left: 20px;
}
@media screen and (max-width: 991px) {
  .price-accordeon-title {
    padding: 18px 20px;
  }
  .price-accordeon-title .title-tab {
    font-size: 18px;
    line-height: 24px;
  }
  .price-tab-btn {
    padding: 7px 12px;
    font-size: 14px;
  }
  .price-accordeon-title svg {
    width: 16px;
    height: 16px;
  }
  .price-accordeon-content-row {
    padding: 10px 20px;
  }
  .price-accordeon-content-name {
    font-size: 14px;
    line-height: 20px;
  }
  .price-accordeon-content-value {
    font-size: 14px;
    line-height: 20px;
  }
  .price-file svg {
    width: 18px;
    height: 22px;
  }
}
@media screen and (max-width: 767px) {
  .price-accordeons {
    flex-direction: column;
  }
  .price-column {
    width: 100%;
  }
}
