/* Moved over from orginal common */
 .pros{
 li{
      padding-left: 21px;
      margin-bottom: 8px;
      &:before{
        display:none;
      }
      span{
        font-size: 22px;
        color: $lightGreen;
        position: absolute;
        left:-4px;
        top:1px;
        width: 17px;
        height: 17px;
      }
    }
}
.cons{
   li{
      padding-left: 21px;
      margin-bottom: 8px;
      &:before{
        display:none;
      }
      span{
        font-size: 22px;
        color: $red;
        position: absolute;
        left:-4px;
        top:1px;
        width: 17px;
        height: 17px;
      }
    }
}
.proscons {
    &>div>div {
        height:100%;
        background-color: $lightBlue;
    }
    .proscons-icon {
        color: $blue3;
        font-size:1.5em;
    }
    h3 {
        position: relative;
    }

    h3:before {
        content: "+";
        left:-7px;
        position: absolute;
        color: $blue3;
        font-size:1.5em;
    }
    .pros-heading:before {
        content: "+";
    }
    .cons-heading:before {
        content: "--";
    }   

}

/*
//compare providers table
.compare-providers-wrap {
  margin: 35px 0 60px;

    .compare-providers-table.minimal-table {
        border:none;

        table {
            width:100%;
        }

        .mobile-table {
            display:none;
        }
        th {
            background: transparent;
            color: $blue2;
            padding: 8px 24px;
        }
        td {
            border-bottom:none;
            font-size: $table-font-size;
            height: auto;
            padding: 14px 24px;

            a {
                font-size: inherit;
                color: $blue3;
            }
        }
        &.comparison-template {
            th {
                p {
                    font-size: 18px;
                }
            }
            td {
                font-size: 16px;
            }
            .cta_btn {
                max-width:270px;
            }
        }    
        tr:nth-child(2n) {
            background-color: $lightGrey;
        }
        @media screen and (min-width: $small-mobile-screen){
            th {
                border-bottom:2px solid $blue2;
            }
        }
        @media screen and (max-width: $small-mobile-screen){
            .mobile-table {
                display:table;
                th{
                    border-bottom:none;
                }
            }
            .desktop-table {
                display:none;
            }
            .top-provider-row {
                border-top:2px solid $blue2;
            }
            td {
                width: 50%;
                text-align:right;
                padding: 10px 15px;
            }
            th {
                padding: 10px 15px;
            }
        }
        .cta_btn {
            color: $white;
        }
    }
}
*/
// Compare Providers Horizontal Scroll block
.compare-providers-table-scroll-container{
    position: relative;

    padding-bottom: 75px;
    h2{
 
        margin-top: 5px;
        //text-decoration: none;
    }
    h5{
        text-transform: uppercase;
        color: $primaryGreen;
       // font-weight: 400;
    }
    .scroll{
        font-size: 30px;
        color: $black;
        position: absolute;
        z-index: 2;
        width: 50px;
        height: 50px;
        padding: 10px;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
        background-color: #ffffff;
        border-radius: 50%;
        top: 47%;
        &:hover{
            color: $blue3;
            cursor: pointer;  
        }
        &.left-scroll{ 
            display: none;
            left: -25px;
        }    
        &.right-scroll{ 
            right: -25px;
        }
    }
    .compare-providers-tables-scroll-container{
        display: flex;
        #compare-providers-table-scroll-main{
            tbody td:not(:last-child){
                border-right: solid 1px #dcdcdc;
            }
            & tr:first-child td{
                padding-top: 0;
                padding-bottom: 0;
                vertical-align: top;
            }
        }
        #compare-providers-table-scroll-fixed{
            z-index: 1;
            -webkit-box-shadow: 7px 0 3px -2px rgba(0, 0, 0, 0.1);
            -moz-box-shadow: 7px 0 3px -2px rgba(0, 0, 0, 0.1);
            box-shadow: 7px 0 3px -2px rgba(0, 0, 0, 0.1);
            font-weight: 700;
        }
        .compare-providers-table-scroll-main-container{
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
        }
        .compare-providers-table-scroll{
            &.table-striped tbody tr:nth-of-type(odd){
                background-color: $white;
            }
            &.table-striped tbody tr:nth-of-type(even){
                background-color: $lightGrey;
            }
            & > tbody tr{
                td {
                    white-space: nowrap;
                    padding: 20px 30px;
                    .provider-logo-wrapper{
                        display: flex;
                        flex-direction: column;
                        height: 100%;
                        padding-bottom: 24px;
                        .provider-best-for{
                            font-size: 14px;
                            line-height: 24px;
                            color: $primaryGreen;
                            margin-bottom: 10px;
                        }
                        .provider-logo{
                            max-width: 150px;
                            max-height: 50px;
                            object-fit: contain;
                        }
                    }
                    .provider-title-link{
                        color: $blue3;
                    }
                    .cta-btn{
                        padding: 11px 21px 11px 22px;
                        border-radius: 10px;
                        color: $white;
                        background-color: $blue;
                        transition: all ease-in-out 0.2s;
                        width:100%;
                        text-align:center;

                        span{
                            color: $white;
                            vertical-align: sub;
                            font-size: 18px !important;
                            padding-right: 5px;
                        }
                        &:hover{
                            background-color: $blueHover;
                        }
                    }
                }
            }
        }
    }
    @media screen and (max-width: $mobile-screen){
        display: none;
    }
}

.compare-providers-blocks-list{
    display: none;
    padding-bottom: 30px;
    @media screen and (max-width: $mobile-screen){
        display: block;
    }
    h2{
     

        margin: 5px 0 25px;
        //text-decoration: none;
    }
    h5{
        text-transform: uppercase;
        color: $primaryGreen;
        //font-weight: 400;
    }
    div, a {
        word-break: break-word;
    }
    .compare-providers-block{
        margin: 20px 0;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
        background-color: #ffffff;
        .provider-logo-wrapper{
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            background: $white;
            padding: 15px 0;
            .provider-best-for{
                font-size: 14px;
                line-height: 24px;
                color: $primaryGreen;
                margin-bottom: 5px;
            }
            .provider-logo{
                max-width: 200px;
                max-height: 50px;
            }
        }
        .provider-data-container{
            display: flex;
            &:nth-of-type(even){
                background-color: $lightGrey;
            }
            &:nth-of-type(odd){
                background-color: $white;
            }
            .data-title-container,
            .data-value-container{
                display: flex;
                align-items: center;
                text-align: left;
                line-height: 1.5;
                padding: 20px 15px;
            }
            .data-title-container{
                font-weight: bold;
                width: 68%;
                padding-right: 30px;
                .provider-title-link{
                    color: $blue3;
                }
            }
            .data-value-container{
                padding-left: 0;
                width: 32%;
            }
        }
        .cta-btn-container{
            .cta-btn{
                padding: 11px 21px 11px 22px;
                margin: 20px auto;
                border-radius: 10px;
                color: $white;
                background-color: $blue;
                transition: all ease-in-out 0.2s;
                span{
                    color: $white;
                    vertical-align: sub;
                    font-size: 18px !important;
                    padding-right: 5px;
                }
                &:active{
                    background-color: $blueHover;
                }
            }
        }
    }
    &.mobile {
        .figcaption-source {
            margin-top:-10px;
        }
    }
}


