// *{
// 	font-family: sans-serif;
// 	margin: 0px;
// 	text-align: center;
// 	transition: 0.3 all ease;
// }

.formatContainer {
    margin-top: 20px;
    .format {
        margin: 25px 0 15px 0;
        font-size: 1.4em;
    }
}

.pointer {
    cursor: pointer;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    // background: #1d1d1d;
    border: 1px solid white;
    border-radius: 20%;
    padding: 10px;
    color: #7c7c7c;
    cursor: pointer;
    width: 100%;
    font-size: 20px;

    &:hover {
        color: white;
        background: #bbbaba;
    }
}

.arrowContainer {
    display: flex;
    width: 20px;
    height: 20px;
    margin: 5px;
}

.dayItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.menuItem {
    padding: 0 4px;
    margin: 5px 10px;
    user-select: none;
    cursor: pointer;
    border: none;
    .day {
        color: #94a3b8;
        font-size: 12px;
        font-weight: 400;
        line-height: 26px;
    }
    .number {
        color: #1e293b;
        font-size: 18px;
        font-weight: 600;
        line-height: 26px;
    }
    &.today {
        & .number {
            border-bottom: 2px solid rgb(209, 153, 0);
        }
    }
}

.active {
    border-radius: 20%;
    .number {
        color: #4997de;
    }
    .day {
        color: #4997de;
    }
}

.scroll-menu-arrow {
    padding: 10px;
    cursor: pointer;
}
.dot {
    height: 25px;
    width: 25px;
    background-color: #c7ddfd;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
}
