/* CALENDAR - Aptus Style */
#js-calendar- {
    margin-top: 2em;
    padding: 1em;
    background-color: #ffffff;
    border: 1px solid #efefef;
    border-radius: 1em;
}

#js-calendar- h3 {
    color: var(--main-color);
    font-weight: bold;
}

#js-calendar- > p {
    display: flex;
    flex-wrap: wrap;
}

#js-calendar- > p > a {
    text-align: center;
    flex: 3;
}

#js-calendar- p .js-calendar-trigger {
    background-color: #eee;
    border: 1px solid #ccc;
    color: #eee;
    width: 45px;
    display: block;
    overflow: hidden;
    height: 27px;
    border-radius: 1em;
    position: relative;
    flex: 1;
}

#js-calendar- p .js-calendar-trigger::after {

    font-family: "FontAwesome";
    content: '\f053';
    font-size: .9em;
    position: absolute;
    color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

#js-calendar- p .js-calendar-trigger:last-of-type::after {
    content: '\f054';
}

#js-calendar- .js-calendar-table {
    width: 100%;
}

#js-calendar- .js-calendar-table tr th,
#js-calendar- .js-calendar-table tr td {
    cursor: default;
    text-align: center;
    border: 0;
}

#js-calendar- .js-calendar-table tr td {
    border: 1px solid #ddd;
    text-align: center;
}

#js-calendar- .js-calendar-table tr td.today {
  background-color: #31708f;
  color: #fff;
}

#js-calendar- .js-calendar-table tr td.events:hover {
    background-color: #ddd;
}