.coupon__item{
    border: 1px dashed lightgray;
    width: 100%;
    /*box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0);*/
    transition: 0.15s;
}
.coupon__block{
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0px 15px -60px rgba(0,0,0,0.08), 0 2px 5px rgba(0,0,0,0.11);
}
.coupon__overlay{
    display: none;
    position: absolute;
    /*width: 100%;*/
    /*height: 100%;*/
    align-items:center;
    justify-content: center;
    top: 50%;
    right: -6px;
    transform: translate(100%, -50%);
    /*background-color: rgba(0, 0, 0, 0.25);*/
}
.coupon__overlay-icon{
    width: 70px;
    height: 70px;
    margin:auto;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items:center;
    justify-content: center;
}
.coupon__overlay-icon svg{
    width: 50%;
    height:auto;
}
.coupon__item:hover{
    cursor: pointer;
    border: 1px dashed transparent;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: 0.1s;
}
.coupon__item:hover .coupon__overlay{
    display: inline-flex;
}

#coupon_items_services .dt-page-jump
{
    display: none
}

.coupon .flatpickr-calendar.static.open{
    z-index: 99
}