/* Style the patterns of date range */
.AppPatternsDateRange {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;

    background: rgb(255, 255, 255);
    border: 1px solid rgb(237, 237, 237);
    border-radius: var(--size-07);

    padding: var(--size-07);
}

    .AppPatternsDateRange__Icon {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        margin-right: var(--size-04);
    }

        .AppPatternsDateRange__Icon > img {
            width: 100%;
            height: auto;
            max-width: var(--icon-button-size);

            opacity: 0.7;
            transition: 0.4s;
        }

            .AppPatternsDateRange:hover > .AppPatternsDateRange__Icon > img {
                transition: 0.2s;
                opacity: 1.0;
            }

    .AppPatternsDateRange__Data {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;

        width: 100%;
    }

        .AppPatternsDateRangeData__Date {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            
            width: 100%;

            margin-right: var(--size-07);
        }

            .AppPatternsDateRangeDataDate__Title {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;

                text-align: left;

                width: 100%;

                margin-bottom: calc( var(--size-07) * 1.7 );
            }

            .AppPatternsDateRangeDataDate__Value {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;

                width: 100%;
            }

                .AppPatternsDateRangeDataDate__Value > input {
                    width: 100%;
                    min-width: unset;
                }

        .AppPatternsDateRangeData__Days {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;

            background: rgba(237, 237, 237, 0.1);
            border: 1px solid rgb(237, 237, 237);
            border-radius: var(--size-07);

            padding: var(--size-04);
        }

            .AppPatternsDateRangeDataDays__Value {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;

                width: 100%;
            }

            .AppPatternsDateRangeDataDays__Title {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;

                color: rgb(127, 127, 127);
                text-align: left;

                width: 100%;
            }