body {
    overflow-y: auto;
    padding-bottom: 4rem;
}
.header {
    padding: 40px 16px 0 16px;
    display: flex;
    column-gap: 94px;
    align-items: center;
}
.header .btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    box-shadow: none;
    border: none;
    outline: none;
    background: none;
    background-color: #fff;
    border-radius: 100px;
}
.header .btn-icon:active {
    background-color: rgba(195, 195, 195, 0.25);
}
.header .filter-container {
    display: flex;
    align-items: center;
    column-gap: 4px;
}
.header .filter-container #filter-tanggal {
    margin-left: 6px;
    margin-right: 6px;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    border: none;
    background: none;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    appearance: none;
    min-width: fit-content;
}
.header .filter-container #filter-tanggal:focus-visible {
    outline: none;
    box-shadow: none;
    border-radius: 0;
}
.body:not(.information-container .body) {
    display: flex;
    flex-direction: column;
    padding: 0;
    row-gap: 50px;
}
.body .calendar-container {
    max-width: 100%;
    margin: 0;
    background-color: #fff;
    overflow: hidden;
}
.body .calendar-container .weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 15px 10px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
}
.body .calendar-container .weekdays .weekday {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.08px;
}
.body .calendar-container .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    gap: 8px;
}
.body .calendar-container .days .day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}
.body .calendar-container .days .day .label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 25px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.08px;
    border-radius: 999px;
}
.body .calendar-container .days .day:active {
    background-color: rgba(195, 195, 195, 0.25);
}
.body .calendar-container .days .day.other-month {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.body .calendar-container .days .day.other-month {
    color: rgba(153, 153, 153, 1);
}
.body .calendar-container .days .day.today {
    font-weight: 700;
}
.body .calendar-container .days .day.green .label {
    background-color: rgba(29, 216, 130, 1);
}
.body .calendar-container .days .day.red .label {
    background-color: rgba(255, 0, 0, 1);
    color: #fff;
}
.body .calendar-container .days .day.yellow .label {
    background-color: rgba(255, 228, 117, 1);
}
.body .calendar-container .days .day.weekend .label {
    color: rgba(255, 0, 0, 1);
}
.body .calendar-container .days .day.weekend.red .label {
    color: #fff;
}
#absensi-offcanvas {
    border-radius: 30px 30px 0 0;
    min-height: calc(100vh - 350px);
}
#absensi-offcanvas h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.45px;
}
#absensi-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    overflow: hidden;
}
#absensi-offcanvas .offcanvas-body .data-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 4px;
    margin-bottom: 8px;
}
#absensi-offcanvas .offcanvas-body .data-information .item {
    display: flex;
    align-items: center;
    padding: 8px;
    column-gap: 15px;
    box-shadow: 0px 4px 10px 0px rgba(195, 195, 195, 0.25);
    border-radius: 10px;
}
#absensi-offcanvas .offcanvas-body .data-information .text-label {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
}
#absensi-offcanvas .offcanvas-body .action-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* prettier-ignore */
#absensi-offcanvas .offcanvas-body .action-container .btn-link {
    background: none;
    border: none;
    color: rgba(153, 153, 153, 1);
    cursor: pointer;
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: -0.08px;
}
/* prettier-ignore */
#absensi-offcanvas .offcanvas-body .action-container .btn-link:active {
    color: rgba(153, 153, 153, 0.5);
}
#absensi-offcanvas .offcanvas-body .data-information .notes {
    display: flex;
    flex-direction: center;
    justify-content: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.23px;
    color: #999999;
}
.body .information-container {
    padding: 0 30px;
}
.body .information-container .box-information {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: rgba(247, 247, 247, 1);
    padding: 24px 23px;
}
.body .information-container .box-information .header {
    padding: 0 30px;
    margin-bottom: 20px;
}
.body .information-container .box-information .header h6 {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
}
.body .information-container .box-information .body {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}
.body .information-container .box-information .body .label-container {
    display: flex;
    align-items: center;
    column-gap: 21px;
}
.body .information-container .box-information .body .label-container h1 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 34px;
    line-height: 41px;
    letter-spacing: 0.4px;
}
.body .information-container .box-information .body .label-container p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.06px;
    color: rgba(153, 153, 153, 1);
    max-width: calc(100vw - 280px);
}
.body .information-container .box-information .body .chart-container {
    display: flex;
    align-items: center;
    column-gap: 34px;
}
.body
    .information-container
    .box-information
    .body
    .chart-container
    .highcharts-figure {
    position: relative;
    height: 94px;
    width: 160px;
}
.body
    .information-container
    .box-information
    .body
    .chart-container
    .legend-container {
    display: flex;
    flex-direction: column;
    row-gap: 9px;
}
/* prettier-ignore */
.body .information-container .box-information .body .chart-container .legend-container .box-legend {
    height: 10px;
    width: 10px;
    border-radius: 999px;
}
/* prettier-ignore */
.body .information-container .box-information .body .chart-container .legend-container .legend {
    display: flex;
    align-items: center;
    column-gap: 7px;
}
/* prettier-ignore */
.body .information-container .box-information .body .chart-container .legend-container .legend .box-legend.green {
    background-color: #1DD882;
}
/* prettier-ignore */
.body .information-container .box-information .body .chart-container .legend-container .legend .box-legend.orange {
    background-color: #FFC135;
}
/* prettier-ignore */
.body .information-container .box-information .body .chart-container .legend-container .legend .box-legend.red {
    background-color: #FF0000;
}
/* prettier-ignore */
.body .information-container .box-information .body .chart-container .legend-container .legend .label-legend {
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.06px;
}
