/* Import Google font - Poppins */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
.jk_ical_wrapper {
    width: 100%;
    max-width: 450px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    overflow: auto;
}

.jk_ical_wrapper .jk_ical_header {
    display: flex;
    align-items: center;
    padding: 25px 30px 10px;
    justify-content: space-between;
}

.jk_ical_wrapper .jk_ical_header .icons {
    display: flex;
}

.jk_ical_wrapper .jk_ical_header .icons span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    color: #878787;
    text-align: center;
    line-height: 38px;
    font-size: 1.9rem;
    user-select: none;
    border-radius: 50%;
}

.jk_ical_wrapper .icons span:last-child {
    margin-right: -10px;
}

.jk_ical_wrapper .jk_ical_header .icons span:hover {
    background: #f2f2f2;
}

.jk_ical_wrapper .jk_ical_header .current-date {
    font-size: 1.45rem;
    font-weight: 500;
}

.jk_ical_wrapper .jk_ical_calendar {
    padding: 20px;
}

.jk_ical_wrapper ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none !important;
    text-align: center;
    padding: 0;
    margin: 0;
}

.jk_ical_wrapper .days {
    margin-bottom: 20px;
}

.jk_ical_wrapper ul li {
    padding: 0;
    margin: 0;
    color: #333;
    width: calc(100% / 7);
    font-size: 1.07rem;
}

.jk_ical_wrapper .weeks li {
    font-weight: 500;
    cursor: default;
}


/* free day */

.jk_ical_wrapper .days li {
    z-index: 1;
    cursor: default;
    position: relative;
    padding-top: 15px;
    padding-bottom: 13px;
    text-align: center;
    color: white;
    border: none;
}

.jk_ical_wrapper .days li::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    height: 38px;
    width: 38px;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #399359;
}


/* inactive day */

.jk_ical_wrapper .days li.inactive:before {
    background: lightgrey;
}

.jk_ical_wrapper .days li.inactive {
    color: #aaa;
}


/* reserved day */

.jk_ical_wrapper .days li.ocupied::before {
    background: #f20550;
}


/* historic day */

.jk_ical_wrapper .days li.past::before {
    background: grey;
}


/* today */

.jk_ical_wrapper .days li.active::before {
    background-color: #541388;
}


/* ocupied today */

.jk_ical_wrapper .days li.active.ocupied:before {
    border: 1px solid #f20550;
}