.blueSeparationLine {
    width: 3px;
    height: 53px;
    background-color: #0C8CE9;
    border-radius: 50px;
}

.blueSeparationLineMobile {
    width: 86px;
    height: 0px;
    border: 2px solid #0C8CE9;
    border-radius: 50px;
    display: none;
}

.greySeparationLine {
    width: 3px;
    height: 102px;
    background-color: #D1D1D1;
    border-radius: 50px;
}

.summaryDashboard {
    padding-top: 56px;
}

.summaryDashboardContainer {
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.summaryDashboardContainerLeft {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 560px;
}

.summaryDashboardContainerRight {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.smallWindows {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
}

.summaryIcon {
    display: block;
    width: 69px;
    height: 69px;
}

.summaryIconMobile {
    display: none;
}

.summaryIconMobileWhite {
    display: none;
}

.smallWindowContainer {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 264px;
    width: 100%;
    height: 168px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    --icon-bg: #2A3747;
    --icon-fg: #ffffff;
}

.smallWindowContainer .icon-bg {
    fill: var(--icon-bg);
    transition: fill 0.3s ease;
}

.smallWindowContainer .icon-fg {
    stroke: var(--icon-fg);
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .3s ease;
}

.smallWindowContainer:hover {
    --icon-bg: #ffffff;
    --icon-fg: #2A3747;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    cursor: pointer;
    background-color: #2A3647;
    color: white;
    overflow: visible;
    position: relative;
}

.largeWindowFirstPart {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    justify-content: center;
}

.largeWindowContainer {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    Height: 168px;
    border-radius: 30px;
    display: flex;
    margin-block: 28px;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 61px;
    transition: all 0.3s ease;
    color: #2A3647;
}

.largeWindowContainer:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    cursor: pointer;
    background-color: #2A3647;
    color: white;
}

.xsmallWindowsContainer {
    display: flex;
    flex-direction: row;
    gap: 28px;
    justify-content: center;
}

.xsmallWindows {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 168px;
    width: 100%;
    Height: 168px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #2A3647;
}

.xsmallWindows:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    cursor: pointer;
    background-color: #2A3647;
    color: white;
}

.summaryNumber {
    font-size: 64px;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.todoAndDoneText {
    font-size: 20px;
    font-weight: 400;
    margin-block-start: 0;
    margin-block-end: 0;
}

.urgentText {
    font-size: 16px;
    font-weight: 400;
    margin-block-start: 0;
    margin-block-end: 0;
}

.thirdLineText {
    font-size: 20px;
    font-weight: 400;
    margin-block-start: 0em;
    margin-block-end: 0em;
    text-align: center;
    padding: 0 18px;
}

#calenderDate {
    font-size: 21px;
    font-weight: 700;
}

#calenderDate:hover {
    cursor: pointer;
    color: white;
}

#greetingDayTime {
    font-size: 47px;
    font-weight: 500;
    color: #2A3647;
}

#greetingUserName {
    font-size: 64px;
    font-weight: 700;
    color: #23A3E9;
}

.overlaySummaryGreeting {
    display: none;
}