// Types of {Service} Technology Block
.technology-types-container{
    background-color: $lightGrey;
    padding: 50px 180px;
    text-align: center;
    .technology-types-description-container{
        color: $black;
        padding-bottom: 50px;
        @media screen and (max-width: $mobile-screen){
            padding-bottom: 25px;
        }
    }
    .technology-types-tiles-container{
        display: flex;
        justify-content: center;
        .tile-container{
            width: 255px;
            height: 218px;
            margin: 0 8px;
            padding-top: 25px;
            border-radius: 10px;
            box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
            background-color: #ffffff;
            &:hover{
                box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.3);
            }
            .tile-icon-container{
                margin-bottom: 15px;
                & > img{
                    max-width: 130px;
                    max-height: 130px;
                }
            }
            .tile-label-container{
                font-size: 18px;
                font-weight: bold;
                line-height: 1.33;
                color: $black;
            }
            @media screen and (max-width: $tablet-screen){
                margin: 10px 8px;
            }
            @media screen and (max-width: $mobile-screen){
                margin: 10px 0;
            }
        }
        @media screen and (max-width: $tablet-screen){
            flex-wrap: wrap;
        }
        
        @media screen and (max-width: $mobile-screen){
            flex-direction: column;
            align-items: center;
        }
    }
    @media screen and (max-width: $mobile-screen){
        padding: 25px 0 50px;
    }
}

// Flexible Content
.flexible-content-container{
    padding: 10px 0 75px;
    padding-top: 10px;
    width: 100%;
    @media screen and (max-width: $small-tablet-screen){
        padding: 10px 0 25px;
    }
    h3{
        font-weight: bold;
        color: $black;
        margin-bottom: 15px;
    }

    .flexible-content-blocks-container{
        padding-top: 22px;
        display: grid;
        grid-template-areas: 
            "feature secondary-top"
            "feature secondary-middle"
            "feature secondary-bottom";
        row-gap: 20px;
        column-gap: 20px;
        grid-template-columns: 1fr 1fr;
        @media screen and (max-width: $mobile-screen){
            grid-template-areas: 
                "feature"
                "secondary-top"
                "secondary-middle"
                "secondary-bottom";
            grid-template-columns: 1fr;
        }
        .flexible-content-block-container{
            box-shadow: $primaryBoxShadow4;
            background-color: $white;
            border-radius: 20px;
            text-align: left;
            overflow: hidden;
            .flexible-content-block-link{
                width:100%;
                display:block;
                height: 100%;
            }
            .content-container{
                display: flex;
                align-items: center;
                height: 100%;
                .content-image-container{
                    width: 248px;
                    height: 164px;
                    overflow: hidden;
                    text-align: center;
                    @media screen and (max-width: $tablet-screen){
                        width: 168px;
                        height: 144px;
                        
                    }
                    @media screen and (max-width: $small-tablet-screen){
                        display: none;
                    }
                    .content-image{
                        width:100%;
                        height:100%;
                        object-fit:cover;
                    }
                }
                .content-text-container{
                    padding:15px;
                    width: calc(100% - 248px);
                    @media screen and (max-width: $tablet-screen){
                        width: calc(100% - 168px);
                    }
                    @media screen and (max-width: $small-tablet-screen){
                        width: 100%;
                        padding:18px;
                    }
                    .content-tag-container{
                        .content-tag{
                            font-size: 14px;
                            font-weight: 600;
                            color: $blue3;
                            text-transform: uppercase;
                            letter-spacing: 1px;
                            display: inline-block;
                            background: $white;
                            box-shadow: $primaryBoxShadow5;
                            border-radius: 6px;
                            padding: 4px 7px 0px;
                            margin-bottom:13px;
                        }
                    }
                    .content-title{
                        line-height: 1.33;
                        margin-bottom: 8px;
                        font-size: $h5-font-size;
                        &.desktop{
                            display: block;
                        }
                        &.mobile{
                            display: none;
                        }
                    }
                    .content-byline-container{
                        .content-byline{
                            font-size: 14px;
                            color: $grey2;
                        }
                    }
                }
            }
            &.content-block-0{
                grid-area: feature;
                
                .content-container{
                    flex-direction: column;
                    align-items: flex-start;
                    .content-image-container{
                        height: 334px;
                        width:100%;
                        overflow: hidden;
                        .content-image{
                            height:100%;
                        }
                        @media screen and (max-width: $small-tablet-screen){
                            display: block;
                            height: 234px;
                        }
                    }
                    .content-text-container{
                        width: 100%;
                        padding-top: 30px;
                        .content-title{
                            font-size: $h3-font-size;
                        }
                    }
                }
            }
            &.content-block-1{
                grid-area: secondary-top;
            }
            &.content-block-2{
                grid-area: secondary-middle;
            }
            &.content-block-3{
                grid-area: secondary-bottom;
            }
        }
    }
}


//Commercial Providers Block
.commercial-provider-block {
    margin-bottom: 4rem;
    .provider-heading {
        margin-bottom: 4rem;
        @media screen and (min-width: 640px) {
            display: flex;
        }
        .content {
            @media screen and (min-width: 640px) {
                width: 50%;
                padding-right: 3rem;
            }
            @media screen and (min-width: 1024px) {
                display: flex;
                align-items: center;
            }
            @media screen and (min-width: 1280px) {
                padding-right: 5rem;
            }
        }
        .image {
            position: relative;
            @media screen and (min-width: 640px) {
                width: 50%;
            }
            @media screen and (min-width: 1024px) {
                min-height: 20rem;
            }
            img {
                width: 100%;
                height: 100%;
                position: absolute;
                object-fit: cover;
                object-position: center;
                border-radius: 5px;
                box-shadow: 0px 7.99647px 23.9894px rgba(0, 0, 0, 0.2);
            }
        }
    }
    .img-left {
        .image {
            order: 0;
        }
        .content {
            order: 1;
            @media screen and (min-width: 640px) {
                padding-left: 3rem;
                padding-right: 0;
            }
            @media screen and (min-width: 1280px) {
                padding-left: 5rem;
                padding-right: 0;
            }
        }
    }
    .img-right {
        .image {
            order: 1;
        }
        .content {
            order: 0;
            @media screen and (min-width: 640px) {
                padding-right: 3rem;
            }
            @media screen and (min-width: 1280px) {
                padding-right: 5rem;
            }
        }
    }
    h3 {
       // font-size: 24px;
       // text-decoration: none;
       // font-weight: bold;
        margin-bottom: 0.5rem;
    /*    @media screen and (min-width: 640px) {
            font-size: 36px !important;
        }*/
    }
    .featured-container {
        @media screen and (min-width: 640px) {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }
        @media screen and (min-width: 1024px) {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 2rem;
        }
        .feature-container {
            display: flex;
            margin-bottom: 1rem;
            @media screen and (min-width: 1024px) {
                flex-direction: column;
            }
        }
        .icon-container {
            margin-right: 1.5rem;
            @media screen and (min-width: 1024px) {
                flex-grow: 0;
                margin-bottom: 2rem;
            }
            > div {
                display: inline-block;
                background-color: #F8F8F8;
                padding: 1rem;
                border-radius: 20px;
            }
            img {
                height: 2.25rem;
                width: 2.25rem;
                object-fit: contain;
                filter: url(#colorFilter);
            }
        }
 /*        .content {
           h4 {
                font-size: 20px;
                font-weight: bold;
                margin-bottom: 0.5rem;
            }
        }*/
    }
}

.toc-sidebar .commercial-provider-block {
    .featured-container {
        .icon-container {
            img {
                max-width: none;
            }
        }
    }
    .provider-heading {
        h3 {
          //  font-size: 24px;
          //  text-decoration: none;
          //  font-weight: bold;
            margin-bottom: 1rem;
         /*   @media screen and (min-width: 640px) {
                font-size: 36px !important;
            }*/
        }
    }
    .featured-container {
        @media screen and (min-width: 1024px) {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }
        .feature-container {
            @media screen and (min-width: 1024px) {
                flex-direction: row;
            }
        }
    }
    .img-left {
        .content {
            @media screen and (min-width: 1280px) {
                padding-left: 3rem;
                padding-right: 0;
            }
        }
    }
    .img-right {
        .content {
            @media screen and (min-width: 1280px) {
                padding-right: 3rem;
            }
        }
    }
}

.well-consider-block {
    margin-bottom: 4rem;
    .well-container {
        border: 1px solid $primaryGreen;
        border-radius: 5px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.246013);
        padding: 22px;
        max-width: 860px;
        margin: 0 auto;
        @media screen and (min-width: 640px) {
            display: flex;
            & > * + * {
                margin-left: 2rem;
            }
        }
    }
    h3 {
       // font-size: 18px;
       // text-decoration: none;
       // font-weight: bold;
        margin-bottom: 0.5rem;
    }
    .like-item {
        display: flex;
        .icon-container {
            flex-shrink: 0;
            margin-right: 0.5rem;
            width: 1.5rem;
            height: 1.5rem;
        }
    }
    .likes-container, .dislikes-container {
        @media screen and (min-width: 640px) {
            width: 50%;
        }
    }
    .likes-container {
        margin-bottom: 1rem;
    }    
    .likes-container .like-item:last-of-type p, .dislikes-container .like-item:last-of-type p{
        margin-bottom: 0;
    }
}

