﻿.calendar {
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

.month {
    text-align: center;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.month span {
    padding: 0px 15px;
    cursor: pointer;
}

    .month h2 {
        margin: 0;
    }

.prev, .next {
    cursor: pointer;
    font-size: 24px;
    padding: 0 10px;
    user-select: none;
}

.weekdays, .days {
    display: flex;
    flex-wrap: wrap;
}

    .weekdays div, .days div {
        width: 13%;
        text-align: right;
        padding: 16px 20px;
        border: 0px solid #ddd;
        min-height: 208px;
        margin: 0.61%;
        font-size: 34px;
    }

    .weekdays .weekname {
        min-height: auto;
        font-size: 28px;
        text-align: center;
        padding: 0;
    }



    .days div {
        background-color: #F8F8F8;
    }

    .days .event {
        width: 100%;
        cursor: pointer;
        padding: 5px;
        margin-bottom: 5px;
        text-align: left;
        line-height: 15px;
        font-size: 13px;
        margin: 6px 0px 0;
        min-height: auto;
        border-radius:4px;
    }

    .days .event1 {
        background: rgba(3,155,229, 0.11);
        color: #039BE5;
    }

    .days .event2 {
        background: rgba(254,78,117, 0.11);
        color: #FE4E75;
    }

    .days .event3 {
        background: rgba(51,182,121, 0.11);
        color: #33B679;
    }

    .days .disabled {
        color: #bbb;
        background-color: #f9f9f9;
        cursor: default;
    }

        .days .disabled:hover {
            background-color: #f9f9f9;
        }
.sunday {
    background-color: #EDF4F4 !important;
}

.upcoming-event {
    background-color: #F2D4CE !important;
}
.old-event {
    background-color: #CDF5F3 !important;
}

.selectdrop{position:relative;}
    .selectdrop .select2-container {
        width: 100%;
        position: relative; padding-left:0;
        border: 1px solid #9D9D9D; border-radius:6px;
    }
    .selectdrop .labletop {
        position: absolute;
        top: -18px;
        background: #fff;
        left: 13px;
        display: block;
        padding: 0 8px;
        font-size: 18px;
    }

    .selectdrop .select2-container .select2-choice {
        background: none;
        height: 60px;
        font-size: 16px;
    }
.select2-container .select2-choice > .select2-chosen {
    text-transform: capitalize;
   
    font-weight: 600;
}

        .selectdrop .select2-container .select2-choice .select2-arrow b {
            width: 34px;
        }

.selectdropwidth {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    width: 220px;
}

.inputfilef {
    border: 0px solid #000;
    background: #A59B65;
color:#fff;
border-radius:4px;

}

    .inputfilef input {
        border: 0px solid #000;
        background: transparent;
        color: #fff;
    }


.input-group-text {
    background: #A59B65;
}
.form-control:focus {
    background-color: transparent;
    box-shadow: inherit;
}

.btnevents {
    border-radius: 7px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    padding: 15px 15px;
    margin-left: 12px;

}
    .btnevents:hover .filtterb {
        filter: brightness(255);
    }

    .filtterb {
        filter: brightness(00);
    }
.btnevents2 {
    border-radius: 7px;
    border: 1px solid #a59b65;
    background: transparent;
    color: #a59b65;
    padding: 15px 15px;
    margin-left: 12px;
}

    .btnevents2:hover .filtterb1 {
        filter: brightness(255);
    }


@media only screen and (max-width:1375px) {
    .weekdays .weekname {
        font-size: 23px;
    }
}


@media only screen and (max-width:1024px) {
    .weekdays .weekname {
        font-size: 18px;
    }
}


@media only screen and (max-width:676px) {
    .selectdropwidth {
        width: 100%;
        margin-left: 0px; 
        margin-bottom: 20px;
    }
}



