.panoramas-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  overflow-x: scroll;
 
}

/*.panoramas-categories::-webkit-scrollbar {*/
/*  display: none;*/
/*}*/

.panoramas-categories__item {
  display: inline-block;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  padding: 10px 24px;
  background-color: #fff;
  border-radius: 5px;
  color: #000;
  text-decoration: none;
  border: 2px solid #fff;
  white-space: nowrap;
}

.panoramas-categories__item:hover,
.panoramas-categories__item._active {
  border: 2px solid #ed1b2f;
}

.panoramas-categories__item:not(:last-of-type) {
  margin-right: 30px;
}

.panoramas-item__icon {
  min-width: 32px;
  height: 32px;
  background: url("/assets/img/panoramas/icons/mdi_play-box-outline.svg")
    no-repeat;
  background-size: 100% 100%;
}

.panoramas-items {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.panoramas-item {
  padding: 30px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: calc((100% - (40px * 2)) / 3);
  font-family: "Montserrat";
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.5s ease;
  color: #000;
  text-decoration: none;
}

.panoramas-item:hover {
  box-shadow: 0px 6px 32px 0px rgba(20, 24, 60, 0.12);
}

.panoramas-item:hover .panoramas-item__icon {
  min-width: 32px;
  height: 32px;
  background: url("/assets/img/panoramas/icons/play.gif") no-repeat;
  background-size: 100% 100%;
}

.panoramas-item__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

@media only screen and (max-width: 996px) {
  .panoramas-item {
    width: calc((100% - (40px)) / 2);
  }
}

@media only screen and (max-width: 576px) {
  .panoramas-item {
    width: 100%;
  }
}