.blue-deals-block {
    .deal-container {
        //border: 1px solid #0791ED;
        box-shadow: $shadow-base;
        border-radius: 20px;
        margin-bottom: 4rem;
        position: relative;
    }
    .blue-content {
        padding: 40px 24px;
        background-color: $hsoBlue-bkg;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        @media screen and (min-width: 768px) {
            padding: 64px 80px;
            //padding-bottom: 12px;
        }
        .logo-container {
            img {
                height: 70px;
                width: auto;
                object-fit: contain;
                margin-bottom: 1.5rem;
            }
        }
        h3 {
           // line-height: 30px;
            margin-bottom: 1.5rem;
            width: 75%;
            @media screen and (min-width: 768px) {
                margin-bottom: 2rem;
            }
           // font-size: 24px !important;
           // font-weight: bold;
        }
        a, a span {
            color: $blue3;
        }
        p {
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .white-content {
        padding: 40px 24px;
        @media screen and (min-width: 768px) {
            padding: 64px 80px;
            //padding-top: 12px;
        }
        a, a span {
            color: $blue3;
        }
        p {
            &:last-child {
                margin-bottom: 0;
            }
        }
    }
    .cta-container {
        padding: 0 24px 40px 24px;
        margin-top: -10px;
        @media screen and (min-width: 768px) {
            padding: 0px 80px 64px 80px;
            margin-top: -20px;
        }
        .cta_btn {
            padding: 12px 32px;
            font-weight: bold;
            //max-width: 275px;
            color: white;
            span {
                color: white;
            }
        }
    }
    .title-container {
        position: absolute;
        top: 0;
        left: 0;
        background-color: $blue3;
        color: white;
        font-weight: bold;
        font-size: 14px;
        padding: 0.25rem 0.75rem;
    }
    &.has-title {
        .deal-container {
            border: 1px solid $blue3;
            border-top-left-radius: 0;
        }
    }
}

.toc-sidebar .blue-deals-block {
    .blue-content {
        h3 {
            line-height: 30px;
            margin-bottom: 1rem;
            font-size: 24px !important;
        }
    }
}

.our-thoughts-block {
    margin-bottom: 4rem;
    .blue-container {
        background-color: $hsoBlue-bkg;
        h4 {
           // line-height: 24px;
           // font-size: 20px;
            margin-bottom: 0.5rem;
           // font-weight: bold;
        }
        .body-container {
            p:last-of-type {
                margin-bottom: 0;
            }
        }
    }
    .logo-container {
        margin-bottom: 1rem;
        img {
            width: 100%;
            height: auto;
            max-width: 200px;
            margin-bottom: 1.5rem;
            @media screen and (min-width: 640px) {
                max-height: 60px;
            }
        }
    }
    .cta-container {
        display: flex;
        justify-content: center;
        width: 100%;
        .cta_btn {
            width: 100%;
            max-width: 250px;
            color: white;
            span {
                color: white;
            }
        }
    }
    .provider-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 2.5rem;
        @media screen and (min-width: 640px) {
            padding-top: 0;
            margin-left: 2rem;
        }
        @media screen and (min-width: 1024px) {
            padding-top: 0;
        }
    }
    .disclaim-container {
        margin-top: 2rem;
        p, i, span {
            font-size: 12px;
            line-height: 16px;
        }
    }
    .thoughts-container {
        @media screen and (min-width: 640px) {
            display: flex;
        }
    }
    .lottie-container {
        display: none;
        position: relative;
        margin-right: 1.5rem;
        flex-shrink: 0;
        width: 5rem;
        height: 5rem;
        @media screen and (min-width: 1024px) {
            display: block;
        }
        .lottie {
            position: absolute;
            object-fit: contain;
            object-position: center;
            width: 100%;
            height: 100%;
        }
    }
}
.lottie-container .lottie img {
     width: 100%;
    height: auto;
}
.toc-sidebar .our-thoughts-block {
    .lottie-container {
        @media screen and (min-width: 1024px) {
            display: none;
        }
    }
    .provider-info {
        @media screen and (min-width: 1024px) {
            width: 40%;
            padding-top: 0;
        }
    }
    .blue-container {
        @media screen and (min-width: 1024px) {
            width: 60%;
        }
    }
    .cta-container {
        .cta_btn {
            width: 100%;
            max-width: 200px;
        }
    }
}


.satellite-info-block {
    margin-bottom: 4rem;
    @media screen and (min-width: 1024px) {
        margin: 4rem 0 6rem 0;
    }
    .image {
        @media screen and (min-width: 640px) {
            float: right;
            width: 50%;
            padding-left: 2rem;
        }
        @media screen and (min-width: 1024px) {
            padding-left: 4rem;
            float: none;
            order: 1;
        }
        @media screen and (min-width: 1280px) {
           padding-left: 5rem;
        }
        img {
            width: 100%;
            height: auto;
        }
    }
    h3 {
      //  font-size: 24px;
       // font-weight: bold;
        margin-bottom: 0.75rem;
    }
    .content-container {
        @media screen and (min-width: 1024px) {
            display: flex;
        }
        .content {
            @media screen and (min-width: 1024px) {
                width: 50%;
                order: 0;
            }
        }
    }
}

.toc-sidebar .satellite-info-block {
    @media screen and (min-width: 1024px) {
        margin: 3rem 0 3rem 0;
    }
    .content-container {
        h3 {
           // font-size: 24px !important;
            //font-weight: bold;
            margin-bottom: 0.75rem;
        }
    }
}

.our-picks-block {
    margin-bottom: 4rem;
    table {
        table-layout: fixed;
        width: 100%;

        tbody tr:nth-of-type(odd) {
            background-color: transparent;
        }
        tbody tr:nth-of-type(even) {
            background-color: #F5F5F5;
        }
        tbody tr:last-of-type {
            background-color: transparent;
        }
        td:not(:first-child) {
            text-align: center;
            padding: 1.5rem 1rem;    
        }
        td {
            padding: 0 1rem;
        }
        
    }
    .provider-logo-wrapper {
        .provider-logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .provider-logo-link {
            display: inline-block;
        }
        .provider-logo {
            object-fit: contain;
            max-width: 150px;
            max-height: 50px;
        }
    }
    .tbl-column {
        font-size: 18px;
        font-weight: bold;  
        color: #474747;
    }
    .cta-btn {
        display:  flex;
        align-items: center;
        background-color: $blue3;
        color: white;
        border-radius: 10px;
        box-shadow: 0px 1.99912px 3.99824px rgba(0, 0, 0, 0.5);
        justify-content: center;
        padding: 0.75rem 1rem;
        transition: all;
        transition-duration: 0.2s;
        max-width: 230px;
        margin: 0 auto;
        .material-icons {
            color: white;
            margin-right: 0.5rem;    
        }
        &:hover {
            opacity: 0.8;    
        }
        &.zip-popup-btn {
            font-size: 16px;
            @media screen and (min-width: 1024px) {
                font-size: 15px;
                padding: 0.75rem 0.5rem;
            }    
        }
    }
    .providers-2 {
        td {
            width: calc(100%/3);    
        }
    }
    .providers-3 {
        td {
            width: 25%;    
        }
    }
    .providers-4 {
        td {
            width: 20%;    
        }
    }
    .providers-5 {
        td {
            width: calc(100%/6);    
        }
        .cta-btn {
            .material-icons {
                display: none;    
            }    
        }
    }
    .disclaim-container {
        p, i, span {
            font-size: 12px;
            line-height: 16px;
        }
    }
    .desktop-table {
        display: none;
        @media screen and (min-width: 1024px) {
            display: block;
        }
        &.providers-5 {
            .cta-btn {
                padding: 0.75rem 0.75rem;
                max-width: 140px;
                margin: 0 auto;
                font-size: 15px;
                &.zip-popup-btn {
                    font-size: 14px;
                    padding: 0.75rem 0.25rem;
                }
            }
        }
        &.providers-4 {
            .cta-btn {
                margin: 0 auto;
            }
        }
        tr:last-of-type {
            td {
                vertical-align:top;
            }
        }
    }
    .mobile-table {
        @media screen and (min-width: 768px) {
            display: none;
        }
        .btn-container {
            text-align: right;
            max-width: 225px;
            margin: 0 0 0 auto;
            padding-top: 1.5rem;

        }
        td {
            width: 50%;
        }
        table {
            margin-bottom: 2rem;    
        }
    }
    .tablet-table {
        display: none;
        @media screen and (min-width: 768px) {
            display: block;
        }
        @media screen and (min-width: 1024px) {
            display: none;
        }
        table {
            margin-bottom: 1.25rem;   
        }
        &.providers-5 {
            .table-1 {
                td {
                    width: 25%;    
                }
            }
            .cta-btn {
                padding: 0.75rem 0.75rem;
                max-width: 140px;
                margin: 0 auto;
                &.zip-popup-btn {
                    font-size: 14px;
                }
            }
        }
        &.providers-3 {
            .cta-btn {
                padding: 0.75rem 0.75rem;
                margin: 0 auto;
                    .material-icons {
                        display: none;
                    }
            }
        }
    }      
}

.toc-sidebar .our-picks-block {
    .cta-btn {
        color: white;
        &.zip-popup-btn {
            font-size: 16px;
            @media screen and (min-width: 1024px) {
                font-size: 15px;
                padding: 0.75rem 0.5rem;
            }    
        }
    }
    .desktop-table {
        .cta-btn {
            margin: 0 auto;
            .material-icons {
                display: none;
            }
        }
        &.providers-5, &.providers-3 {
            @media screen and (min-width: 1024px) {
                display: none;
            }
        }
    }
    .tablet-table {
        &.providers-5, &.providers-3 {
            @media screen and (min-width: 1024px) {
                display: block;
            }
        }
        .tbl-column {
            font-size: 15px;
            @media screen and (min-width: 1280px) {
                font-size: 18px;
            }
        }
        .cta-btn {
            font-size: 13px;
            @media screen and (min-width: 1280px) {
                font-size: 15px;
            }
        }
        .provider-logo {
            max-width: 125px;
            @media screen and (min-width: 1280px) {
                max-width: 150px;
            }
        }
    }
}

.icon-callout-block {
    margin-bottom: 4rem;
    .lottie-container {
        margin-top: 1.75rem;
        position: absolute;
        flex-shrink: 0;
        width: 3rem;
        height: 3rem;
        top: 0;
        left: -3rem;
        .lottie {
            position: absolute;
            object-fit: contain;
            object-position: center;
            width: 100%;
            height: 100%;
        }
        
        @media screen and (max-width: $tablet-screen){
             display: none;   
        }
    }
    .content-container {
        position: relative;
        background-color: $lightBlue;
        margin-right: -22px;
        margin-left: 3rem;
        padding: 22px;
        h3 {
           // font-weight: bold;
           // font-size: 24px;
            margin-bottom: 1rem;
        }
        p {
            margin-bottom: 0;
        }
        
          @media screen and (max-width: $tablet-screen){
            margin-right: auto;
            margin-left: auto;
        }
    }
}

@media screen and (min-width:640px) {
    .icon-callout-block {
        .content-container {
            margin-right: 0;
            padding: 2rem 3rem 2rem 6rem;
        }
        .lottie-container {
            width: 80px;
            height: 80px;
            margin-left: 1rem;
            margin-top: 1.5rem;
        }
    }
}

@media screen and (min-width:768px) {
    .icon-callout-block {
        .content-container {
            margin-right: 0;
            padding: 2rem 4rem 2rem 6rem;
        }
        .lottie-container {
            margin-top: 2rem;
        }
    }
}

@media screen and (min-width:1024px) {
    .icon-callout-block {
        .content-container {
            margin-right: 0;
            margin-left: 0;
            max-width: 860px;
            margin: 0 auto;
            padding: 2rem 6rem;
        }
    }
}

.blue-overview-block {
    background: $lightBlue;
    padding-bottom: 40px;
    @media screen and (min-width:1024px) {
        padding-bottom: 60px;
    }
    @media screen and (min-width:1280px) {
        background: none;
        padding-top: 40px;
    }
    .blue-container {
        @media screen and (min-width:1280px) {
            max-width: 1240px;
            margin: 0 auto;
            background: $lightBlue2;
            border-radius: 20px;
            padding-bottom: 70px;
        }
        .container {
            @media screen and (min-width:640px) {
                max-width: 512px;
                margin: 0 auto;
                padding-left: 0;
                padding-right: 0;
            }
        }
        .top-container {
            padding: 40px 22px;
            text-align: center;
            @media screen and (min-width:640px) {
                padding-left: 0;
                padding-right: 0;
            }
            @media screen and (min-width:1024px) {
                max-width: 700px;
            }
            @media screen and (min-width:1280px) {
                padding-top: 60px;
            }
            h2 {
                margin-bottom: 24px;
            }
            .descrip-container {
                color: black;
                p:last-child {
                    margin-bottom: 0;
                }
            }
        }
        .white-container {
            background: white;
            padding: 40px 22px 40px 22px;
            @media screen and (min-width:640px) {
                background: none;
                padding: 0;
            }
            @media screen and (min-width:1024px) {
                max-width: 864px;
                display: flex;
                background: white;
                border-radius: 20px;
                padding: 40px;
            }
        }
        .pro-container, .con-container {
            @media screen and (min-width:640px) {
                background: white;
                padding: 40px 60px;
                border-radius: 20px;
            }
            @media screen and (min-width:640px) {
                padding: 40px 80px;
            }
            @media screen and (min-width:1024px) {
                width: 50%;
                padding: 0;
            }
            .like-item {
                display: flex;
                margin-bottom: 16px;
                .icon-container {
                    margin-right: 12px;
                    margin-top: 6px;
                    flex-shrink: 0;
                    img {
                        height: 24px;
                        width: 24px;
                    }
                }
                &:last-of-type {
                    margin-bottom: 0;
                }
            }
            .like-content {
                p {
                    line-height: 36px;
                    font-size: 17px;
                }
                p:last-child {
                    margin-bottom: 0;
                }
            }
        }
        .pro-container {
            margin-bottom: 40px;
            @media screen and (min-width:640px) {
                margin-bottom: 16px;
            }
            @media screen and (min-width:1024px) {
                margin-right: 20px;
            }
        }
        .con-container {
            @media screen and (min-width:1024px) {
                margin-left: 20px;
            }
        }
    }
    .disclaim-container {
        @media screen and (min-width:640px) {
            max-width: 512px;
            margin: 0 auto;
            padding-left: 0;
            padding-right: 0;
        }
        @media screen and (min-width:1024px) {
            max-width: 864px;
        }
        @media screen and (min-width:1200px) {
            max-width: 1080px;
            padding: 0 15px;
        }
    }
    .disclaimer-text {
		font-size: 12px;
		line-height: 16px;
		margin-top: 2rem;
		p:last-child {
			margin-bottom: 0;
		}
	}
    
}



.service-summary-block {
    padding: 80px 0 40px 0;
    overflow: hidden;
    @media screen and (min-width: 1024px) {
        padding-bottom: 100px;
    }
    .header {
        @media screen and (min-width: 1024px) {
            display: flex;
        }
        .title-container {
            @media screen and (min-width: 1024px) {
                width: 50%;
                padding-bottom: 20px;
            }
            .pretitle {
                color: $blue3;
                margin-bottom: 10px;
            }
            .descrip {
                p:last-child {
                    margin-bottom: 0;
                }
            }
            h2 {
                max-width: 250px;
                @media screen and (min-width: 640px) {
                    max-width: 400px;
                }
            }
        }
    }
    .tiles-container {
        padding-top: 40px;
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
        max-width: 250px;
        margin: 0 auto;
        @media screen and (min-width: 640px) {
            max-width: none;
        }
        @media screen and (min-width: 1024px) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        @media screen and (min-width: 1200px) {
            padding-top: 60px;
        }
        .tile-item {
            padding: 40px;
            display: block;
            background: $hsoBlue-bkg;
            border-radius: 20px;
            @media screen and (min-width: 640px) {
                display: flex;
                padding: 30px;
            }
            img {
                height: 40px;
                width: 40px;
                object-fit: contain;
                margin-bottom: 16px;
                filter: url(#colorFilter);
            }
            h4 {
                // display: inline-flex;
                // align-items: center;
                // flex-wrap: wrap;
                margin-bottom: 10px;
                svg {
                    display: inline-block;
                    height: 26px;
                    width: 26px;
                    margin-bottom: 2px;
                }
            }
            .img-container {
                flex-shrink: 0;
                @media screen and (min-width: 640px) {
                    margin-right: 20px;
                }
            }
            .descrip {
                p:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
    .container {
        @media screen and (min-width: 640px) {
            max-width: 512px;
            margin: 0 auto;
            padding: 0;
        }
        @media screen and (min-width: 1024px) {
            max-width: 960px;
            padding: 0 15px;
        }
        @media screen and (min-width: 1200px) {
            max-width: 1080px;
        }
    }
    .logo-container {
        display: none;
        @media screen and (min-width: 1024px) {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50%;
            position: relative;
            margin-left: 40px;
        }
        @media screen and (min-width: 1200px) {
            padding: 40px 0;
        }
        img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }
        .logo {
            padding: 35px 90px;
            box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            position: relative;
            z-index: 10;
            background: white;
        }
        .dots-container {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 2000px;
            z-index: 0;
            margin-left: 175px;
        }
    }
    &.tiles-1 {
        @media screen and (min-width: 1024px) {
            .container {
                display: flex;
            }
            .header {
                width: 50%;
                padding-right: 40px;
                .logo-container {
                    display: none;
                }
                .title-container {
                    width: 100%;
                    padding-bottom: 0;
                }
            }
            .tiles-container {
                width: 50%;
                margin-left: 16px;
                display: flex;
                align-items: center;
                padding-top: 30px;
            }
        }
    }
}


.home-hero-block {
    .zip-search-container {
        background-color: $hsoBlue-lighter;
        box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 10;
        @media screen and (min-width:1200px) {
            background-color: transparent;
            box-shadow: none;
        }
    }
    .container {
        padding: 24px 22px;
        position: relative;
        @media screen and (min-width:768px) {
            padding: 48px 22px;
        }
        @media screen and (min-width:1024px) {
            padding: 48px 0;
        }
        @media screen and (min-width:1200px) {
            padding: 0;
            padding-top: 32px;
        }
        .dots {
            display: none;
            @media screen and (min-width:1200px) {
                display: block;
                position: absolute;
                z-index: 5;
            }
            &.dots-left {
                left: 0;
                bottom: 0;
                margin-left: -42px;
                margin-bottom: 72px;
            }
            &.dots-right {
                right: 0;
                top: 0;
                margin-right: -42px;
                margin-top: 72px;
            }
        }
    }
    .bg-container {
        @media screen and (min-width:1200px) {
            background-color: $hsoBlue-lighter;
            box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
            position: relative;
            border-radius: 20px;
            padding: 36px 90px;
            z-index: 10;
        }
    }
    .md-container {
        display: none;
        @media screen and (min-width:768px) {
            display: block;
        }
        h1, span {
            @media screen and (min-width:768px) {
                font-size: 48px;
                line-height: 64px;
                margin-bottom: 24px;
            }
            @media screen and (min-width:1024px) {
                max-width: 550px;
            }
        }
        h1 span{
            color: $primaryGreenTemp;

        }
    }
    .hero-image {
        display: none;
        @media screen and (min-width:768px) {
            position: absolute;
            display: block;
            right: 0;
            bottom: 0;
            height: 325px;
            width: auto;
            margin-right: 35px;
            z-index: 5;
        }
        @media screen and (min-width:1024px) {
            height: 450px;
        }
        @media screen and (min-width:1200px) {
            height: 485px;
        }
    }
    .zipcode {
        background: white;
        border-radius: 20px;
        border: 1px solid #D9D9D9;
        overflow: hidden;
        padding: 24px 16px;
        position: relative;
        z-index: 10;
        @media screen and (min-width:1024px) {
            padding: 32px;
        }
        &.inner {
            @media screen and (min-width:768px) {
                max-width: 425px;
                margin: 0 auto 40px 0;
            }
            h1 {
                font-size: 24px;
                line-height: 30px;
                margin-bottom: 24px;
                span {
                    font-size: 24px;
                }
                @media screen and (min-width:768px) {
                    display: none;
                }
            }
            h3 {
                color: #2F2F2F;
                text-align: left;
                font-size: 18px;
                @media screen and (min-width:768px) {
                    font-weight: bold;
                    margin-bottom: 24px;
                }
            }
            .search_wrap {
                padding: 0;
                align-items: center;
                .input-container {
                    display: flex;
                    margin-bottom: 24px;
                    button {
                        width: auto;
                        margin-bottom: 0;
                        font-size: 18px;
                        align-self: stretch;
                        padding: 0 14px;
                         min-width: 84px;
                        @media screen and (min-width:1200px) {
                            padding: 0 20px;
                            min-width: 96px;
                        }
                    }
                    .zip_search_input {
                        font-size: 18px;
                        background: #F5F5F5;
                        border: 1px solid #b4b4b4;
                        color: #747474;
                        margin-bottom: 0;
                        border-left: 0;
                        border-radius: 0 !important;
                        &::placeholder {
                            color: #747474;
                        }
                        @media screen and (min-width:1200px) {
                            padding: 15px 10px;
                        }
                        @media screen and (max-width:$small-mobile-screen) {
                            font-size: 17px;
                        }
                    }
                    .icon-container {
                        align-items: center;
                        align-self: stretch;
                        border: 1px solid #b4b4b4;
                        background: #F5F5F5;
                        border-bottom-left-radius: 5px;
                        border-right: none;
                        border-top-left-radius: 5px;
                        display: flex;
                        padding-left: 0.5rem;
                        span {
                            color: #5C5C5C;
                        }
                    }
                }
                .check-list {
                    display: flex;
                   //  display: none;    
                    input[type=radio]:checked + label, input[type=radio]:not(:checked) + label {
                        font-size: 15px !important;
                        line-height: 32px;
                        padding-left: 40px;
                        margin-right: 15px;
                        @media screen and (min-width:768px) {
                            margin-right: 24px;
                            font-size: 16px !important;
                        }
                    }
                    input[type=radio]:checked + label:before, input[type=radio]:not(:checked) + label:before  {
                        border: 1px solid #B4B4B4;
                        width: 32px;
                        height: 32px;
                    }
                    input[type=radio]:checked + label:after {
                        width: 24px;
                        height: 24px;
                        top: 4px;
                        left: 4px;
                    }
                }
            }
        }
    }
    .featured-container {
        background-color: $blue5;
        position: relative;
        z-index: 0;
        padding: 16px 0;
        @media screen and (min-width:768px) {
            padding: 0;
        }
        @media screen and (min-width:1200px) {
            margin-top: -44px;
        }
        .container {
            @media screen and (min-width:768px) {
                padding: 32px 22px;
            }
            @media screen and (min-width:1024px) {
                padding: 32px 0;
            }
            @media screen and (min-width:1200px) {
                padding: 72px 0px 32px 0;
            }
        }
        .item-container {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 24px;
            @media screen and (min-width:768px) {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 12px;
            }
            @media screen and (min-width:1200px) {
                gap: 18px;
            }
        }
        .featured-item {
            background: white;
            padding: 24px;
            border-radius: 20px;
            box-shadow: 0px 10px 30px rgba(143, 143, 143, 0.1);
            text-align: center;
            @media screen and (min-width:1024px) {
                padding-top: 40px;
            }
            h3 {
                font-weight: bold;
                font-size: 20px;
            }
            img {
                height: 80px;
                width: 120px;
                object-fit: contain;
                display: none;
                margin: 0 auto;
                margin-bottom: 24px;
                @media screen and (min-width:768px) {
                    display: block;
                }
            }
        }
    }
    // For Comparison Aggregate Page
   &.comparison-aggregate-hero{
    position: relative;
    padding-bottom: 56px;
    @media screen and (max-width: $tablet-screen) {
        background: $lightBlue;
        padding-bottom:10px;
    }
    @media screen and (max-width: $mobile-screen) {
        background: $lightBlue;
        padding-bottom:24px;
    }
        .bg-container{
            box-shadow: $primaryBoxShadow6;
            @media screen and (max-width: $tablet-screen) {
                box-shadow: none;
            }
            h1{
                @media screen and (min-width: 768px){
                    font-size: 42px;
                }
            }
            .comparison-providers-box{
                max-width: 688px;
                margin: 0 auto;
                background: $white;
                box-shadow: $primaryBoxShadow7;
                border-radius: 20px;
                padding: 32px 55px;
                @media screen and (max-width: $mobile-screen) {
                    padding: 32px 25px;
                    max-width: 100%;
                }
                @media screen and (max-width: $small-mobile-screen) {
                    flex-direction: column;
                    align-items: center;
                }
                .comparison-providers-box-inner{
                    position: relative;
                    width: calc(100% - 168px);
                    @media screen and (max-width: $mobile-screen) {
                        width: calc(100% - 160px);
                    }
                    @media screen and (max-width: $small-mobile-screen) {
                        flex-direction: column;
                        width: 100%;
                        align-items: center;
                    }
                    &.loading{
                        .select-box{
                            &#select-provider-box2{
                                cursor: not-allowed !important;
                                .init{
                                    opacity: 0.5 !important;
                                    pointer-events: none !important;
                                }
                            }
                        }
                        .cta_btn{
                            &.cta_active{
                                opacity: 0.4;
                                pointer-events: none;
                            }
                        }
                    }
                    
                    .select-box{
                        width: 47%;
                        position: relative;
                        
                        @media screen and (max-width: $small-mobile-screen) {
                            width: 75%;
                            margin-bottom: 32px;
                        }
                        &.default{
                            cursor: not-allowed;
                            .init{
                                opacity: 0.5;
                                pointer-events: none;
                            }
                        }
                        &.active{
                            .inner{
                                padding:10px 0 15px;
                            }
                            .material-icons{
                                transform: rotate(180deg);
                            }
                        }
                        &#select-provider-box2{
                            .gif-loader{
                                position: absolute;
                                width: 30px;
                                height:30px;
                                left:0;
                                right:0;
                                margin:0 auto;
                                top: 9px;
                                z-index: 9;
                                display: none;
                                img{
                                    width: 100%;
                                    margin:0 auto;
                                }
                            }
                        }
                        .material-icons{
                            position: absolute;
                            top: 13px;
                            right: 10px;
                            font-size: 20px;
                            pointer-events: none;
                        }
                        .init{ 
                            background: $grey10;
                            height: 47px;
                            border-radius: 10px;
                            border: 1px solid $blue3;
                            outline: 0;
                            padding: 12px 13px;
                            position: relative;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            padding-right: 25px;
                            cursor: pointer;
                            opacity: 1;
                            pointer-events: initial;
                         }
                        .inner{
                            background: $white;
                            box-shadow: $shadow-base;
                            border-radius: 10px;
                            position: absolute;
                            top: 47px;
                            left:0;
                            width:100%;
                            overflow: hidden;
                            z-index: 2;
                             ul {
                                text-align: center;
                                .main-list{
                                    max-height: 200px;
                                    overflow-y: auto;
                                    &::-webkit-scrollbar {
                                        width: 6px;
                                      }
                                      
                                      /* Track */
                                      &::-webkit-scrollbar-track {
                                        background: $grey6;
                                        border-radius: 20px;
                                      }
                                      
                                      /* Handle */
                                      &::-webkit-scrollbar-thumb {
                                        background: $primaryGreen;
                                        border-radius: 20px;
                                      }
                                      
                                    li{
                                        padding: 0px 15px;
                                        display: none;
                                        cursor:pointer;
                                        height:50px;
                                        line-height: 1.2;
                                        font-size: 15px;
                                        &:hover{
                                            background: $lightGreen5;
                                        }
                                        &:before{
                                            display: none;
                                        }
                                        span{
                                            height: 100%;
                                        }
                                    }
                                }
                            }
                            .see-more{
                                display:none;
                                color: $primaryGreen;
                                font-weight: bold;
                                font-size: 16px;
                                padding: 10px 0;
                                font-family: $headings-font-family;
                                cursor: pointer;
                                &.block{
                                    display: block;
                                }
                            }
                        }
                     }
                }
                .cta_btn{
                    font-family: $headings-font-family;
                    font-weight: 700;
                    opacity: 0.4;
                    pointer-events: none;
                    width: 141px;
                    &.cta_active{
                        pointer-events: initial;
                        opacity: 1;
                    }
                }
            }
        }
        .featured-container{
            position: absolute;
            height: 62%;
            width: 100%;
            bottom: 0;
            display: none;
        }
    }
}


.make-money.home-providers-block{
    position: relative;
    padding-top: 48px;
    overflow: hidden;
    padding-bottom: 50px;
/*    @media screen and (min-width:1024px) {
        padding-bottom: 64px;
    }
    @media screen and (min-width:1200px) {
        padding-bottom: 84px;
    }
    @media screen and (min-width:1366px) {
        padding-bottom: 116px;
    }*/
    .make-money-content {
        padding-top: 0px !important;
   /*     @media screen and (min-width:1024px) {
            padding-top: 84px;
        }
        @media screen and (min-width:1200px) {
            padding-left: 0;
        }
        @media screen and (min-width:1366px) {
            padding-top: 108px;
        }
        @media screen and (min-width:1536px) {
            padding-top: 124px;
        }*/
    }
	.col-md-12 {
        position: relative;
		.providers-list{
            position: relative;
            margin-top: 0px !important;
            right: -80px;
            bottom:auto;
          @media screen and (max-width: 991px) {
               right: -120px !important;
            }
            @media screen and (max-width:575px) {
                right: 0px !important;
            }
          @media screen and (max-width: 475px) {
               right: 80px !important;
            }
             @media screen and (max-width: 400px) {
               right: 140px !important;
            }
           /* @media screen and (min-width:1366px) {
                margin-top: 108px;
            }
            @media screen and (min-width:1536px) {
                margin-top: 72px;
            }*/
			ul{
				margin-top: auto;
				li{
					&:nth-child(4){
                        @media screen and (min-width:768px) {
                            margin-left: -50px;
                        }
					}
				}
			}
		}
	}
    
    //addition for paid landers 
    
    h5 {
        color:$blue3;
        
    }
    
/*    .call-time-dates {
        
        p {
            
        }
    }*/
    
}
/* purgecss start ignore */
.page-template-default:not(.home) .post-16408 {
    
     h1.entry-title {
        display: none;
    }
    
    .make-money.home-providers-block{
       left: 50%;
      margin-left: -50vw;
      min-height: 400px;
      position: relative;
      width: 100vw;
    }
    
    
}
/* purgecss end ignore */
.home-cities-block {
    @media screen and (min-width:1024px) {
        padding-top: 48px;
    }
    @media screen and (min-width:1200px) {
        padding-top: 64px;
        padding-bottom: 32px;
    }
    .cities-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(6, minmax(0, 1fr));
        gap: 17px;
        @media screen and (min-width:640px) {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            grid-template-rows: repeat(3, minmax(0, 1fr));
        }
    }
    h3 {
        text-align: center;
        @media screen and (min-width:1024px) {
            margin-bottom: 32px;
        }
    }
    .city-item {
        background: #F5F5F5;
        border-radius: 20px;
        padding: 24px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        @media screen and (min-width:1024px) {
            padding: 24px;
        }
        .title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            span {
                color: $blue3;
                font-weight: bold;
                font-size: 18px;
                @media screen and (min-width:640px) {
                    font-size: 20px;
                }
            }
            svg {
                display: none;
                @media screen and (min-width:1024px) {
                    display: inline-block;
                    height: 24px;
                    width: 24px;
                }
            }
        }
        &:hover {
            color: $blue3;
            text-decoration: underline;
            box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
        }
    }
}

