@media (min-width: 0px)
{
    .adv-demo-canvas {
        min-height: 100vh;
        display: flex;
    }

    .node-containers {
        flex: 1 1 10%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        flex-direction: column;
        background-color: #f7f7f7;
        border-left: 1px solid #e0e0e0;
    }

    .node-containers h1 {
        font-size: 20px;
    }

    .node-containers p {
        font-size: 14px;
    }

    .avg-conf-list, .aggregate-conf-list, .aggregate-focus-list {
        display: flex;
        flex-direction: column;
        width: 250px;
        background-color: #FFFFFF;
        border: black solid 1px;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 25px;
    }

    dialog {
        z-index: 10000;
        margin-top: 200px;
        background: #FFFFFF;
        border: black solid 1px;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
        height: 450px;
        width: 800px;
    }

        dialog::backdrop {
            background-color: rgba(0, 0, 0, 0);
        }

        dialog .feedback-list {
            margin-top: 50px;
        }


        dialog .reason {
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }

        dialog .feedback-data {
            display: flex;
            margin-top: 50px;
            margin-bottom: 10px;
        }

        dialog .feedback-conf {
            margin-right: 30px;
            width: 200px;
        }

        dialog .feedback-int {
            width: 150px;
            margin-right: 30px;
        }

        dialog .feedback-focus {
            width: 150px;
        }

        dialog .feedback-reasons {
            display: flex;
            justify-content: space-around;
        }

    .confirm-check {
        color: white;
        font-size: 24px;
        font-weight: bold;
    }

    .feedback-confirm-check {
        color: white;
        font-size: 8px;
        font-weight: bold;
    }

    .watch-list {
        flex: 1 1 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px
    }

    .generic-watch-div h1 {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .generic-watch-img {
        height: 150px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #GenericWatch {
        width: 87px;
        transform: scale(var(--scale-factor));
    }

    .watch-img {
        margin-right: 20px;
        border-right: black solid 1px;
        border-radius: 50%;
    }

    .reason-img {
        height: 30px;
        width: 30px;
    }

    .reason-circle {
        position: relative;
        height: 30px;
        width: 30px;
        margin-right: 10px;
        border: solid 3px black;
        background-color: white;
        border-radius: 50%;
        transform: scale(var(--scale-factor));
    }

    .reason-fill {
        width: 0;
        height: 0;
        background-color: #3498db;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.1s ease-out, height 0.1s ease-out;
    }

    #Fossil {
        height: 150px;
        width: 150px;
    }

    #Casio {
        height: 150px;
        width: 150px;
    }

    #Apple {
        height: 150px;
        width: 150px;
    }

    .watch {
        display: flex;
        border: black solid 1px;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
        margin-top: 60px;
        padding-right: 10px;
    }

        .watch .product-desc .p {
            color: black;
        }

    /*header*/

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        background-color: #3F4345;
    }

    #market-header {
        color: #5EA39D;
        font-size: 10.25px;
        align-self: self-end;
        margin: 0;
    }

    .logo-section {
        flex: 1; /* this ensures that the logo section grows to take up available space */
        display: flex;
        align-items: center;
    }



        .logo-section a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #fff;
        }

        .logo-section img {
            height: 50px;
            margin-right: 4px;
            width: 175px;
        }

    .search-section {
        display: none;
        align-items: center;
        margin-right: 20px; /* added margin for some spacing between search and cart sections */
    }

        .search-section input {
            margin-right: 10px;
        }

    .cart-section {
        display: none;
    }

    .cart-section a {
        text-decoration: none;
        color: #fff;
    }

    .shopping-cart-icon::before {
        content: "\1F6D2"; /* Unicode character for shopping cart */
        font-size: 20px;
        margin-right: 5px;
    }

    /*end header*/

    /*filter sidebar*/

    .sidebar-container {
        width: 250px;
        padding: 20px;
        background-color: #f7f7f7;
        border-right: 1px solid #e0e0e0;
        display: none;
    }

    .filter-header {
        font-weight: bold;
        font-size: 20px;
    }

    .filter-section {
        margin-bottom: 20px;
        border-bottom: black solid 1px;
    }

        .filter-section h2 {
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        .filter-section ul {
            list-style-type: none;
            padding-left: 0;
        }

        .filter-section li {
            margin-bottom: 8px;
        }

        .filter-section label {
            margin-left: 5px;
        }

        .filter-section p {
            margin-top: 10px;
        }

    /*    end filter siderbar*/

    /*loading spinner*/

    .generic-watch-spinner {
        border: 16px solid silver;
        border-top: 16px solid #337AB7;
        border-radius: 50%;
        width: 200px;
        height: 200px;
        animation: spin 700ms linear infinite;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .spinner {
        border: 16px solid silver;
        border-top: 16px solid #337AB7;
        border-radius: 50%;
        width: 200px;
        height: 200px;
        animation: spin 700ms linear infinite;
        position: absolute;
        top: 40%;
        left: 40%;
        transform: translate(-50%, -50%);
    }

        .spinner::backdrop {
            background-color: rgba(0, 0, 0, 0.75);
        }

    @keyframes spin {
        0% {
            transform: rotate(0deg)
        }

        100% {
            transform: rotate(360deg)
        }
    }

    /* end loading spinner*/

    /*start product desc component style*/

    .product-desc {
        display: flex;
    }

    .prod-info {
        margin-right: 10px;
    }

    .prod-detail {
        margin-bottom: 0.25rem;
        font-size: 12px;
    }

    .purch-reason-feedback {
        display: flex;
        flex-direction: column;
        border-left: 1px solid black;
        padding-left: 10px;
    }

        .purch-reason-feedback h3 {
            text-align: center;
        }

    .purch-reas-fb-headers {
        display: flex;
        justify-content: space-around;
    }

        .purch-reas-fb-headers p {
            width: 85px;
            text-align: center;
        }

    .reas-fb-row {
        display: flex;
        justify-content: space-around;
    }

        .reas-fb-row p {
            width: 85px;
            text-align: center;
        }


    .graphs {
        display: flex;
        margin-bottom: 40px;
    }

    /*START STYLE DATA SCIENCE CHARTS*/

    .data-charts {
        display: flex;
    }

        .data-charts h1 {
            text-align: center;
        }

    .data-chart {
        height: 150px;
        width: 300px;
    }

    .selection-data {
        margin-right: 20px;
        border-right: 1px dotted;
    }

    /*END STYLE DATA SCIENCE CHARTS*/
}

@media (min-width: 1600px) {

    .adv-demo-canvas {
        min-height: 100vh;
        display: flex;
    }

    .node-containers {
        flex: 1 1 10%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        flex-direction: column;
        background-color: #f7f7f7;
        border-left: 1px solid #e0e0e0;
    }

    .node-containers h1 {
        font-size: 30px;
    }

    .node-containers p {
        font-size: 16px;
    }

    .avg-conf-list, .aggregate-conf-list, .aggregate-focus-list {
        display: flex;
        flex-direction: column;
        width: 385px;
        background-color: #FFFFFF;
        border: black solid 1px;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
        padding: 10px 20px;
        margin-top: 20px;
        margin-right: 25px;
    }

    dialog {
        z-index: 10000;
        margin-top: 200px;
        background: #FFFFFF;
        border: black solid 1px;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
        height: 450px;
        width: 800px;
    }

        dialog::backdrop {
            background-color: rgba(0, 0, 0, 0);
        }

        dialog .feedback-list {
            margin-top: 50px;
        }

        dialog .feedback-data {
            display: flex;
            margin-top: 50px;
            margin-bottom: 10px;
        }

        dialog .feedback-conf {
            margin-right: 30px;
            width: 200px;
        }

        dialog .feedback-int {
            width: 150px;
            margin-right: 30px;
        }

        dialog .feedback-focus {
            width: 150px;
        }

        dialog .feedback-reasons {
            display: flex;
            justify-content: space-around;
        }

    .confirm-check {
        color: white;
        font-size: 24px;
        font-weight: bold;
    }

    .feedback-confirm-check {
        color: white;
        font-size: 8px;
        font-weight: bold;
    }

    .watch-list {
        flex: 1 1 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px
    }

    .generic-watch-div h1 {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .generic-watch-img {
        height: 150px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #GenericWatch {
        width: 87px;
    }

    .watch-img {
        margin-right: 20px;
        border-right: black solid 1px;
        border-radius: 50%;
    }

    .reason-img {
        height: 30px;
        width: 30px;
    }

    #Fossil {
        height: 150px;
        width: 150px;
    }

    #Casio {
        height: 150px;
        width: 150px;
    }

    #Apple {
        height: 150px;
        width: 150px;
    }

    .watch {
        display: flex;
        border: black solid 1px;
        border-radius: 20px;
        box-shadow: 10px 5px 5px black;
        margin-top: 60px;
        padding-right: 10px;
    }

        .watch .product-desc .p {
            color: black;
        }

    /*header*/

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        background-color: #3F4345;
    }

    #market-header {
        color: #5EA39D;
        font-size: 10.25px;
        align-self: self-end;
        margin: 0;
    }

    .logo-section {
        flex: 1; /* this ensures that the logo section grows to take up available space */
        display: flex;
        align-items: center;
    }



        .logo-section a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #fff;
        }

        .logo-section img {
            height: 50px;
            margin-right: 4px;
            width: 175px;
        }

    .search-section {
        display: flex;
        align-items: center;
        margin-right: 20px; /* added margin for some spacing between search and cart sections */
    }

        .search-section input {
            margin-right: 10px;
        }

    .cart-section {
        display: block;
    }

    .cart-section a {
        text-decoration: none;
        color: #fff;
    }

    .shopping-cart-icon::before {
        content: "\1F6D2"; /* Unicode character for shopping cart */
        font-size: 20px;
        margin-right: 5px;
    }

    /*end header*/

    /*filter sidebar*/

    .sidebar-container {
        width: 250px;
        padding: 20px;
        background-color: #f7f7f7;
        border-right: 1px solid #e0e0e0;
        display: block;
    }

    .filter-header {
        font-weight: bold;
        font-size: 20px;
    }

    .filter-section {
        margin-bottom: 20px;
        border-bottom: black solid 1px;
    }

        .filter-section h2 {
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        .filter-section ul {
            list-style-type: none;
            padding-left: 0;
        }

        .filter-section li {
            margin-bottom: 8px;
        }

        .filter-section label {
            margin-left: 5px;
        }

        .filter-section p {
            margin-top: 10px;
        }

    /*    end filter siderbar*/

    /*loading spinner*/

    .generic-watch-spinner {
        border: 16px solid silver;
        border-top: 16px solid #337AB7;
        border-radius: 50%;
        width: 200px;
        height: 200px;
        animation: spin 700ms linear infinite;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .spinner {
        border: 16px solid silver;
        border-top: 16px solid #337AB7;
        border-radius: 50%;
        width: 200px;
        height: 200px;
        animation: spin 700ms linear infinite;
        position: absolute;
        top: 40%;
        left: 40%;
        transform: translate(-50%, -50%);
    }

        .spinner::backdrop {
            background-color: rgba(0, 0, 0, 0.75);
        }

    @keyframes spin {
        0% {
            transform: rotate(0deg)
        }

        100% {
            transform: rotate(360deg)
        }
    }

    /* end loading spinner*/

    /*start product desc component style*/

    .product-desc {
        display: flex;
    }

    .prod-info {
        margin-right: 10px;
    }

    .prod-detail {
        margin-bottom: 0.25rem;
        display: block;
        font-size: 16px;
    }

    .purch-reason-feedback {
        display: flex;
        flex-direction: column;
        border-left: 1px solid black;
        padding-left: 10px;
    }

        .purch-reason-feedback h3 {
            text-align: center;
        }

    .purch-reas-fb-headers {
        display: flex;
        justify-content: space-around;
    }

        .purch-reas-fb-headers p {
            width: 85px;
            text-align: center;
        }

    .reas-fb-row {
        display: flex;
        justify-content: space-around;
    }

        .reas-fb-row p {
            width: 85px;
            text-align: center;
        }


    .graphs {
        display: flex;
        margin-bottom: 40px;
    }

    /*START STYLE DATA SCIENCE CHARTS*/

    .data-charts {
        display: flex;
    }

        .data-charts h1 {
            text-align: center;
        }

    .data-chart {
        height: 200px;
        width: 400px;
    }

    .selection-data {
        margin-right: 20px;
        border-right: 1px dotted;
    }

    /*END STYLE DATA SCIENCE CHARTS*/

}



