/*
Description: This plugin deals with ad-on price if user want to buy a circulation space
* Version:  1.0
* Author: Khusyal Singh (khusyal@gmail.com)
* Author URI:Your http://www.medicalmatrimony.in/
* License:  GPL2
*/
#space_area .reserved {
  background: #d9475c;
  height: 100px;
  color: #fff;
  text-align: center;
  padding: 40px;
  cursor: not-allowed;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}
#space_area .free {
  background: #9de0af;
  height: 100px;
  text-align: center;
  padding: 40px;
  cursor: pointer;
  border-radius: 5px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}
#space_area .free:hover {    
    opacity: 0.4;
    border-radius: 10px;
}
#space_area .pos_first{
  height: 100px;
  padding: 55px;
}
#space_area .pos_second,#space_area .pos_third,#space_area .pos_fourth,#space_area .pos_fifth{
  height: 140px;
  padding: 55px;
}
body.woocommerce-cart .woocommerce-message a {
    display: none;
}
.space-avalability{
    text-align: center;
    padding: 10px 20px;
    font-weight: 700;
    color: #fff;
    background: #d9475c;
    font-size: 18px;
}
.blink {
  animation: blinker 2s linear infinite;
}

@media (min-width: 1050px) and (max-width: 1680px) {  
  #space_area{
    margin-left: 100px;
  }
  button.btn.btn-info.btn-lg.sample-btn {
    display: none;
  }  
}
@media screen and (max-width: 992px) {
    .sample-img{
           display: none;
    }
    .space_area.spaces.row {
          margin-right: -8px;
          margin-left: -8px;
      }
    .sample-btn{display: block;}
}

@keyframes blinker {
  50% {
    opacity: .3;
  }
}