.home-compare-block {
    padding-top: 64px;
    padding-bottom: 24px;
    @media screen and (min-width:640px) {
        padding-bottom: 64px;
    }
    @media screen and (min-width:1024px) {
        padding-top: 128px;
    }
    h3 {
        margin-bottom: 4px;
    }
    .disclose-link {
        margin-bottom: 1.125rem;
        font-size: 16px;
        text-decoration: underline;
    }
    .item-container {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 16px;
        @media screen and (min-width:640px) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 100px;
            row-gap: 16px;
            margin-bottom: 32px;
        }
    }
    .hmsdin-box {
        background: $blue5;
        border-radius: 20px;
        overflow: hidden;
        padding: 24px;
        .hmsdin-link a {
            background: $blue3;
            color: white;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 10px 32px;
            display: inline-block;
            font-weight: bold;
        }
        h3 {
            @media screen and (min-width:640px) {
                margin-bottom: 16px;
            }
        }
    }
    .right-content {
        @media screen and (min-width:1024px) {
            width: 66.67%;
            margin-left: 50px;
        }
        @media screen and (min-width:1024px) {
            margin-left: 100px;
        }
    }
    .content-container {
        display: flex;
        position: relative;
        .dots {
            display: none;
            position: absolute;
            left: 0;
            top: 0;
            z-index: 5;
            margin-left: -54px;
            margin-top: -54px;
            width: 300px;
            height: 225px;
            object-fit: cover;
            @media screen and (min-width:1024px) {
                display: block;
            }
        }
    }
    .img-container {
        display: none;
        position: relative;
        box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        border-radius: 20px;
        @media screen and (min-width:1024px) {
            display: block;
            width: 33.33%;
        }
        .img-left {
            position: absolute;
            object-fit: cover;
            object-position: center;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
        }
    }
}


