
.calendar {
    border-top: 3px solid #aa72ad;
    display: table;
    width: 100%;
    direction: ltr;
}

    .calendar header {
        cursor: default;
        height: 40px;
        position: relative;
        font-weight: bold;
    }

        .calendar header span {
            display: inline-block;
            line-height: 40px;
        }

        .calendar header .button {
            width: 55px;
            text-align: center;
            position: absolute;
            cursor: pointer;
        }

        .calendar header .left.button {
            left: 0;
        }

        .calendar header .right.button {
            right: 0;
            top: 0;
        }

        .calendar header .header-label {
            width: 100%;
            text-align: center;
            cursor: pointer;
        }

    .calendar table {
        background: #f3e2fa;
    }

        .calendar table td {
            color: #543b6e;
            line-height: 35px;
            text-align: center;
            cursor: default;
            font-size: 18px;
            color: #aa72ad;
        }

    .calendar thead th {
        height: 26px;
        line-height: 26px;
        text-transform: uppercase;
        font-size: 90%;
        color: #9e9e9e;
    }

        .calendar thead th:not(:last-child) {
            border-right: 1px solid #fff;
        }

    .calendar .calendar-frame table {
        width: 100%;
    }

    .calendar .calendar-frame tbody td.today {
        font-size: 20px;
        color: #aa72ad;
        background: #e2cfe5;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }



    .calendar .calendar-frame tbody td:not(.disabled).selected {
        background: #aa72ad;
        color: #fff;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .calendar .calendar-frame tbody td:not(.disabled):hover {
        background: #aa72ad;
        color: #fff;
        cursor: pointer;
        border-radius: 70px;
        transition: all 0.3s ease-in-out;
    }

.disabled {
    background-color: #e4dbee;
}

#pnlSimpleCalendar table tbody tr th {
    color: #dd2a8e;
    line-height: 50px;
    text-align: center;
    -webkit-transform: rotate(-45deg);
    /* Firefox */
    -moz-transform: rotate(-45deg);
    /* IE */
    -ms-transform: rotate(-45deg);
    /* Opera */
    -o-transform: rotate(-45deg);
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    font-weight: normal;
}

.calendar-frame {
    border-bottom: 3px solid #aa72ad;
    min-height: 220px;
    background-color: #f3e2fa;

}

.currentDay {
    background: #eee2f2de;
    border-top: 3px solid #f0077d;
    border-bottom: 3px solid #f0077d;
    color: #f0077d;
    padding-top: 25%;
    background-image: url(img/CalBack.png);
    background-position: top center;
    background-repeat: repeat-x;
}
