:root {
    --w1-color1: #e6940e;
    --w1-font1: "Varela Round", sans-serif;
}

/* weekends - saturday */
.w1e1 {
    background: #d3d3d3;
}

/* weekends - sunday */
.w1e2 {
    background: #ffd5d5;
}

/* w1d1 - calendar wrapper */
.w1d1 {
    position: absolute;
    /* top: 0;
    left: 0; */
    display: none;
    border: 2px solid #214b6b;
    padding: 8px;
    width: 250px;
    background: #fff;
    border-radius: 6px;
    z-index: 100;
}

/* Calendar Days */
.w1d3 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

/* Month Navigation */
.w1d2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    background: white;
    align-items: center;
    padding: 5px;
}

/* label */
.w1s1 {
    font-family: var(--w1-font1);
    color: #333;
}

/* Month Control */
.w1bt1 {
    cursor: pointer;
    padding: 4px 8px;
    border: none;
    background-color: #fff;
    color: #fff;
    border-radius: 4px;
}

.w1bt1::after {
    content: "";
    /* width:0;
        height:0;
        border: 10px solid var(--w1-color1);
        border-top-color: transparent;
        border-bottom-color: transparent;
        background: transparent;
        border-left:none; */
    background: url(resources/arrow.svg) no-repeat center center;
    width: 11px;
    height: 21px;
    border: 0;
    display: block;
    filter: invert(25%) sepia(5%) saturate(7355%) hue-rotate(201deg) brightness(91%) contrast(87%);
}

.w1bt1:last-child::after {
    transform: rotate(180deg);
}

/* w1s3 - empty day */
/* w1s4 - calendar day */
.w1s3,
.w1s4 {
    cursor: pointer;
    border: 1px solid #e6dede;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 3px;
    font-family: var(--w1-font1);
    color: #333;
    font-size: 14px;
}

/* w1s5 - selected day */
.w1s5 {
    background-color: #005b84;
    color: #fff;
}

.w1s2 {
    font-family: var(--w1-font1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    color: #333;
    font-size: 14px;
}

.w1-bottom {
    top: 45px;
    left: 0;
}

.w1-top {
    bottom: 45px;
    left: 0;
}