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

.tst-btn {
  font-size: 18px;
  background-color: #4dc4d4;
  color: #fff !important;
  padding: 4px 50px;
  border-radius: 8px;
  cursor: pointer;
  transition: .5s;
}

.tst-lightbox{
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display:none;
  background-color: rgba(0, 0, 0, 70%);
}

.tst-lightbox-modal{
  color: #000000;
  background-color: #fff;
  border: 1px solid #4dc4d4;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-width: 550px;
  font-size: 18px;
  padding: 0 30px 30px 30px;
}

.tst-lightbox-btn-wrapper{
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.tst-lightbox-close{
  font-size: 22px;
  cursor: pointer;
  color: #eaeaea;
}

.tst-lightbox-close:hover{
  color: #000000;
}

.tst-lightbox-modal .tst-lightbox-header{
  display: flex;
  align-items: center;
  gap: 10px;
}

.tst-lightbox-logo{
  max-width: 100px;
}

.tst-lightbox-modal .tst-lightbox-header-right{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tst-lightbox-modal .tst-lightbox-title{
  font-weight: 600;
}

.tst-lightbox-modal .tst-lightbox-area{
  font-weight: 300;
}

.tst-lightbox-tags{
  display: flex;
  gap: 10px;
  margin: 10px 0 20px 0;
  flex-wrap:wrap;
}

.tst-lightbox-tag{
  font-size: 16px;
  padding: 2px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: .5s;
  color: #000000;
  background-color: #d5f4f7;
  font-weight: 300;
}

.tst-lightbox-tag-availability{
  background-color: #f37c1f;
  color: #ffffff;
}

.tst-lightbox-body{
  font-weight: 300;
}

.tst-lightbox-footer{
  display: flex;
  margin-top: 20px;
  justify-content: center;
}

.tst-lightbox-close-mobile{
  display:none;
}

.row-fluid .span12 {
    min-height: 0px;

@media only screen and (max-width: 768px) {
    .tst-lightbox-btn-wrapper{
      display:none;
    }
    
    .tst-lightbox-modal{
      padding: 30px;
    }
    
    .tst-lightbox-close-mobile{
      display:block;
    }
}




