@media (min-width: 992px) and (max-width: 1200px){
    .d-md-block {
        display: none!important;
    }
    div > .odd-month{
        width: 200%;
    }
}

@media (min-width: 1200px) {
    .odd-month > div > div > div:nth-child(3) {
        display: none;
    }

    .even-month > div > div > div:nth-child(1) > i {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .odd-month > div > div > div:nth-child(3) {
        display: none;
    }

    .even-month > div > div > div:nth-child(1) > i {
        display: none;
    }
}

@media (min-width: 890px) and (max-width: 992px){
    .container {
        max-width: 90%;
    }
}

@media (min-width: 768px) and (max-width: 890px){
    .container {
        max-width: 98%;
    }
}

.popover-header{
    background: #abeffd;
    font-weight: 700;
    text-align: center!important;
}
.popover-body {
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
}

.popover{
    max-width: 25%; /* Max Width of the popover (depending on the container!) */
}
@media (max-width: 360px){
    .popover {
        max-width: 70%;
    }
}
@media (min-width: 360px) and (max-width: 440px){
    .popover {
        max-width: 45%;
    }
}
@media (min-width: 440px) and (max-width: 585px){
    .popover {
        max-width: 38%;
    }
}
@media (min-width: 585px) and (max-width: 720px){
    .popover {
        max-width: 30%;
    }
}
@media (min-width: 840px) and (max-width: 1190px){
    .popover {
        max-width: 20%;
    }
}
@media (min-width: 1190px){
    .popover {
        max-width: 15%;
    }
}

.sale, .fa-angle-right, .fa-angle-left{
    cursor: pointer;
}
.sale:hover{
    color: #ca0f0f;
}

.small, small {
    font-size: 80%;
    font-weight: 400;
}

.calendar-days-list .days li.national-holiday {
    background-color: #fff1f0;
}

.calendar-days-list .days li.national-holiday:hover {
    background: #ffd7d5;
    transition: .2s all;
}

.calendar-days-list .days li {
    position: relative;
}

.calendar-days-list .days li[data-holiday]:hover::after {
    content: attr(data-holiday);
    position: absolute;
    top: 80%;
    left: 50%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1;
}
