.op-dashboard-conversions {
    .opd-date-range-input  {
        font-size: 1.3rem;
        background-color: #fff;
        width: 200px;
        border: 1px solid #c6cbd0;
        line-height: 33px;
        color: #97A3B4;
    }

    .opd-date-range-offsets {
        margin: 3px 0 0 0;
        font-size: 1.2rem;
        text-align: center;
        color: #8a96a0;

        a {
            color: inherit;
        }
    }

    .opd-conversions-performance {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);

        h1 {
            color: black;
            font-weight: 700;
            font-size: 5rem;
        }

        p {
            color: gray;
        }

        .opd-conversions-performance-footer {
            line-height: 1;
            font-size: 1.6rem;
            gap: 10px;

            .divider {
                color: #dfdfdf;
            }
        }

        .opd-percentage-change {
            font-size: 1.1rem;
            color: white;
            border-radius: 3px;
            padding: 0px 7px;
            background-color: $color__ops-gray;
            display: flex;
            justify-content: center;
            align-items: center;
            line-height: 1;
            height: 20px;
            margin-left: 10px;

            &.opd-percentage-increase {
                background-color: $color__ops-green;

                &::before {
                    content: '+';
                }
            }

            &.opd-percentage-decrease {
                background-color: $color__ops-red;
            }
        }
    }

    .opd-table-title {
        font-size: 1.4rem;
    }

    canvas {
        height: 400px;
        width: 100%;
    }
}