/* EXAMPLE USAGE
@media (max-width: @screen-xs) { display: none; }
*/
@media (min-width: 601px) {
  display: none;
}
/* ==========================================================================
 HYBRID FEATURE
 ========================================================================== */

.hybrid-feature {
  background: var(--greyLightest2);
  padding: 60px 0;
  margin: 60px 0;
}
@media (max-width: 800px) {
  .hybrid-feature {
    padding: 40px 0;
    margin: 40px 0;
  }
}
.hybrid-feature__row {
  display: flex;
  margin: 0 -20px;
}
@media (max-width: 800px) {
  .hybrid-feature__row {
    flex-direction: column;
    margin: 0;
  }
}
.hybrid-feature__col {
  width: 50%;
  padding: 0 20px;
}
@media (max-width: 800px) {
  .hybrid-feature__col {
    width: auto;
    padding: 0 0 20px;
  }
}
@media (max-width: 800px) {
  .hybrid-feature__col:first-child {
    order: 2;
  }
}
@media (max-width: 800px) {
  .hybrid-feature__col:last-child {
    order: 1;
  }
}
.hybrid-feature__actions {
  display: flex;
  justify-content: space-between;
}
.hybrid-feature__actions .btn {
  flex: 1;
  white-space: nowrap;
}
.hybrid-feature__actions ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
.hybrid-feature__actions li {
  padding: 0 0 0 20px;
  margin: 0;
  display: flex;
  align-items: center;
}
.hybrid-feature__actions li img {
  height: 50px;
  display: block;
}
.hybrid-feature__video-with-lightbox .open-popup-link {
  display: block;
  position: relative;
}
.hybrid-feature__video-with-lightbox__img {
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.hybrid-feature__video-with-lightbox__img img {
  display: block;
  transition: all 0.3s;
}
.hybrid-feature__video-with-lightbox__img:after {
  content: "";
  display: block;
  background: url(../img/icon-play.svg) no-repeat;
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hybrid-feature__video-with-lightbox .open-popup-link:hover .hybrid-feature__video-with-lightbox__img img {
  transform: scale(1.1);
}
