
table.calendar {
    border-top: 0;
    table-layout: fixed;
}

    table.calendar tbody td:nth-of-type(even) {
        background: #f2f2f2;
    }
    /*table.calendar tbody tr:nth-of-type(odd) {
        background: #f2f2f2;
    }*/

    table.calendar tbody td {
        padding: 4px;
    }

    table.calendar thead tr td {
        color: #1374BB;
        text-align: center;
        padding: 0.5rem 0 0.5rem 0;
    }

    table.calendar thead tr:first-child td {
        text-align: left !important;
        padding-left: 5px;
        border: 0;
    }

    table.calendar thead tr:last-child td {
        font-size: .65rem;
        outline: 0;
        top: 25px;
    }

        table.calendar thead tr:last-child td.holiday {
            color: #ffaa00;
        }

    table.calendar thead tr td.new-month {
        border-left: solid 2px #1374BB;
        outline: 0;
    }

    table.calendar tbody tr td div.position {
        border-radius: 5px;
        cursor: pointer;
        position: relative;
        overflow: visible;
        text-align: left;
        padding: 2px;
        height: 80px;
        border: 2px solid #28a74547;
    }

    .custom-calendar .sticky-table table {
    max-width: none;
    padding-left: 20px;
    }

    .custom-calendar .sticky-table  {

    padding-left: 20px !important;
    }



.bubble {
    position: absolute;
    top: 0px;
    left: 0%;
    transform: translateX(0%);
    width: 200px;
    height: 100%;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    display: none;
    z-index: 9999; /* High value to position the bubble above */
    font-size: 9px;
}


    .position:hover .bubble {
        display: block;
    }

    .bubble-content {
        position: absolute;
        top: 10px;
        left: 0;
        right: 0;
       
        padding-left: 30px;
    }

    .bubble-enlarge-icon {
        position: absolute;
        top: 0px;
        left: 5px;
        font-size: 24px;
    }

    .bubble-selector-icon {
        position: absolute;
        top: 40px;
        left: 5px;
        font-size: 24px;
    }


    table.calendar tbody tr td div.position .image-side {
        width: 50px;
        position: absolute;
        top: 3px;
        left: 2px;
    }

    table.calendar tbody tr td div.position .image-side img {
        max-width: 50px;
        max-height: 62px;
    }


    /*table.calendar tbody tr td div.image-side {
        width: 50px;
        position: absolute;
        top: 3px;
        left: 2px;
    }

    table.calendar tbody tr td div.image-side img {
        max-width: 50px;
        max-height: 62px;
    }*/

    table.calendar tbody tr td div.image-description {
        overflow: hidden;
        white-space: nowrap;
        margin-left: 52px;
        line-height: 1;
        /* Firefox */
        width: -moz-calc(100% - 52px - 15px);
        /* WebKit */
        width: -webkit-calc(100% - 52px - 15px);
        /* Opera */
        width: -o-calc(100% - 52px - 15px);
        /* Standard */
        width: calc(100% - 52px - 15px);
    }

     /*   table.calendar tbody tr td div.image-description .enlarge-icon {
            position: absolute;
            top: 3px;
            right: 2px;
        }

        table.calendar tbody tr td div.image-description .selector-icon {
            position: absolute;
            bottom: 3px;
            right: 2px;
        }*/
