/* 
 * Availabilities page
 */ 

#booking-calendar {
    margin: 0px;
} 

.prices-cards {
    margin-top: 20px;
    margin-bottom: 20px;
}

.prices-cards .card {
    height: auto;
    min-height: 200px;
    cursor: pointer;
    margin: 10px 5px 10px 5px;
    padding-top: 10px;
    text-align: center;
}

.prices-cards .card .badge {
    font-size: 2em;
    background-color: #fff;
}

.prices-cards .card .card-body {
    padding: 5px;
}

.prices-cards .card .card-title {
    font-size: 1.2em;
}

.prices-cards .card .card-text {
    font-size: 0.8em;
}

.prices-cards .col-prices-cards:nth-of-type(3n+1) .card {
    background-color: #c40b95;
}

.prices-cards .col-prices-cards:nth-of-type(3n+1) .card  .badge {
    color: #c40b95;
}

.prices-cards .col-prices-cards:nth-of-type(3n+2) .card {
    background-color: #ffc107;
}

.prices-cards .col-prices-cards:nth-of-type(3n+2) .card  .badge {
    color: #ffc107;
}

.prices-cards .col-prices-cards:nth-of-type(3n) .card {
    background-color: #0076d0;
}

.prices-cards .col-prices-cards:nth-of-type(3n) .card  .badge {
    color: #0076d0;
}

.prices-cards .card .price-details {
    display: none;
}

.prices-cards .card .price-details span:nth-of-type(3n+1) {
    font-size: 0.8em;
}

.prices-cards .card .price-details span:nth-of-type(3n+2) {
    font-size: 1.5em;
    font-weight: bold;
}

.prices-cards .card .price-details span:nth-of-type(3n) {
    margin-bottom: 0.5em;
    font-size: 0.8em;
}

.prices-cards .card .price-details .badge {
    /*margin-bottom: 0.5em;*/
    font-size: 0.8em;
}

.prices-cards .card .list-group .list-group-item { 
    padding: 0.5em;
    text-align: center;
}

.prices-cards .col-prices-cards:nth-of-type(3n+1) .card .list-group-item:nth-of-type(2n+1) {
    background-color: #0076d0;
}

.prices-cards .col-prices-cards:nth-of-type(3n+1) .card .list-group-item:nth-of-type(2n) {
    background-color: #ffc107;
    color: #555;
}

.prices-cards .col-prices-cards:nth-of-type(3n+2) .card .list-group-item:nth-of-type(2n+1) {
    background-color: #c40b95;
}

.prices-cards .col-prices-cards:nth-of-type(3n+2) .card .list-group-item:nth-of-type(2n) {
    background-color: #0076d0;
}

.prices-cards .col-prices-cards:nth-of-type(3n) .card .list-group-item:nth-of-type(2n+1) {
    background-color: #c40b95;
}

.prices-cards .col-prices-cards:nth-of-type(3n) .card .list-group-item:nth-of-type(2n) {
    background-color: #ffc107;
    color: #555;
}

@media (min-width:576px) {
 
    .prices-cards .card .card-text {
        font-size: 0.9em;
    }
    
}

@media (min-width:768px) {

    .prices-cards .card .card-title {
        font-size: 1.5em;
    }

}

@media (min-width:992px) {   

    .prices-cards .card .card-text {
        font-size: 1.0em;
    }

    .prices-cards .card .price-details span:nth-of-type(3n+1) {
        font-size: 1.0em;
    }

    .prices-cards .card .price-details span:nth-of-type(3n+2) {
        font-size: 2em;
        font-weight: bold;
    }

    .prices-cards .card .price-details span:nth-of-type(3n) {
        font-size: 1em;
    }
     
}

@media (min-width:1200px) {

}