.comparison-features-block {

    &.mobile-features-block {
        display:none;
    }

    max-height: 436px;
    position: relative;
    overflow: hidden;

    &.with-after-content:after {
        content: "";
        height: 30%;
        left: 0;
        position: absolute;
        top: 49%;
        width: 100%;
        background-image: linear-gradient(to bottom, transparent, $white);
    }

    .features-content {
        position: relative;
        &:after {
            border: 1px solid $grey;
            content: "";
            height: 92%;
            left: 50%;
            position: absolute;
            top: 4%;
            width: 0;
        }
    }
    .features-image-row {
        .col {
            min-height:100px;
        }
    }
    .show-more { 
        position: absolute; 
        bottom: 0; 
        left: 0;
        width: 100%; 
        text-align: center; 
        background-color: $white;
    }
    img {
        max-height:50px;
        width:auto;
    }
    @media screen and (max-width: $small-tablet-screen) {
        &.desktop-features-block {
            display:none;
        }
        &.mobile-features-block {
            display:block;
            max-height: 260px;
        }
        .features-content {
            &:after {
                display:none;
            }
        }

        .features-image-row {
            .col {
                min-height:auto;
            }
        }

        h3 {
            font-size: 17px;
            line-height: 21px;
        }

        &.with-after-content:after {
            top: 45%;
        }
    } 
}

