#calendar_wrap
{
    padding:30px;
}



.fc-event:hover
{
    cursor:pointer;
}


:root {
  --fc-button-text-color: #666;
  --fc-button-bg-color: #fff;
  --fc-button-border-color: #ccc;
  --fc-button-hover-bg-color: #f7f7f7;
  --fc-button-hover-border-color: #ccc;
  --fc-button-active-bg-color: #f0f6ff;
  --fc-button-active-border-color: #ccc;

  --fc-event-bg-color: #3788d8;
  --fc-event-border-color: #fff;
  --fc-event-text-color: #fff;
  --fc-event-selected-overlay-color: rgba(0, 0, 0, 0.25);
  --fc-today-bg-color: #f7f7f7;
}





/**
 *  Calendar Modal
 *  =====================================================
 */
.lightbox-frame {
    /*
    position:   absolute;
    top:        0;
    right:      0;
    bottom:     -1500px;
    left:       -50px;
    */
    position:   fixed;
    top:        0;
    right:      0;
    bottom:     0;
    left:       0;

    background: rgba(0,0,0,0.85);
    z-index:    9999;
}
    .lightbox-window {
        position:   relative;
        width:      80%;
        max-width:  700px;
        margin:     150px auto 0 auto;
        background: #fafafa;
        min-height: 212px;
        padding:    20px 30px;
        border-radius:  2px;
        overflow:       hidden;
    }
        .lightbox-window p {
            margin:      0 0 5px 0;
        }

#lightbox_content .remove-option {
    display:      none;
}
#lightbox_content .option {
    width:      80%;
    padding:    4px 10px 4px 6px;
    margin:     3px 0 3px 0;
    background: #fff;
    border:     1px solid #c7c7c7;
    cursor:     move;
}
#lightbox_content .option:last-child {
    margin:     3px 0 20px 0;
}
#lightbox_content .option input {
    width:      75%;
}
#lightbox_content .option-order {
    padding: 0 10px;
}
#lightbox_controls {
    padding:    10px 0;
}

div#lightbox_cancel_button {
    position:   absolute;
    top:        0;
    right:      0;
    background: #0287b0;
    padding:    9px 12px 9px 13px;
    font-size:  22px;
    color:      #fff;
}

.cm_description {
    padding: 10px 0 25px 0;
}

.cm_dates {
    font-size: 14px;
}

.cm_dates span {
    font-weight:    500;
}

#lightbox_content h2 span {
    color: #0287b0;
}
#lightbox_content hr {
    border: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #fff;
}




/* List of calendar item */
.calendar-item-wrap
{
    display:flex;
    border-bottom:1px solid #ccc;
    padding-top:10px;
    padding-bottom:10px;
}

.calendar-item-wrap > div
{
    margin-right:15px;

}

/* Boxe like cal date */
.cal-date-wrap
{
    display:flex;
    flex-direction: column;
    text-align: center;
    width:75px;
    border-radius:10px;
    min-width:70px;
}

.cal-date-wrap .cal-date-month
{
    border-radius:10px 10px 0px 0px;
    background:#c72c2c;
    color:#fff;
    padding:3px;
    font-size:12px;

}

.cal-date-wrap .cal-date-day
{
    font-size:26px;
    border-left:1px solid #ccc;
    border-right:1px solid #ccc;
}

.cal-date-wrap .cal-day-name
{
    border:1px solid #ccc;
    border-radius:0px 0px 10px 10px;
    border-top:0px;
    font-size:12px;
    padding-bottom:5px;

}

/* Make the datepicker input smaller than full width */
.input.ek-datepicker
{
    max-width:300px;
}