.comparison-provider-main-differences {

    @media screen and (min-width: $mobile-screen) {
    
        padding-left: 112px;
    }
    .row {
        position:relative;
        background-color: $lightGrey;

        .main-differences-text {
            padding-left:25%;
        }

        .main-differences-logo {
            position:absolute;
            width: 224px;
            left: -112px;
            top: calc(50% - 62.5px);

            &>div{
                height:125px;
            }
        }
    }

    @media screen and (max-width: $mobile-screen) {

        .row {

            margin-top:114px;
            padding-top:57px;

            .main-differences-text {
                padding-left:1.5rem;
            }

            &:first-of-type {
                margin-top:57px;
            }

            .main-differences-logo {
                left: calc(50% - 112px);
                top: -75px;
            }
        }
    }
}



.toc-sidebar{
    .faq-block-container{
        &.row-full{
            left: auto;
            margin-left: 0;
            width: 100%;
            @media screen and (max-width: $mobile-screen){
                left: 50%;
                margin-left: -50vw;
                width: 100vw;
            }
        }
        .faq-block{
            width: 100% !important;
            @media screen and (max-width: $small-tablet-screen){
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }
    }
}
.toc-sidebar-commercial-page{
    .faq-block-container{
        &.row-full{
            left: auto;
            margin-left: 0;
            width: 100%;
            @media screen and (max-width: $mobile-screen){
                left: 50%;
                margin-left: -50vw;
                width: 100vw;
            }
        }
        .faq-block{
            width: 100% !important;
            @media screen and (max-width: $small-tablet-screen){
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }
    }
}

.icon-header-block {
    .title-container {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        .icon-container {
            padding: 20px;
            background: $lightBlue;
            border-radius: 20px;
            margin-right: 1.5rem;
            @media screen and (min-width: 768px) {
                padding: 30px;
            }
            img {
                height: 30px;
                width: 30px;
                object-fit: contain;
               // filter: brightness(0%) saturate(100%) invert(47%) sepia(67%) saturate(7160%) hue-rotate(188deg) brightness(90%) contrast(104%);
                filter: url(#colorFilter);
                @media screen and (min-width: 992px) {
                    height: 35px;
                    width: 35px;
                }
            }
        }
    }
    p{
        margin-bottom: 25px !important;
    }
}

.creative-cta-block {
    border-radius: 20px;
    padding: 30px 35px 0 35px;
    @media (min-width:576px) {
        padding: 30px 20px 30px 40px;
    }
    @media (min-width:1024px) {
        padding: 50px 20px 50px 60px;
    }
    .logo {
        margin-bottom: 1.5rem;
        @media (min-width:768px) {
            height: 22px !important;
            width: auto;
        }
    }
    h3 {
        margin-bottom: 1.5rem;
    }
    p {
       font-size: 1.5rem;
        line-height: 30px;
        font-weight: 700;
    }
    &.bg-green {
        background-color: $lightGreen4;
        h3,p {
            color: $darkGreen;
        }
    }
    &.bg-blue {
        background-color: $blue6;
        h3,p {
            color: $blue7;
        }
    }
    .graphic {
        @media (min-width:768px) {
            max-height: 250px;
            object-fit: contain;
        }
    }
    .img-container {
        @media (min-width:576px) {
            padding: 0;
        }
    }
    &.type-fiber, &.type-satellite, &.type-dsl, &.type-cable {
        @media (min-width:1024px) {
            padding: 40px 30px 40px 50px;
        }
        .graphic {
            height: 133px;
            width: 133px;
            margin-bottom: 12px;
            @media (min-width:576px) {
                margin-bottom: 0;
                height: 175px;
                width: 175px;
            }
            @media (min-width:768px) {
                height: 200px;
                width: 200px;
            }
            @media (min-width:1024px) {
                height: 235px;
                width: 235px;
            }
        }
    }
    &.type-phone {
        .graphic {
            width: 200px;
            height: auto;
            margin-bottom: -75px;
            @media (min-width:768px) {
                width: 100%;
                margin-bottom: 0;
            }
        }
    }
}

.toc-sidebar {
    .creative-cta-block {
        @media (min-width:1024px) {
            padding: 40px 20px 40px 40px;
        }
        &.type-fiber, &.type-satellite, &.type-dsl, &.type-cable {
            @media (min-width:1024px) {
                padding: 30px 20px 30px 40px;
            }
        }
    }
}

.speed-test-block {
    margin-bottom: 2rem;
    .iframe-wrapper {
        padding: 1rem;
        border-radius: 20px;
        box-shadow: $primaryBoxShadow4;
    }
}

	.features-card {

		.container {
			border-radius: inherit;
			padding: 0;
		}

		.features-card-title-row {
			background-color: $black;
			padding: 10px 15px;
			border-top-left-radius: inherit;
   			border-top-right-radius: inherit;

			h4 {
				//font-size: 18px;
			   // font-weight: 700;
			    color: $white;
			}
		}
		.inner {
			display: flex;
			justify-content: center;
			flex-direction: column;
		    background: $white;
		    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .25);
		    border: solid 1px #F5F5F5;
		    padding: 20px 30px;
			border-radius: 4px;
			min-height: 150px;
			> * + * {
				margin-top: 20px;
			}
			@media screen and (min-width: 768px) {
				padding: 20px;
				flex-direction: row;
				> * + * {
					margin-top: 0;
					margin-left: 20px;
				}
			}
			@media screen and (min-width: 1024px) {
				padding: 30px;
			}
		}
		img {
			width: 100%;
			height: 65px;
			max-width: 200px;
			object-fit: contain;
			margin-bottom: 16px;
			@media screen and (min-width: 768px) {
				margin-bottom: 0;
			}
		}
		.img_wrap {
			border-bottom: 1px solid #D8D8D8;
			@media screen and (min-width: 768px) {
				border-bottom: none;
				padding-left: 0;
				padding-right: 20px;
				min-width: 175px;
				display: flex;
				align-items: center;
			}
			@media screen and (min-width: 992px) {
				padding-right: 30px;
				min-width: 220px;
			}
		}
		.cta_btn {
			width: 100%;
			padding-left:0px;
			padding-right:0px;

			.material-icons {
				color: $white;
			}
		}
		.features-list {
			padding-left:0px;
			position: relative;
			@media screen and (min-width: 768px) {
				padding-left: 16px;
				display: flex;
				margin-left: 0;
				align-items: center;
				flex-grow: 1;
				margin-right: 20px;
				&:before {
					content: '';
					width: 1px;
					height: 90%;
					background: #D8D8D8;
					position: absolute;
					top: 5%;
					bottom: 0;
					left: 0;
				}
			}
			@media screen and (min-width: 992px) {
				padding-left: 30px;
				margin-right: 30px;
			}
			@media screen and (min-width: 1200px) {
				padding-left: 24px;
			}
		}
		.button-container {
			width: 200px;
			margin-left: auto;
			margin-right: auto;
			@media screen and (min-width: 768px) {
				width: 175px;
				margin: 0;
				display: flex;
				align-items: center;
				flex-direction: column;
				justify-content: center;
			}
			@media screen and (min-width: 992px) {
				width: 200px;
			}
		}
		ul {
			padding-left:0;
			li {
				list-style: none;
				padding-left: 24px;
				font-size: 18px;
				color: #5E5E5E;
				line-height: 20px;
				padding-bottom: 10px;
				@media screen and (min-width: 768px) {
					font-size: 16px;
					padding-bottom: 8px;
				}
				@media screen and (min-width: 1200px) {
					font-size: 18px;
					padding-bottom: 10px;
				}
				&:before {
					content: 'done';
				    font-family: "Material Icons";
				    background: transparent;
				    color: black;
				    width: 18px;
				    font-size: 16px;
				    top: 0px;
				}
			}
			li:last-child {
				padding-bottom: 0;
			}
		}
		.plan-info {
			text-decoration: underline;
			font-size: 14px;
			color: #686868;
			margin-top: 12px;
			@media screen and (min-width: 768px) {
				font-size: 12px;
			}
			@media screen and (min-width: 1200px) {
				font-size: 14px;
			}
		}
	}
	.toc-sidebar .features-card {
		@media screen and (min-width: 1024px) {
			.inner {
				padding: 20px;
				min-height: 135px;
			}
			.img_wrap {
				min-width: 150px;
			}
			.button-container {
				width: 165px;
				flex-shrink: 0;
			}
			ul {
				li {
					font-size: 14px;
				}
			}
		}
		@media screen and (min-width: 1200px) {
			.inner {
				padding: 25px;
				min-height: 150px;
			}
			.img_wrap {
				min-width: 200px;
			}
			.button-container {
				width: 175px;
			}
			.features-list {
				padding-left: 30px;
			}
			ul {
				li {
					font-size: 15px;
				}
			}
			.plan-info {
				font-size: 13px;
			}
			
		}
	}
