﻿/*!
* Bootstrap v4.3.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

/*
 * Project notes — recent CSS fixes (keep this block updated when changing globals)
 * ---------------------------------------------------------------------------
 * Global h2: default color / text-align / font-size were commented out so page
 *   titles (e.g. landing / MCC) are not forced to centered 2em black.
 * CSP / NAT / modal helpers: rgba() values normalized with spaces after commas;
 *   extra blank lines between related rules for readability.
 * MCC fluid rem: .mcc-page uses font-size: 1px as the rem base for MCC layout;
 *   from min-width 1200px, :root gets font-size: 0.052086vw so rem-based sizes
 *   track viewport width on large screens (see MCC block at end of file).
 * Layout lengths use rem with the same numeric values as former px (e.g. 14px → 14rem).
 * px is kept only where rem breaks semantics: @media breakpoints, Bootstrap --breakpoint-* vars,
 *   and .mcc-page font-size: 1px (rem base for MCC).
 */
@charset "UTF-8";

/* ══════════════════════════════════════════════
         FONTS
         ══════════════════════════════════════════════ */

@font-face {
    font-family: "Gotham";
    src: url("../css/fonts/GothamPro-Black.eot");
    src: url("../css/fonts/GothamPro-Black.eot?#iefix") format("embedded-opentype"),
        url("../css/fonts/GothamPro-Black.woff2") format("woff2"),
        url("../css/fonts/GothamPro-Black.woff") format("woff"),
        url("../css/fonts/GothamPro-Black.ttf") format("truetype"),
        url("../css/fonts/GothamPro-Black.svg#GothamPro-Black") format("svg");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../css/fonts/GothamPro-Bold.eot");
    src: url("../css/fonts/GothamPro-Bold.eot?#iefix") format("embedded-opentype"),
        url("../css/fonts/GothamPro-Bold.woff2") format("woff2"),
        url("../css/fonts/GothamPro-Bold.woff") format("woff"),
        url("../css/fonts/GothamPro-Bold.ttf") format("truetype"),
        url("../css/fonts/GothamPro-Bold.svg#GothamPro-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../css/fonts/GothamPro-Medium.eot");
    src: url("../css/fonts/GothamPro-Medium.eot?#iefix") format("embedded-opentype"),
        url("../css/fonts/GothamPro-Medium.woff2") format("woff2"),
        url("Gotham-fonts/GothamPro-Medium.woff") format("woff"),
        url("../css/fonts//GothamPro-Medium.ttf") format("truetype"),
        url("../css/fonts/GothamPro-Medium.svg#GothamPro-Medium") format("svg");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../css/fonts/GothamPro-Light.eot");
    src: url("../css/fonts/GothamPro-Light.eot?#iefix") format("embedded-opentype"),
        url("../css/fonts/GothamPro-Light.woff2") format("woff2"),
        url("../css/fonts/GothamPro-Light.woff") format("woff"),
        url("../css/fonts/GothamPro-Light.ttf") format("truetype"),
        url("../css/fonts/GothamPro-Light.svg#GothamPro-Light") format("svg");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../css/fonts/GothamPro.eot");
    src: url("../css/fonts/GothamPro.eot?#iefix") format("embedded-opentype"),
        url("../css/fonts/GothamPro.woff2") format("woff2"),
        url("../css/fonts/GothamPro.woff") format("woff"),
        url("../css/fonts/GothamPro.ttf") format("truetype"),
        url("../css/fonts/GothamPro.svg#GothamPro") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ══════════════════════════════════════════════
         DESIGN TOKENS (CSS Custom Properties)
         Reuse these across every page
         ══════════════════════════════════════════════ */



:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

    /* MCC / IZO shared design tokens (rem base + vw root — see “Project notes” at top) */
    --mcc-rem-breakpoint: 1200rem;
    --mcc-dark: #040A0E;
    --mcc-dark-alt: #0b1a2b;
    --mcc-primary: #3CC2C0;
    --mcc-primary-rgb: 60, 194, 192;
    --mcc-primary-dark: #2E9698;
    --mcc-white: #ffffff;
    --mcc-white-70: rgba(255, 255, 255, 0.7);
    --mcc-white-40: rgba(255, 255, 255, 0.4);
    --mcc-text: #333333;
    --mcc-text-muted: #5a6878;
    --mcc-accent: #3D85C6;
    --mcc-font-family: "Gotham", "Segoe UI", Arial, sans-serif;
    --mcc-radius: 12rem;
    --mcc-radius-sm: 6rem;
    --mcc-radius-xs: 4rem;
    --mcc-radius-pill: 999rem;
    --mcc-transition: all 0.3s ease;
    --mcc-gradient-border: linear-gradient(141deg, rgba(var(--mcc-primary-rgb), 1) 1%, rgba(var(--mcc-primary-rgb), 0.15) 100%);
    --mcc-gradient-card-bg: linear-gradient(180deg, rgba(0, 0, 0, 0.11) 0%, rgba(0, 0, 0, 0.05) 100%);
    --mcc-gradient-btn: linear-gradient(-90deg, rgba(60, 195, 194, 0.2) 0%, rgba(60, 195, 194, 0.81) 96%);
    --mcc-gradient-btn-border: linear-gradient(131deg, rgba(46, 150, 152, 1) 0%, rgba(60, 195, 194, 1) 100%);
    --mcc-glow: radial-gradient(circle at 50% 50%, rgba(0, 255, 251, 1) 0%, rgba(28, 92, 91, 0) 100%);
    font-size: 1px;
    --mcc-rem-breakpoint: 1200rem;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* width */

::-webkit-scrollbar {
    width: 6rem;
}

/* Track */

::-webkit-scrollbar-track {
    background: #cbcbcb;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10rem;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html {
    font-family: var(--mcc-font-family);
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    margin: 0;
    font-family: var(--mcc-font-family);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #ffffff !important;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}


.btn.btn-primary {
    background: #866ec7;
    border-color: #866ec7;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #ffffff;
    border-color: #ffffff;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
}

.form-control {
    height: 50rem !important;
    background: #fff;
    color: #000;
    font-size: 13rem;
    border-radius: 4rem;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: transparent;
}

.form-control:focus,
.form-control:active {
    border-color: #000;
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3);
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.3);
}

.form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.3);
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.3);
}

/****  navigation menu ******/

.navbar {
    padding: 7rem 30rem 5rem 30rem;
    background: #ffffff !important;
    border-bottom: 2rem solid #D8D8D8;
    margin-bottom: 0rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
    z-index: 3;
    width: 100%;
}

label {
    color: #333333;
    font-style: normal;
    font-size: 14rem;
    position: relative;
    font-weight: 400;
}

.tab.active {
    color: #000;
    font-weight: 800;
    font-family: var(--mcc-font-family);
    border: 1rem solid #707070;
    border-bottom: none;
    padding-top: 4rem;
    border-radius: 4rem 4rem 0 0;
    padding-left: 12rem;
    padding-right: 12rem;
    display: inline-block;
    padding-bottom: 4rem;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: none;
    border-color: none;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ffffff;
    border-color: #ffffff;
}

/******************* tab css code *********************/

body {
    background: #ffffff;
    font-family: var(--mcc-font-family) !important;
    line-height: 1.2;
    height: 100dvh;
}

/* See “Project notes” at top: global h2 styling disabled for MCC/landing headings */
h2 {
    /* color: #000; */
    /* text-align: center; */
    /* font-size: 2em; */
}

.warpper {
    /**display:flex;**/
    /** flex-direction: column;**/
    align-items: left;
}

.tab {
    cursor: pointer;
    padding: 0rem 9rem;
    margin: 0rem 2rem;
    display: inline-block;
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 0;
}

.tabs {
    display: block;
    text-align: right;
    margin-bottom: 0rem;
    width: 50%;
    padding-left: 0rem;
    float: left;
    padding-right: 20rem;
}

.warpper {
    padding-bottom: 15rem;
    padding-top: 22rem;
}

.close {
    color: #000000 !important;
    float: right !important;
    font-size: 22rem !important;
    font-weight: normal !important;
    position: absolute !important;
    right: 10rem !important;
    top: 3rem !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

div#myModal {
    border-radius: 18rem;
}

.panels {
    background: #ffffff;
    min-height: 250rem;
    width: 100%;
    max-width: 540rem;
    border-radius: 0rem;
    overflow: hidden;
    padding-top: 15rem;
    overflow-y: auto;
    border-top: 2rem solid #d2d2d2;
    padding-left: 20rem;
    padding-right: 20rem;
}

.listtext li a {
    color: #000 !important;
}

.listtext li span {
    width: 22rem !important;
}



.map_lgnd {
    float: left;
    width: 50%;
    text-align: left;
    color: #3e85c7;
    font-family: var(--mcc-font-family);
    font-size: 17rem;
}

.panel {
    display: none;
    animation: fadein .8s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.panel-title {
    font-size: 1.5em;
    font-weight: bold
}

.radio {
    display: none;
}

#one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel {
    display: block
}

#one:checked~.tabs #one-tab,
#two:checked~.tabs #two-tab {
    background: #ffffff;
    color: #3a3a3a;
    border-top: 0rem solid #000;
    font-weight: bold;
}

#one:checked~.panels #one-panel,
#two:checked~.panels #two-panel,
#three:checked~.panels #three-panel {
    display: block
}

.circle {
    list-style-type: disc;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    /*display: flex;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap; */
    margin-right: 0rem;
    margin-left: 0rem;
}

/* The Modal (background) */

.modal {
    position: fixed;
    z-index: 1111;
    top: auto !important;
    left: auto;
    right: 15rem;
    bottom: 15rem;
    padding-top: 0rem;
    width: 100%;
    width: 540rem;
    height: auto !important;
    box-shadow: 5rem 5rem 7rem 3rem rgba(0, 0, 0, 0.25);
}

/* Modal Content */

.modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 0rem;
    border: 0rem solid #888;
    border-radius: 15rem;
    width: 100%;
    box-shadow: 5rem 5rem 7rem 3rem rgba(0, 0, 0, 0.25);
}

/* The Close Button */

.close {
    color: #000000;
    float: right;
    font-size: 25rem;
    font-weight: normal;
    position: absolute;
    right: 16rem;
    top: 5rem;
    opacity: 1;
    text-shadow: none;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

ul.no-bullets {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.listtext {
    font-family: var(--mcc-font-family);
    font-style: normal;
    padding-left: 12rem;
    color: #6F6F6F;
}

.listtext li {
    font-size: 9rem;
    line-height: 16rem;
    font-weight: 550;
}

.listtext li a {
    color: #7f7f7f;
}

.col-md-4.v1 {
    padding-left: 10rem;
    border-left: 2rem solid #e8e7e7;
}

.tab-legend {
    color: #0056b3;
    margin-left: 210rem;
}

.listtext li.headli {
    color: #000;
    font-size: 10rem !important;
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-family: var(--mcc-font-family);
    font-weight: 500;
    padding-left: 0 !important;
}

#pop_cat_list_det .listtext li {
    padding-left: 20rem;
    position: relative;
    font-weight: 550;
}

#pop_cat_list_det .listtext li::before {
    content: '';
    position: absolute;
    height: 3rem;
    width: 3rem;
    background: #4d4d4d;
    left: 11rem;
    top: 6rem;
    border-radius: 5rem;
    font-weight: 550;
}

li.headli span {
    width: 8rem !important;
    height: 8rem !important;
    border-radius: 8rem !important;
    margin-bottom: 0 !important;
    margin-right: 4rem !important;
}

#pop_cat_list_det .listtext li.headli::before {
    content: none;
    height: 0rem;
    width: 0rem;
}

.gm-style-iw-d {
    color: #000;
    padding-top: 6rem;
}

.gm-ui-hover-effect {
    opacity: 1 !important;
    right: -3rem !important;
}

#one-panel .listtext li:first-child {
    color: #000;
    padding-bottom: 0;
    font-size: 9rem;
    font-weight: 500;
}

#pop_cat_list_det .listtext {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.popupbox-title {
    font-family: var(--mcc-font-family);
    font-style: normal;
    font-weight: 350;
    font-size: 10rem;
    line-height: 12rem;
    color: #6F6F6F;
}

/* .left_sidr .components {
     padding-left: 25rem !important;
     padding-right: 20rem !important;
     } */

.fltr_hdg {
    color: #212121;
    font-size: 21rem;
    margin-top: 10rem;
    margin-bottom: 5rem;
    padding-left: 30rem;
    border-bottom: 1rem solid #ececec;
}

.main_hdg {
    text-align: center;
    font-size: 22rem;
    margin-top: 6rem;
    line-height: 28rem;
    margin-bottom: 0;
    position: relative;
    left: 57%;
    color: #3e85c7;
    font-family: var(--mcc-font-family);
}

.box_lft_fltr {
    max-height: 228rem;
    overflow-y: auto;
    /* border: 1rem solid #e5e3df; */
    padding: 5rem 0 5rem 0;
}

.map_lgnd {
    float: left;
    width: 50%;
    text-align: left;
    font-size: 16rem;
    color: #3e85c7;
    font-family: var(--mcc-font-family);
    padding-left: 20rem;
    line-height: 22rem;
}

.menu-heading {
    font-family: var(--mcc-font-family);
    font-weight: 700;
    color: #000;
    padding-top: 13rem;
    padding-bottom: 2rem;
    font-size: 17rem;
}

.clear-map #clear_leg {
    text-align: left;
    margin: 0;
    border: none;
    font-weight: 600;
    color: #000;
    font-size: 11rem;
}

.clear-map {
    text-align: right;
    padding-right: 15rem;
    padding-bottom: 5rem;
}

@media (max-width: 991.98px) {

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        padding-right: 0;
        padding-left: 0;
    }

    .warpper {
        padding-bottom: 0rem;
        padding-top: 22rem;
    }

    #sidebar.active {
        margin-left: 0;
    }

    /* #sidebar {
         margin-left: -280rem;
     } */
    #sidebar ul li a {
        font-size: 13rem;
        line-height: 13rem;
    }

    /* .left_sidr .components {
         padding-left: 15rem !important;
         padding-right: 15rem !important;
     } */
    #sidebar {
        min-width: 280rem;
        max-width: 280rem;
        background-color: #ffffff !important;
    }

    .map-ftr-div {
        right: 315rem !important;
        top: 73rem;
    }

    .map-ftr-div.active {
        right: 49rem !important;
        top: 74rem;
    }

    label {
        font-size: 13rem;
        line-height: 14rem;
    }

    .menu-heading {
        font-size: 15rem;
    }

    .main_hdg {
        font-size: 16rem;
    }

    .navbar-brand img {
        width: 180rem;
    }

    .navbar-brand-right img {
        width: 43rem;
    }

    .nav-icon img {
        width: 22rem;
    }

    .nav-icon img {
        width: 22rem;
    }

    #sidebarCollapse img {
        width: 33rem;
    }

}

.mobile-active {
    display: none
}

.showonclass {
    display: none
}

@media (max-width: 767px) {
    #sidebar ul li a {
        font-size: 15rem;
        padding: 10rem 0;

    }

    #sidebarCollapse img {
        width: 22rem;
    }

    #sidebar {
        min-width: 240rem;
    }

    .map-ftr-div {
        right: 292rem !important;

    }

    .gm-style-iw.gm-style-iw-c {
        max-width: 184rem !important;
        min-width: 270rem !important;
    }

    .card {
        padding: 5rem 10rem !important;
    }

    button.gm-control-active.gm-fullscreen-control {
        height: 30rem !important;
        width: 30rem !important;
    }

    button#sidebarCollapse {
        font-size: 13rem !important;
        padding: 4rem 10rem !important;
    }

    .map-ftr-div.active {
        top: 68rem;
    }

    .map-ftr-div {
        top: 68rem !important;
    }

    #sidebar ul li a {
        font-size: 15rem;
    }

    .gm-style-iw.gm-style-iw-c {
        max-width: 340rem !important;
        width: 280rem !important;
    }

    label {
        font-size: 12rem;
        margin-bottom: 7rem !important;
    }

    #sidebar {
        padding: 20rem 10rem;
    }

    .panel .col-md-6 {
        float: left;
        width: 50%;
    }

    .close {
        display: none;
    }

    .main_hdg {
        left: 20%;
    }

    .main_hdg {
        margin-top: 10rem;
    }

    .nav.navbar-nav.navbar-right {
        flex-direction: column-reverse;
    }

    .hideonmobile {
        display: none
    }

    .showonclass {
        display: block
    }

    /*
     }
     @media (max-width: 600px) {
     */
    .modal {
        position: absolute;
        z-index: 1111;
        top: 153rem !important;
        left: 0;
        right: 0;
        bottom: 15rem;
        padding-top: 0rem;
        width: 100%;
        width: 100%;
        height: auto !important;
        box-shadow: 5rem 5rem 7rem 3rem rgba(0, 0, 0, 0.25);
        overflow: visible;
        box-shadow: none;
    }

    .col-md-4.v1 {
        width: 100%;
        float: none;
        display: block;
    }

    .modal-content {
        border-radius: 0;
    }

    .col-md-4.v1.ea7825 {
        padding-right: 0;
    }

    .col-md-4.v1 {
        padding-left: 0;
        border-left: 0rem solid #e8e7e7;
    }

    .nav-icon img {
        width: 38rem;
    }

    .row {
        display: flex;
        display: -ms-flexbox;
        margin-right: 0rem;
        margin-left: 0rem;
        flex-wrap: wrap;
    }

    .nav-icon.printer-icon img {
        width: 24rem;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
        margin-left: 25rem;
    }

    .main_hdg {
        left: 0%;
        font-size: 15rem;
        line-height: 17rem;
    }

    #sidebarCollapse {
        text-align: left;
    }

    .navbar-brand-right {
        margin-right: 0;
    }

    .navbar-brand-right img {
        width: 38rem;
    }

    .navbar-brand img {
        width: 169rem;
    }

    .navbar {
        padding: 3rem 20rem 5rem 20rem;
    }

    .panels {
        padding-top: 10rem;
        padding-left: 20rem;
        padding-right: 15rem;
        max-width: 100%;
    }

    .listtext li:first-child {
        padding-top: 5rem;
    }

    #cable_cat_list_det .listtext li {
        float: left;
        width: 50%;
        padding-right: 5rem;
    }

    .panel .col-md-6 {
        float: left;
        width: 50%;
        padding-left: 0rem;
        padding-right: 8rem;
    }

    #one-panel .listtext li:first-child {
        padding-top: 0;
    }

    #pop_cat_list_det .listtext li::before {
        left: 2rem;
        top: 8rem;
    }

    #pop_cat_list_det .listtext li {
        padding-left: 10rem;
        position: relative;
    }

    .clear-map {
        text-align: left;
        padding-left: 25rem;
        padding-bottom: 5rem;
        padding-right: 0;
        padding-top: 5rem;
    }

    .map_lgnd {
        font-size: 13rem;
    }

    #cable_cat_list_det .col-md-4 {
        border-left: 0rem solid #e0e0e0;
    }
}

#one-panel {
    max-height: 400rem;
    overflow-y: auto;
}

.pop_up {
    background-color: #ECECEC;
    padding: 5rem 10rem;
    display: block;
}

/**** new code ****/
#pop_level_1_dp span {
    display: none !important;
}

.cv-hide {
    height: 0 !important;
    opacity: 0;
    z-index: -1;
    position: relative;
}

.gm-style-iw-ch {
    display: none;
}

.gm-style-iw.gm-style-iw-c {
    padding: 0 !important;
    /* max-width: 480rem !important; */
    width: 450rem;
    border-radius: 20rem !important;
    border: 1rem solid rgba(201, 254, 255, 0.50) !important;
    background: rgb(0 0 0 / 57%) !important;
    backdrop-filter: blur(50rem) !important;
}

.gm-style .gm-style-iw-d {
    max-height: unset !important;
}

.gm-style-iw-chr {
    position: absolute;
    right: 0;
}

.gm-style-iw-d {
    color: #ffffff;
    padding-top: 0;
    overflow: hidden !important;
}

.pop-outer {
    padding: 15rem 20rem;
    border-radius: 20rem 20rem 0 0;
    border: 2rem solid #2E9698;
    background: radial-gradient(193.62% 128.56% at 9.09% 3.54%, #17474E 0%, #2C8C8F 100%);
}

.pop-ttl {
    font-size: 20rem;
    /* padding-bottom: 7rem; */
    font-family: var(--mcc-font-family) !important;
    font-weight: 500 !important;
}

.pop-desc {
    padding-top: 7rem;
    margin-bottom: 0;
    font-size: 16rem;
}

.pop-desc:empty {
    padding-top: 0;
}

#accordionExample .card-header {}

#accordionExample h2 {}

#accordionExample button.btn.btn-link {}

#accordionExample button.btn.btn-link span {}

#accordionExample .card-body {}

.gm-ui-hover-effect>span {
    background-color: #ffffff !important;
}

.gm-style .gm-style-iw {
    font-family: var(--mcc-font-family) !important;
    font-size: 12rem;
    color: #333333;
    font-weight: 300;
    line-height: 1.3em;
    max-height: unset !important;
}

.card .collapsed::before {
    content: '';
    background-image: url('../images/plus-black-icon.svg');
    position: absolute;
    font-family: 'Material Icons';
    right: 25rem;
    top: 12rem;
    width: 20rem;
    height: 20rem;
    background-size: 100%;
    transition: all 0.5s;
    transform: scale(1);
    color: red;
}

.card-header::after {
    content: '';
    background-image: url('../images/Minus-Blue-Icon.svg');
    position: absolute;
    font-family: 'Material Icons';
    right: 25rem;
    top: 12rem;
    width: 20rem;
    height: 20rem;
    background-size: 100%;
    transition: all 0.5s;
    transform: scale(1);
    color: red;
}

/* ── Access Type Toggle ────────────────────── */
.access-type-label .access-type-info-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    opacity: 0.5;
    cursor: help;
    outline: none;
    pointer-events: auto;
}

.access-type-label .access-type-info-icon:hover,
.access-type-label .access-type-info-icon:focus {
    opacity: 1;
}

.access-type-label .access-type-info-icon svg {
    display: block;
    pointer-events: none;
}

.access-type-toggle {
    display: flex;
    gap: 8rem;
}

.access-type-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    font-weight: 400 !important;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 0 !important;
    text-align: center;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 6rem !important;
    border: 2rem solid rgba(255, 255, 255, 0.15);
    font-size: 14rem !important;
    height: 50rem !important;
}

.access-type-option input[type="radio"] {
    appearance: none;
    width: 20rem;
    height: 20rem;
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 0.625C15.1777 0.625 19.375 4.82233 19.375 10C19.375 15.1777 15.1777 19.375 10 19.375C4.82233 19.375 0.625 15.1777 0.625 10C0.625 4.82233 4.82233 0.625 10 0.625Z" stroke="%233CC3C2" stroke-width="1.25"/></svg>');
    background-size: contain;
}

.access-type-option .access-type-icon {
    font-size: 10rem;
    transition: color 0.25s;
    display: none;
}

.access-type-option.active {
    border: 2rem solid rgba(60, 194, 192, 0.77);
    background: rgba(60, 194, 192, 0.17) !important;
}

.access-type-option:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* ── VNF Note ──────────────────────────────── */
.vnf-note {
    font-size: 14rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 20rem 0 0rem;
}

/* ── VNF size: discrete cores slider (equal tick spacing, non-linear values) ─
        Visual polish (tooltip/track): .connection-form .vnf-size-slider-wrap uses padding-top: 0;
        .vnf-size-slider-value uses top: -30rem; track is 12rem with 24rem thumb (see --vnf-thumb-rem for JS alignment). */
.vnf-size-label {
    display: block;
    margin-bottom: 12rem;
    color: #fff;
    font-size: 14rem;
    font-weight: 400;
}

.connection-form .vnf-size-slider-wrap {
    position: relative;
    padding-top: 0rem;
    margin-bottom: 4rem;
}

.vnf-size-slider-value {
    position: absolute;
    top: -30rem;
    left: 50%;
    transform: translateX(-50%);
    min-width: 36rem;
    padding: 4rem 10rem;
    border-radius: 4rem;
    border: 1rem solid rgba(255, 255, 255, 0.35);
    background: rgba(30, 32, 36, 0.95);
    color: #fff;
    font-size: 14rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    pointer-events: none;
}

.vnf-size-range {
    --vnf-fill: 50%;
    /* Must match ::-webkit-slider-thumb / ::-moz-range-thumb width (rem); used by JS for tooltip/gradient inset math */
    --vnf-thumb-rem: 24;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 50rem;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.vnf-size-range:focus {
    outline: none;
}

.vnf-size-range:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 4rem rgba(60, 195, 194, 0.45);
}

.vnf-size-range:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 4rem rgba(60, 195, 194, 0.45);
}

.vnf-size-range::-webkit-slider-runnable-track {
    height: 12rem;
    border-radius: 6rem;
    background: linear-gradient(90deg,
            rgb(60 194 192 / 19%) 0%,
            rgb(60 194 192) var(--vnf-fill),
            #3a3d42 var(--vnf-fill),
            #3a3d42 100%);
}

.vnf-size-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: calc(var(--vnf-thumb-rem) * 1rem);
    height: calc(var(--vnf-thumb-rem) * 1rem);
    margin-top: -5rem;
    border-radius: 50%;
    border: 2rem solid #fff;
    background: linear-gradient(145deg, #4fd6d5 0%, #2e9698 100%);
    box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.35);
}

.vnf-size-range::-moz-range-track {
    height: 12rem;
    border-radius: 4rem;

    background: #3a3d42;
}

.vnf-size-range::-moz-range-progress {
    height: 12rem;
    border-radius: 6rem;
    background: linear-gradient(90deg, #3cc3c2 0%, #2e9698 100%);
}

.vnf-size-range::-moz-range-thumb {
    width: calc(var(--vnf-thumb-rem) * 1rem);
    height: calc(var(--vnf-thumb-rem) * 1rem);
    border: 2rem solid #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, #4fd6d5 0%, #2e9698 100%);
    box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.35);
}

.vnf-size-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 10rem;
}

.vnf-size-ticks span {
    flex: 0 0 auto;
    min-width: 2ch;
    text-align: center;
    font-size: 13rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

/* ── Connection sidebar header: Step 2 actions next to modal title ────────── */
.connection-header-step2-actions {
    display: flex;
    align-items: center;
    gap: 10rem;
    flex-shrink: 0;
}

.reset-csp-icon {
    display: block;
    transform-origin: 50% 50%;
}

.reset-csp-icon.is-rotating {
    animation: reset-csp-icon-spin 0.55s ease-in-out;
}

@keyframes reset-csp-icon-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-icon-sm {
    width: 50rem;
    height: 50rem;
    padding: 0;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mcc-primary);
    background: transparent;
    font-size: 14rem;
    line-height: 1;
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
    box-sizing: border-box;
    border-radius: var(--mcc-radius-xs);
    border: 1rem solid rgba(60, 194, 192, 0.50);
}

.step2-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.btn-icon-sm:hover {
    background: rgba(var(--mcc-primary-rgb), 0.08);
    color: var(--mcc-primary);
    border-color: rgba(var(--mcc-primary-rgb), 1);
}

.btn-icon-add {
    background: rgba(var(--mcc-primary-rgb), 0.14);
    border-color: #2E9698;
    background: linear-gradient(12deg, rgba(60, 195, 194, 0.08) 8.98%, rgba(60, 195, 194, 0.18) 91.65%);
}

.btn-icon-add:hover {
    background: rgba(var(--mcc-primary-rgb), 0.22);
}

.csp-empty-state {
    min-height: 400rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 30, 30, 0.25);
    border-radius: 6rem;
    border: 1.5rem dashed #2E9698;
    background: linear-gradient(12deg, rgba(60, 195, 194, 0.08) 8.98%, rgba(60, 195, 194, 0.18) 91.65%);
    position: relative;
}

.csp-empty-add-btn {
    background: none;
    border: none;
    font-size: 16rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6rem;
    color: #3CC1C0;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    text-decoration: none !important;
}

.csp-empty-add-btn:hover {
    text-decoration: underline;
}

.csp-empty-plus {
    font-size: 18rem;
    font-weight: bold;
}

.csp-list-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.csp-list-row {
    padding: 12rem 10rem;
    border-bottom: 1rem solid rgba(255, 255, 255, 0.08);
}

.csp-list-row:last-child {
    border-bottom: none;
}

.csp-list-label {
    color: #FFF;
    font-size: 16rem;
    font-weight: 500;
}

.csp-list-actions {
    display: flex;
    gap: 8rem;
}

.btn-icon-xs {
    width: 36rem;
    height: 36rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all .2s;
    border-radius: 4rem;
    border: 1rem solid rgba(60, 194, 192, 0.20);
    background: rgba(60, 194, 192, 0.10);
}

.csp-edit-btn:hover {
    border-color: rgb(60 194 192);
}

.csp-delete-btn {
    border: 1rem solid rgba(245, 74, 74, 0.20);
    background: rgba(245, 74, 74, 0.10);
}

.csp-delete-btn:hover {
    border-color: rgb(245 74 74);
    background: rgba(255, 68, 68, 0.1) !important;
}

/* ── CSP Modal Overlay ────────────── */
.csp-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    background: rgba(5, 15, 25, 0.75) !important;
    backdrop-filter: blur(8rem);
    -webkit-backdrop-filter: blur(8rem);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20rem;
    margin: 0 !important;
}

.csp-modal-dialog {
    width: 100%;
    max-width: 570rem;
    max-height: 90dvh;
    overflow-y: auto;
    position: relative;
    border-radius: 12rem;
    border: 1rem solid #3CC2C0;
    background: linear-gradient(132deg, rgba(0, 124, 122, 0.03) 4.59%, rgba(0, 53, 52, 0.42) 98.6%);
    backdrop-filter: blur(25px);
}

.csp-modal-title {
    color: #fff;
    font-size: 20rem;
    font-weight: 500;
}

.csp-modal-dialog .form-group {
    margin-bottom: 14rem;
}

.csp-modal-dialog label {
    /* color: rgba(255, 255, 255, 0.5); */
    /* font-size: 12rem; */
    margin-bottom: 4rem;
}

.csp-modal-dialog .form-control {
    background: rgba(0, 30, 35, 0.6);
    border: 1rem solid rgba(0, 255, 200, 0.15);
    color: #fff;
    border-radius: 6rem;
    font-size: 14rem;
    height: 38rem;
}

.csp-modal-dialog .form-control:focus {
    border-color: #00ffc8;
    box-shadow: 0 0 0 2rem rgba(0, 255, 200, 0.1);
}

.csp-modal-footer {
    /* margin-top: 20rem; */
    padding: 30rem;
    position: relative;
}

.nat-stepper .btn-icon-sm {
    width: 38rem;
    height: 48rem;
    flex-shrink: 0;
    position: absolute;
    border: none;
    font-size: 0px;
    background-size: 20rem;
    background-repeat: no-repeat;
    width: 70rem;
    background-position: center;
    background-color: rgba(60, 194, 192, 0.08);
    border-radius: 0;
}

.nat-stepper .form-control,
.nat-stepper .connection-nat-input {
    -moz-appearance: textfield;
    text-align: center;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

.nat-stepper .form-control::-webkit-outer-spin-button,
.nat-stepper .form-control::-webkit-inner-spin-button,
.nat-stepper .connection-nat-input::-webkit-outer-spin-button,
.nat-stepper .connection-nat-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.nat-stepper .connection-nat-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.box_lft_fltr {
    /* border-bottom: 1rem solid #E9E9E9; */
    padding: 10rem 0 10rem 0;
}

.country-list, .region-list {
    border-bottom: 1rem solid #E9E9E9;
    padding: 0rem 0;
}

.map-ftr-div {
    position: absolute;
    right: 440rem;
    top: 78rem;
    z-index: 1;
    background-color: #ffffff;
    transition: all 0.3s;
}

.map-ftr-div.active {
    position: absolute;
    right: 60rem;
}

button#sidebarCollapse {
    width: 100% !important;
    display: flex;
    color: #333333;
    font-family: var(--mcc-font-family) !important;
    font-size: 15rem;
    font-weight: 500;
    background-color: #ffffff;
    padding: 8rem 15rem;
    border: none !important;
    height: auto !important;
    align-items: center;
    border-radius: 6rem !important;
}

img.ftr-icon {
    margin-top: 0 !important;
    padding-right: 8rem;
    width: 27rem;
}

li.nav-item.active {
    list-style: none;
}

.hide-second-nav {
    display: none;
}

.cb-div {
    border-bottom: 1rem solid #E9E9E9;
}

.csp-logo {
    text-align: left;
    padding: 10rem 10rem 0;
}

.csp-logo img {
    width: 80rem;
    padding-right: 20rem;
    padding-bottom: 10rem;
}

.sidebar-close {
    display: none;
}

/*** css updates on 26/09/2024***/
/* ul#level1_e95c23f7-53c2-11ef-aa14-508140747def {
     display: none;
     } */
.cb-div:nth-child(2) {
    display: none !important;
}

.cb-div:nth-child(3) {
    display: none !important;
}

/*** css code to hide accordian**/
.card {
    display: none;
    /* Hide all cards by default */
}

.card {
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    padding: 0 !important;
    border: none !important;
    border-radius: 8rem !important;
    background: rgba(255, 255, 255, 0.10) !important;
}

.map-ftr-div {
    border-radius: 4rem;
}

/******************* new css code *******************/
.gm-style .gm-style-iw-d .accordion {
    padding: 20rem;
    overflow: auto;
    max-height: 400rem;
    overflow: auto;
}

.gm-style .gm-style-iw-d .accordion .card+.card {
    margin-top: 16rem;
}

.gm-style .gm-style-iw-d>div {
    height: 100%;
}

.accordion>.card .card-header:not(.collapsed)::before {
    display: block;
}

.accordion>.card .card-header::before {
    content: "";
    width: calc(100% - 32rem);
    background: #fff;
    height: 1rem;
    opacity: .1;
    left: 16rem;
    bottom: 0;
    position: absolute;
    display: none;
}

.accordion>.card .card-header:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M18 15L12 9L6 15" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 24rem;
    height: 24rem;
    right: 16rem;
    top: 10rem;
}

.accordion>.card .card-header::after {
    width: 24rem;
    height: 24rem;
    right: 16rem;
    top: 16rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M6 9L12 15L18 9" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.csp-logo {
    display: flex;
    flex-wrap: wrap;
    gap: 10rem;
    padding: 0;
}

.csp-logo .csp-logo-container {
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.csp-logo .csp-logo-container img {
    width: 92px;
    padding: 0;
    max-height: none;
    height: auto;
    object-fit: contain;
}

.pop_up {
    background-color: #ECECEC;
}

.compare-cost-btn {
    position: fixed;
    right: 60rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    font-size: 20rem;
    bottom: 48rem;
    z-index: 1050;
    color: #fff;
    outline: none !important;
    min-height: 64rem;
    padding: 16rem 20rem;
    font-weight: 500;
    border-radius: 12rem;
    border: 2rem solid #2E9698;
    background: linear-gradient(270deg, rgba(60, 195, 194, 0.81) 0%, rgba(60, 195, 194, 0.2) 100%);
    background-size: 200% 100%;
    background-position: left center;
    box-shadow: 0 12rem 30rem rgba(0, 0, 0, 0.25);
    transition: background-position 0.5s ease, transform 0.2s ease;
}


.compare-cost-btn:hover {
    color: #fff;
    background-position: right center;
    transform: translateY(-2rem);
}

@media (max-width: 767.98px) {
    .compare-cost-btn {
        right: 16rem;
        bottom: 16rem;
        width: calc(100% - 32rem);
        padding: 12rem 18rem;
    }

    .mcc-card {
        left: 16rem;
        right: 16rem;
        bottom: 92rem;
        max-width: none;
        width: auto;
    }

    .sam-pop-outer {
        width: min(360rem, calc(100vw - 24rem));
        min-width: min(360rem, calc(100vw - 24rem));
    }
}

body.connection-sidebar-open:not(.connection-sidebar-minimized) #openConnectionSidebar {
    display: none;
}

/* Hide landing card on results step so map routes are not covered */
body.connection-sidebar-results-visible:not(.connection-sidebar-minimized) .mcc-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* De-emphasize SAM markers while the calculator panel is open (not when minimized) */
body.connection-sidebar-open:not(.connection-sidebar-minimized) .sam-map-marker {
    filter: blur(2px);
    -webkit-filter: blur(2px);
    opacity: 0.72;
    transition: filter 0.35s ease, opacity 0.35s ease, -webkit-filter 0.35s ease;
}

body.connection-sidebar-open:not(.connection-sidebar-minimized) .sam-map-marker-pin-wrap,
body.connection-sidebar-open:not(.connection-sidebar-minimized) .sam-map-marker-label,
body.connection-sidebar-open:not(.connection-sidebar-minimized) .sam-map-marker-leader {
    pointer-events: none;
}

.modal.modal-right .modal-dialog {
    position: fixed;
    margin: 0;
    right: 0;
    top: 0;
    height: 100%;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease-out;
    max-width: 600rem;
    width: 100%;
}

.modal.modal-right.show .modal-dialog {
    transform: translate3d(0, 0, 0);
}

.modal.modal-right .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, #05263A 0%, #031A28 100%);
    color: #E8F2FF;
    display: flex;
    flex-direction: column;
}

.modal.modal-right .modal-header {
    border-bottom: none;
    padding: 28rem 28rem 8rem;
}

.modal.modal-right .modal-title {
    font-size: 20rem;
    font-weight: 600;
    color: #FFFFFF;
}

.modal.modal-right .close {
    color: #7FA4C2;
    opacity: 1;
}

.modal.modal-right .modal-body {
    padding: 0 28rem 24rem;
    overflow-y: auto;
}

.modal.modal-right .modal-footer {
    border-top: none;
    padding: 0 28rem 32rem 28rem;
}

/* Connection Sidebar Styles
        Step classes (set in goToStep on #connectionSidebar): .connection-sidebar--step-1 … --step-4
        Override width per step, e.g.:
        .connection-sidebar.connection-sidebar--step-2 { max-width: 720rem; }
     */
.connection-sidebar {
    position: fixed;
    top: 100rem;
    right: 15rem;
    max-height: calc(100% - 130rem);
    overflow-y: auto;
    width: 100%;
    max-width: 660rem;
    z-index: 1101;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s ease-out;
    border-radius: 12rem;
    /* border: 1rem solid #3CC2C0; */
    backdrop-filter: blur(200px);
    background: linear-gradient(159deg, rgba(60, 194, 192, 0.10) 2.68%, rgba(23, 71, 78, 0.10) 99.35%);
}

.connection-sidebar.show {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.connection-sidebar.show.connection-sidebar--minimized {
    transform: translate3d(calc(100% + 20rem), 0, 0);
    pointer-events: none;
}

.connection-sidebar-header-actions {
    position: absolute;
    top: 20rem;
    right: 20rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10rem;
}

.connection-sidebar--minimized+.connection-sidebar-restore,
.connection-sidebar-restore {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 1102;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8rem;
    padding: 14rem 12rem 14rem 16rem;
    border: 1rem solid rgba(60, 194, 192, 0.55);
    border-right: none;
    border-radius: 10rem 0 0 10rem;
    background: linear-gradient(135deg, rgba(12, 37, 36, 0.96) 0%, rgba(7, 22, 22, 0.96) 100%);
    color: #ffffff;
    font-size: 13rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: -4rem 0 18rem rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease, padding-right 0.2s ease;
}

.connection-sidebar-restore:hover {
    background: linear-gradient(135deg, rgba(18, 52, 51, 0.98) 0%, rgba(10, 30, 30, 0.98) 100%);
    padding-right: 16rem;
}

.connection-sidebar-restore__icon {
    flex-shrink: 0;
}

.connection-sidebar-restore__text {
    white-space: nowrap;
}

/* Tooltips (Bootstrap 4 — container: body) — above sidebar; themed to match connection UI */
.tooltip {
    z-index: 12000;
    opacity: 1;
}

.tooltip .tooltip-inner {
    /* width: same rem scale as layout (280rem ≈ 280px); old 18rem capped at ~18px → one char per line */
    max-width: min(280rem, 90vw);
    min-width: 0;
    padding: 10rem 14rem;
    margin: 0;
    font-family: var(--mcc-font, 'Gotham Pro', 'Gotham', 'Segoe UI', sans-serif);
    font-size: 13rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: rgba(232, 242, 255, 1);
    text-align: left;
    word-break: normal;
    white-space: normal;
    background-color: rgba(4, 10, 14, 0.96);
    border: 1rem solid rgba(60, 194, 192, 0.42);
    border-radius: 8rem;
    box-shadow:
        0 0 0 1rem rgba(255, 255, 255, 0.06) inset,
        0 6rem 20rem rgba(0, 0, 0, 0.45);
}

/* Arrow tint to match tooltip shell */
.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^='top'] .arrow::before {
    border-top-color: rgba(4, 10, 14, 0.96);
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^='right'] .arrow::before {
    border-right-color: rgba(4, 10, 14, 0.96);
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^='bottom'] .arrow::before {
    border-bottom-color: rgba(4, 10, 14, 0.96);
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^='left'] .arrow::before {
    border-left-color: rgba(4, 10, 14, 0.96);
}

.connection-sidebar-content {
    height: 100%;
    color: #E8F2FF;
    display: flex;
    flex-direction: column;
    border-radius: var(--mcc-radius);
    backdrop-filter: blur(200px);
    position: relative;
    background-image: linear-gradient(135deg, #0c2524 0%, #071616 30%, #071616 60%, #031011 100%);
}

.connection-sidebar-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--mcc-radius);
    padding: 2rem;
    background: linear-gradient(135deg, #3CC2C0 0%, #3cc2c0a3 30%, rgb(60 194 192 / 38%) 60%, rgb(60 194 192 / 19%) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.connection-sidebar-header {
    position: relative;
    /* border-bottom: 1rem solid rgba(255, 255, 255, 0.08); */
    padding: 30rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.connection-sidebar-header-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20rem;
    width: 100%;
    /* flex-wrap: wrap; */
}

.connection-sidebar-head-text {
    /* flex: 1 1 auto; */
    min-width: 0;
    padding-right: 12rem;
}

.connection-sidebar--step-1 .connection-sidebar-head-text,
.connection-sidebar--step-2 .connection-sidebar-head-text {
    padding-right: 190rem;
}

.connection-sidebar--step-3 .connection-sidebar-head-text {
    padding-right: 70rem;
}

.connection-sidebar-title {
    font-size: 20rem;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 14rem 0;
}

.connection-sidebar-header .close {
    position: static;
    top: auto;
    right: auto;
    z-index: 2;
    cursor: pointer;
    opacity: 0.85;
    background: transparent;
    width: 19rem;
    height: 28rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><path d="M21 7L7 21" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M7 7L21 21" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: center;
    border: none;
    padding: 0;
    background-repeat: no-repeat;
    background-size: contain !important;
    display: none;
}

.connection-sidebar-header .close span[aria-hidden] {
    display: none;
}

.connection-sidebar-body {
    padding: 0 30rem 30rem;
    overflow-y: auto;
    flex: 1;
}

.connection-sidebar-footer {
    border-top: none;
    padding: 0rem 30rem 30rem 30rem;
    position: relative;
}


.connection-subtitle {
    color: rgb(255 255 255 / 50%);
    font-size: 14rem;
    /* line-height: 1.4; */
    margin-bottom: 0rem;
}

.connection-form {
    /* margin-top: 20rem; */
    padding-top: 30rem;
    border-top: 1rem solid rgb(255 255 255 / 30%);
}

.connection-form .form-group label {
    color: rgb(255 255 255 / 70%);
    font-size: 14rem;
    font-weight: 300;
    padding: 0;
    line-height: normal;
    margin-bottom: 5rem !important;
}

.connection-form .form-control, .csp-accordion .card-body .form-control {
    color: #fff;
    padding: 7rem 18rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6rem !important;
    font-size: 14rem;
    height: 50rem !important;
    border: 2rem solid rgba(60, 194, 192, 0.37);
}

.connection-form .form-control option, .csp-accordion .card-body select.form-control option {
    color: #05263A;
}

.btn-calculation {
    padding: 14rem 20rem;
    font-weight: 400;
    letter-spacing: 0.3rem;
    color: #fff;
    width: 100%;
    font-size: 16rem;
    border-radius: 6rem;
    border: 2rem solid #2E9698;
    gap: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease;
    background-image: linear-gradient(270deg, rgba(60, 195, 194, 0.81) 0%, rgb(60 195 194 / 35%) 20%, rgba(60, 195, 194, 0.20) 50%, rgb(60 195 194 / 35%) 70%, rgba(60, 195, 194, 0.81) 100%);
}

.btn-calculation:hover {
    color: #fff;
    background-position: right center;
}

/* Step 1 compact layout: keep full direct-connect form visible without scrolling */
.connection-sidebar.connection-sidebar--step-1 {
    top: 100rem;
    max-height: calc(100dvh - 95rem);
}

.connection-sidebar.connection-sidebar--step-1 .connection-sidebar-header {
    padding: 22rem 24rem 18rem;
}

.connection-sidebar.connection-sidebar--step-1 .connection-sidebar-title {
    font-size: 18rem;
    margin: 0 0 8rem 0;
}

.connection-sidebar.connection-sidebar--step-1 .connection-subtitle {
    font-size: 13rem;
    line-height: 1.3;
}

.connection-sidebar.connection-sidebar--step-1 .connection-sidebar-body {
    padding: 0 24rem 18rem;
}

.connection-sidebar.connection-sidebar--step-1 .connection-form {
    padding-top: 18rem;
}

.connection-sidebar.connection-sidebar--step-1 .connection-form .form-group {
    margin-bottom: 12rem;
}

.connection-sidebar.connection-sidebar--step-1 .connection-form .form-group label {
    font-size: 13rem;
    margin-bottom: 4rem !important;
}

.connection-sidebar.connection-sidebar--step-1 .connection-form .form-control {
    height: 44rem !important;
    padding: 6rem 14rem;
    font-size: 13rem;
}

.connection-sidebar.connection-sidebar--step-1 .connection-calc-input {
    min-height: 44rem;
}

.connection-sidebar.connection-sidebar--step-1 .connection-calc-input .connection-calc-input-field {
    padding: 10rem 12rem;
    font-size: 13rem;
}

.connection-sidebar.connection-sidebar--step-1 .connection-sidebar-footer {
    padding: 0rem 24rem 20rem 24rem;
}

.connection-sidebar.connection-sidebar--step-1 .btn-calculation {
    padding: 11rem 16rem;
    font-size: 15rem;
}

.connection-sidebar.connection-sidebar--step-1 #vnfNoteGroup .vnf-note {
    font-size: 12rem;
    padding-top: 12rem;
}

.csp-accordion .card {
    display: block !important;
    margin-bottom: 20rem;
    overflow: hidden;
    border-radius: 8rem !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    padding: 16rem;
    position: relative;
}

.csp-accordion .card-header {
    /* background: rgba(10, 46, 66, 0.95); */
    border: none;
    padding: 16rem;
    cursor: pointer;
}

.csp-accordion .card-header h6 {
    letter-spacing: 0.4rem;
    font-weight: 500;
    color: #fff;
}

.csp-accordion .card-header i {
    color: #7FA4C2;
    transition: transform 0.2s ease;
}

.csp-accordion .card-header .fa.rotated {
    transform: rotate(180deg);
}

.csp-accordion .card-body {
    padding: 16rem 16rem 5rem 16rem;
    position: relative;
}

.add-csp-btn {
    color: #3CC1C0;
    padding: 12rem 18rem;
    font-weight: 500;
    border-radius: 6rem;
    border: 1rem dashed rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.04);
}

.add-csp-btn:hover {
    color: #3CC1C0;
    background: rgb(89 89 89 / 16%);
    border-color: #3CC1C0;
}

.btn-outline-secondary {
    color: #fff;
    font-weight: 400;
    padding: 14rem 20rem;
    background: rgba(255, 255, 255, 0.04);
    font-size: 16rem;
    border-radius: 6rem;
    border: 2rem solid rgba(60, 194, 192, 0.60);
    gap: 8rem;
}

.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active {
    background: rgba(60, 194, 192, 0.1) !important;
    border-color: rgba(60, 194, 192, 0.60) !important;
}

label.access-type-label {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.delete-csp {
    color: #F07B7B;
    cursor: pointer;
    font-size: 16rem;
}

.delete-csp:hover {
    color: #ff9b9b;
}

.step-pane {
    display: block;
}


.analysis-title {
    font-size: 18rem;
    font-weight: 600;
    margin-bottom: 6rem;
}

.analysis-subtitle {
    color: #7FA4C2;
    font-size: 13rem;
    margin-bottom: 24rem;
}

.analysis-form:not(.floating-label-form) .form-group label {
    color: #9CB8D8;
    font-size: 13rem;
    font-weight: 500;
}

.analysis-form .form-control {
    background: rgba(14, 51, 74, 0.85);
    border: 1rem solid rgba(84, 127, 154, 0.6);
    border-radius: 6rem;
    color: #E8F2FF;
    padding: 10rem 12rem;
}

.analysis-form .form-control::placeholder {
    color: rgba(156, 184, 216, 0.65);
}

.analysis-form .form-control:focus {
    background: rgba(14, 51, 74, 0.95);
    box-shadow: 0 0 0 0.1rem rgba(11, 111, 177, 0.35);
    border-color: #0B6FB1;
    color: #E8F2FF;
}

.analysis-form .custom-control-label {
    color: rgba(156, 184, 216, 0.85);
    font-size: 12rem;
    line-height: 1.5;
}

.analysis-form .custom-control-input:checked~.custom-control-label::before {
    background-color: #0AA6A6;
    border-color: #0AA6A6;
}

@media (max-width: 575.98px) {
    .analysis-form .form-row>[class^="col-"] {
        margin-bottom: 16rem;
    }
}

.report-pane {
    padding: 20rem;
    border-radius: 8rem;
    position: relative;
    background: linear-gradient(180deg, rgba(60, 194, 192, 0.10) 0%, rgba(60, 194, 192, 0.02) 100%);
}

.report-pane p {
    color: #9CB8D8;
    line-height: 1.6;
}

.report-placeholder {
    border: 1rem dashed rgba(84, 127, 154, 0.45);
    border-radius: 12rem;
    padding: 18rem;
    margin-top: 16rem;
    color: #7FA4C2;
    text-align: center;
}

.pop-ttl .fa.fa-map-marker {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none"><mask id="mask0_33_18042" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="25" height="25"><rect width="25" height="25" fill="white"/></mask><g mask="url(%23mask0_33_18042)"><path d="M12.4999 12.5002C13.0729 12.5002 13.5633 12.2962 13.9713 11.8882C14.3793 11.4802 14.5833 10.9897 14.5833 10.4168C14.5833 9.84391 14.3793 9.35346 13.9713 8.94548C13.5633 8.53749 13.0729 8.3335 12.4999 8.3335C11.927 8.3335 11.4366 8.53749 11.0286 8.94548C10.6206 9.35346 10.4166 9.84391 10.4166 10.4168C10.4166 10.9897 10.6206 11.4802 11.0286 11.8882C11.4366 12.2962 11.927 12.5002 12.4999 12.5002ZM12.4999 22.9168C9.7048 20.5384 7.61712 18.3292 6.23692 16.2892C4.85671 14.2493 4.1666 12.3613 4.1666 10.6252C4.1666 8.021 5.00428 5.94634 6.67962 4.4012C8.35497 2.85607 10.2951 2.0835 12.4999 2.0835C14.7048 2.0835 16.6449 2.85607 18.3202 4.4012C19.9956 5.94634 20.8333 8.021 20.8333 10.6252C20.8333 12.3613 20.1432 14.2493 18.763 16.2892C17.3827 18.3292 15.2951 20.5384 12.4999 22.9168Z" fill="white"/></g></svg>');
    width: 20rem;
    height: 20rem;
    background-size: contain;
}

.pop-ttl .fa.fa-map-marker::before {
    display: none;
}

.pop-ttl {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.pop-ttl b {
    font-weight: 500;
}

button.gm-control-active.gm-fullscreen-control {
    display: none;
}

.connection-sidebar:not(.show) {
    right: -100rem;
}

.connection-form select.form-control, .csp-accordion .card-body select.form-control {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none"><path d="M7.5 11.25L15 18.75L22.5 11.25" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    appearance: none;
    background-repeat: no-repeat;
    background-position: calc(100% - 10rem) 50%;
    background-size: 26rem;
    padding-right: 40rem;
}

.connection-form select.form-control option, .csp-accordion .card-body select.form-control option {
    background: #2a2a2a;
    color: #ffffff;
    padding: 12rem 18rem;
    font-size: 16rem;
}

.connection-form select.form-control option:hover,
.csp-accordion .card-body select.form-control option:hover,
.connection-form select.form-control option:checked,
.csp-accordion .card-body select.form-control option:checked {
    background: #2d7c82 !important;
}

.connection-form .form-control:focus, .csp-accordion .card-body .form-control:focus,
.connection-form .form-control:hover, .csp-accordion .card-body .form-control:hover,
.connection-form .form-control:active, .csp-accordion .card-body .form-control:active {
    border-color: rgba(60, 194, 192, 0.77);
    background-color: rgba(60, 194, 192, 0.17);
}

.csp-accordion .card-body::before {
    content: "";
    height: 1rem;
    width: calc(100% - 32rem);
    background: #fff;
    opacity: .3;
    position: absolute;
    left: 16rem;
    top: 0;
}

.csp-accordion .card-body label {
    color: rgb(255 255 255 / 70%);
    font-size: 14rem;
    font-weight: 500;
    padding: 0;
}

.csp-accordion .card-header::after,
.csp-accordion .card-header::before {
    display: none;
}

.csp-accordion .card-header .accordion-header-title {
    gap: 5rem;
}

.csp-accordion .card-header .accordion-header-title .fa-chevron-down, .cost-breakdown-header .fa-chevron-down, .collapse-button .fa-chevron-down {
    width: 24rem;
    height: 24rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M17 12L7 20L7 4L17 12Z" fill="white"/></svg>');
    background-size: contain;
    background-position: center;
}

.csp-accordion .card-header .accordion-header-title .fa-chevron-down::before, .csp-accordion .card-header .fa-trash::before, .cost-breakdown-header .fa-chevron-down::before, .collapse-button .fa-chevron-down::before {
    display: none;
}

.csp-accordion .card-header .fa-trash {
    background-image: url('data:image/svg+xml,<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 10V8C12 7.46957 12.2107 6.96086 12.5858 6.58579C12.9609 6.21071 13.4696 6 14 6H18C18.5304 6 19.0391 6.21071 19.4142 6.58579C19.7893 6.96086 20 7.46957 20 8V10" stroke="%23F54A4A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M7 10H25" stroke="%23F54A4A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M23 10V24C23 24.5304 22.7893 25.0391 22.4142 25.4142C22.0391 25.7893 21.5304 26 21 26H11C10.4696 26 9.96086 25.7893 9.58579 25.4142C9.21071 25.0391 9 24.5304 9 24V10" stroke="%23F54A4A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 26rem;
    height: 26rem;
    background-size: contain;
}

.csp-accordion .card-header:not(.collapsed) .accordion-header-title .fa-chevron-down, .cost-breakdown-header:not(.collapsed) .fa-chevron-down, .collapse-button:not(.collapsed) .fa-chevron-down {
    transform: rotate(90deg);
}

.collapse-button {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    justify-content: space-between;
    text-align: left;
}

span.egress-value {
    font-size: 14rem;
    font-weight: 500;
}

/* Range Input Styling */
.csp-egress-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 7rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10rem;
    outline: none;
    cursor: pointer;
    margin: 20rem 0;
}

/* Track - Firefox */
.csp-egress-range::-moz-range-track {
    height: 6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10rem;
}

/* Track - Webkit */
.csp-egress-range::-webkit-slider-runnable-track {
    height: 6rem;
    background: transparent;
    border-radius: 10rem;
}

/* Thumb - Webkit (Chrome, Safari, Edge) */
.csp-egress-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25rem;
    height: 25rem;
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    border: 3rem solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2rem 8rem rgba(45, 212, 191, 0.4);
    transition: all 0.2s ease;
    margin-top: -10rem;
}

/* Thumb - Firefox */
.csp-egress-range::-moz-range-thumb {
    width: 25rem;
    height: 25rem;
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    border: 4rem solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2rem 8rem rgba(45, 212, 191, 0.4);
    transition: all 0.2s ease;
}

/* Hover Effects */
.csp-egress-range::-webkit-slider-thumb:hover {
    box-shadow: 0 4rem 12rem rgba(45, 212, 191, 0.6);
    transform: scale(1.1);
}

.csp-egress-range::-moz-range-thumb:hover {
    box-shadow: 0 4rem 12rem rgba(45, 212, 191, 0.6);
    transform: scale(1.1);
}

/* Active/Dragging State */
.csp-egress-range:active::-webkit-slider-thumb {
    box-shadow: 0 2rem 16rem rgba(45, 212, 191, 0.8);
    transform: scale(1.05);
}

.csp-egress-range:active::-moz-range-thumb {
    box-shadow: 0 2rem 16rem rgba(45, 212, 191, 0.8);
    transform: scale(1.05);
}

span.plus-icon {
    height: 20rem;
    width: 20rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M5 12H19" stroke="%233CC1C0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 5V19" stroke="%233CC1C0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-position: center;
}

span.arrow-right {
    height: 20rem;
    width: 20rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M5 12H19" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 5L19 12L12 19" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-position: center;
}

/* Connection Analysis Results Styles */
.summary-card {
    padding: 20rem;
    border-radius: 8rem;
    background: rgba(255, 255, 255, 0.04);
    position: relative;
}

.summary-label {
    color: #fff;
    font-size: 18rem;
    font-weight: 500;
    margin-bottom: 20rem;
    /* letter-spacing: 0.5rem; */
}

.summary-value {
    color: #FFF;
    font-size: 40rem;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.summary-value.summary-value--negative {
    color: #F54A4A;
}

.summary-subtext {
    font-size: 14rem;
}

.summary-value.summary-value--negative .summary-subtext {
    color: rgba(255, 255, 255, 0.75);
}

.cost-breakdown-title {
    color: #FFFFFF;
    text-transform: none;
    margin-bottom: 20rem;
    margin-top: 0;
    font-size: 18rem;
    font-weight: 500;
}

.cost-breakdown-accordion {
    /* margin-bottom: 20rem; */
}

.cost-breakdown-card {}

.cost-breakdown-header {
    padding: 15rem 0rem;
    cursor: pointer;
    transition: background 0.2s;
}

.cost-breakdown-header:hover {}

.cost-breakdown-header i {
    margin-right: 10rem;
    transition: transform 0.2s;
}

.cost-breakdown-header span {
    color: #FFFFFF;
    font-size: 16rem;
    font-weight: 500;
}

.cost-total {
    font-size: 24rem;
    font-weight: 500;
    line-height: normal;
    background: linear-gradient(90deg, #3CC3C2 0%, #66F6F5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cost-breakdown-body {
    margin-bottom: 30rem;
}

.cost-table {
    margin-bottom: 10rem;
    padding: 16rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
}

.cost-table-header {
    display: flex;
    padding-bottom: 14rem;
    border-bottom: 1rem solid rgba(255, 255, 255, 0.20);
    margin-bottom: 14rem;
    align-items: center;
}

.cost-table-row {
    display: flex;
    padding: 0rem 0;
    margin-bottom: 10rem;
}

.cost-table-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cost-table-col {
    flex: 1;
    color: #fff;
    font-size: 16rem;
    font-weight: 500;
    line-height: normal;
}

.cost-table-header .cost-table-col {
    color: #fff;
    font-size: 12rem;
    font-weight: 500;
}

.slab-rate-section {}

.slab-rate-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13rem;
    font-weight: 600;
    margin-bottom: 12rem;
}

.slab-rate-item {
    border-radius: 6rem;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 10rem;
    padding: 16rem;
}

.slab-rate-item:last-child {
    margin: 0;
}

.slab-rate-csp {
    color: #FFFFFF;
    font-size: 16rem;
    flex: 1;
    font-weight: 500;
    line-height: normal;
}

.slab-rate-details {
    display: flex;
    flex-direction: column;
    gap: 16rem;
    padding-top: 16rem;
    border-top: 1rem solid rgba(255, 255, 255, 0.20);
    margin-top: 16rem;
}

.slab-rate-row {
    display: flex;
    justify-content: space-between;
    padding: 0rem 0;
    color: #fff;
    font-size: 16rem;
    font-weight: 500;
    line-height: normal;
}

.slab-rate-row span:last-of-type {
    text-align: right;
}

.total-charges {
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
    border-radius: 6rem;
    background: rgba(60, 195, 194, 0.15);
    font-size: 16rem;
    font-weight: 500;
    padding: 16rem;
    line-height: normal;
}

.total-charges span:last-child {}

.comparison-chart {
    background: linear-gradient(180deg, rgba(60, 194, 192, 0.10) 0%, rgba(60, 194, 192, 0.02) 100%);
    position: relative;
    padding: 20rem;
    border-radius: 8rem;
}

.chart-item {
    margin-bottom: 27rem;
}

.chart-item:last-child {
    margin-bottom: 0;
}

.chart-label {
    color: #fff;
    font-size: 14rem;
    font-weight: 400;
    margin-bottom: 12rem;
}

.chart-bar-container {
    height: 42rem;
    position: relative;
    overflow: hidden;
    border-radius: 8rem;
    background: rgba(255, 255, 255, 0.04);
}

.chart-bar {
    height: 100%;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    padding: 0 12rem;
    position: relative;
    transition: width 0.3s ease;
    border-radius: 4rem;
}

.chart-bar-mcc {
    background: #3CC3C2;
}

.chart-bar-internet {
    background: #1B86E3;
}

.chart-value {
    color: #FFFFFF;
    font-size: 14rem;
    font-weight: 500;
    white-space: nowrap;
}

.report-actions {
    padding-top: 20rem;
    border-top: 1rem solid rgba(255, 255, 255, 0.15);
}

.btn-outline-light {
    color: #FFFFFF;
    border: 2rem solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    padding: 12rem 20rem;
    font-weight: 500;
    border-radius: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

span.refresh-icon {
    height: 20rem;
    width: 20rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.516 3.00947 16.931 3.99122 18.74 5.74L21 8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M21 3V8H16" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M21 12C21 14.3869 20.0518 16.6761 18.364 18.364C16.6761 20.0518 14.3869 21 12 21C9.48395 20.9905 7.06897 20.0088 5.26 18.26L3 16" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 16H3V21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-position: center;
}

span.download-icon {
    height: 20rem;
    width: 20rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12 16.929V2.92896" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M6 10.929L12 16.929L18 10.929" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M19 20.929H5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-position: center;
}

.summary-cards-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10rem;
}

.cost-table-header .text-primary.main-text, .slab-rate-csp.text-primary.main-text {
    color: #66F6F5 !important;
    font-size: 16rem;
    font-weight: 500;
}

.slab-rate-row-heading {
    display: flex;
    align-items: center;
    outline: none !important;
}

.slab-rate-row-heading .slab-rate-title {
    margin: 0;
    color: #fff;
    font-size: 12rem;
    font-weight: 500;
}

.cost-breakdown-accordion .cost-breakdown-card:not(:last-of-type) {
    border-bottom: 1rem solid rgba(255, 255, 255, 0.20);
    margin-bottom: 10rem;
    padding-bottom: 10rem;
}

/* new css code for analysis pane */

/* Floating label styles - scoped with parent class */
.floating-label-form .form-group {
    margin-bottom: 15rem;
    position: relative;
}

.floating-label-form .form-group input,
.floating-label-form .form-group select {
    width: 100%;
    padding: 24rem 0 8rem 0;
    font-size: 16rem;
    border: none;
    border-bottom: 1rem solid #C4C4C4;
    background: transparent;
    color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.floating-label-form .form-group label {
    position: absolute;
    left: 0;
    top: 24rem;
    color: #9B9B9B;
    font-size: 16rem;
    font-weight: 400;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
    padding-left: 0;
}

/* When input has focus or value */
.floating-label-form .form-group input:focus,
.floating-label-form .form-group select:focus {
    border-bottom-color: rgba(60, 195, 194, 0.65);
}

.floating-label-form .form-group input:focus~label,
.floating-label-form .form-group input:not(:placeholder-shown)~label,
.floating-label-form .form-group select:focus~label,
.floating-label-form .form-group select.has-value~label,
.floating-label-form .form-group.has-value>label,
.floating-label-form .form-group:focus-within>label,
.floating-label-form .form-group select:has(option:checked:not([value=""]))~label {
    top: 0;
    font-size: 12rem;
    color: #9B9B9B;
}

.floating-label-form .form-group.has-value>select,
.floating-label-form .form-group:focus-within>select,
.floating-label-form .form-group select.has-value {
    padding-top: 28rem;
}

.floating-label-form .form-group input::placeholder {
    color: transparent;
}

.floating-label-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' opacity='0.6' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 30rem;
    cursor: pointer;
}

.floating-label-form .form-group select:not(.has-value) {
    color: transparent;
}

.floating-label-form .form-group select.has-value {
    color: #fff;
}

.floating-label-form .form-group select option {
    background: #0d2533;
    color: #fff;
    padding: 10rem;
}

.floating-label-form .form-group.is-invalid input,
.floating-label-form .form-group.is-invalid select {
    border-bottom-color: #f87171;
}

.floating-label-form .analysis-field-hint {
    display: block;
    margin-top: 6rem;
    font-size: 12rem;
    line-height: 1.4;
    color: #f87171;
}

/* Checkbox styling */
.floating-label-form .checkbox-group {
    margin-top: 25rem;
    /* margin-bottom: 40rem; */
    display: flex;
    align-items: flex-start;
    gap: 12rem;
    position: relative;
}

.floating-label-form .checkbox-group input[type="checkbox"] {
    width: 24rem;
    height: 24rem;
    min-width: 24rem;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3Z" stroke="%23ACACAC" stroke-width="1.5"/></svg>');
    padding: 0;
    appearance: none;
    background-size: contain;
    margin: 0rem;
    top: 0;
}

.floating-label-form .checkbox-group input[type="checkbox"]:checked {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3Z" stroke="white" stroke-width="1.5"/><path d="M7 11.5L10.3333 15L17 8" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.floating-label-form .checkbox-group label {
    color: #fff;
    font-size: 12rem;
    line-height: 1.3;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.floating-label-form .checkbox-group label a {
    color: var(--mcc-primary, #3CC2C0);
    text-decoration: underline;
}

/* Submit button */
.floating-label-form .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12rem;
    padding: 18rem 40rem;
    background: #2dd4bf;
    color: #0a2138;
    border: none;
    border-radius: 8rem;
    font-size: 20rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10rem;
}

.floating-label-form .submit-btn:hover {
    background: #14b8a6;
    transform: translateX(4rem);
}

.floating-label-form .submit-btn::after {
    content: 'â†’';
    font-size: 24rem;
    transition: transform 0.3s ease;
}

.floating-label-form .submit-btn:hover::after {
    transform: translateX(4rem);
}

/* Autofill styles - prevent white background */
.floating-label-form .form-group input:-webkit-autofill,
.floating-label-form .form-group input:-webkit-autofill:hover,
.floating-label-form .form-group input:-webkit-autofill:focus,
.floating-label-form .form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30rem #0d2533 inset !important;
    -webkit-text-fill-color: #fff !important;
    border-bottom: 1rem solid rgba(255, 255, 255, 0.2) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Float label on autofill */
.floating-label-form .form-group input:-webkit-autofill~label {
    top: 0;
    font-size: 14rem;
    color: rgba(255, 255, 255, 0.6);
}

.comparison-chart::before, .csp-accordion .card::before, .summary-card::before, .report-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8rem;
    padding: 1rem;
    background: linear-gradient(to right, #3CC2C0 0%, #3CC2C0 40%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0.0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.comparison-chart.mt-4 {}

.wrapper {
    position: relative;
}

.wrapper {
    width: 100%;
    overflow-x: hidden;
    height: 100dvh;
    background: #000;
}

.wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background:
        radial-gradient(circle at 8% 16%, rgba(60, 194, 192, 0.12), rgba(0, 0, 0, 0) 28%),
        radial-gradient(circle at 95% 82%, rgba(60, 194, 192, 0.12), rgba(0, 0, 0, 0) 26%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05) 45%, rgba(0, 0, 0, 0.4));
    pointer-events: none;
    z-index: 3;
}

.map {
    z-index: 2;
    position: relative;
}

.csp-accordion .card:has(.collapse.show)::before {
    background: linear-gradient(to right, rgb(102 246 245 / 40%) 0%, rgb(102 246 245 / 40%) 40%, rgb(102 246 245 / 20%) 70%, rgba(255, 255, 255, 0.0) 100%);
}

/******************* end new css code *******************/

.gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom .gm-control-active {
    display: none !important;
}

.gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom button.gm-svpc {
    display: none !important;
}

#content {
    width: 100%;
    padding: 0;
    min-height: 100dvh;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    min-width: 100vw;
    background: #000;
}

#accordionExample .card-header {
    margin-bottom: 0;
    background-color: transparent !important;
    border-bottom: none !important;
    position: relative;
    padding: 16rem 24rem;
}

#accordionExample h2 {
    color: #fff !important;
    font-size: 16rem;
    margin: 0 !important;
    text-align: left;
    font-weight: 500 !important;
    font-family: 'Gotham';
}

#accordionExample button.btn.btn-link {
    padding: 0 !important;
    color: #fff !important;
    font-size: 16rem !important;
    font-weight: 500 !important;
    font-family: 'Gotham';
    border: none;
}

#accordionExample button.btn.btn-link span {
    display: none !important;
}

#accordionExample .card-body {
    color: #ffffff !important;
    padding: 10rem 24rem 16rem 24rem;
    background-color: transparent;
    line-height: 1.6em;
    font-size: 14rem;
    font-weight: 500 !important;
}

.gm-ui-hover-effect>span {
    background-color: #ffffff !important;
}

.gm-style .gm-style-iw {
    font-family: 'Gotham' !important;
    font-size: 12rem;
    color: #333333;
    font-weight: 300;
    line-height: 1.3em;
    max-height: unset !important;
}

.card .collapsed::before {
    content: '';
    background-image: url('../images/plus-black-icon.svg');
    position: absolute;
    font-family: 'Material Icons';
    right: 25rem;
    top: 12rem;
    width: 20rem;
    height: 20rem;
    background-size: 100%;
    transition: all 0.5s;
    transform: scale(1);
    color: red;
}

.card-header::after {
    content: '';
    background-image: url('../images/Minus-Blue-Icon.svg');
    position: absolute;
    font-family: 'Material Icons';
    right: 25rem;
    top: 12rem;
    width: 20rem;
    height: 20rem;
    background-size: 100%;
    transition: all 0.5s;
    transform: scale(1);
    color: red;
}

/* ═══════════════════════════════════════════════════════════════════════════
        MCC / IZO — shared layout & components
        Rem base: 1px on .mcc-page (px required so child rems match design); ≥1200px: :root vw (see notes at top).
        ═══════════════════════════════════════════════════════════════════════════ */

.mcc-page {
    font-size: 1px;
    font-family: var(--mcc-font);
    background: var(--mcc-dark);
    color: var(--mcc-white);
    overflow-x: hidden;
    min-height: 100dvh;
    position: relative;
}

body.mcc-page {
    background-color: var(--mcc-dark) !important;
    color: var(--mcc-white);
}

@media (min-width: 1200px) {
    :root {
        /* ~1px root at 1920px width; scales with viewport width on large screens only. */
        font-size: 0.052086vw;
    }
}

.mcc-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30rem 62rem;
    background: transparent;
    box-shadow: none;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition:
        background-color 0.3s ease,
        backdrop-filter 0.3s ease,
        -webkit-backdrop-filter 0.3s ease,
        padding 0.3s ease,
        box-shadow 0.3s ease;
}

.mcc-header.landing-header {
    position: fixed;
}

.mcc-header.mcc-header--scrolled {
    backdrop-filter: blur(14rem);
    -webkit-backdrop-filter: blur(14rem);
    background: rgba(4, 10, 14, 0.88);
    padding-block: 14rem;
    box-shadow: 0 4rem 24rem rgba(0, 0, 0, 0.35);
}

.mcc-header.mcc-header--sticky {
    position: fixed;
    backdrop-filter: blur(12rem);
    background: rgba(4, 10, 14, 0.65);
}

.mcc-header-brand a {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.mcc-header-brand img {
    height: 32rem;
    width: auto;
    max-width: min(520rem, 50vw);
    object-fit: contain;
    display: block;
}

.mcc-header-actions {
    display: flex;
    align-items: center;
    gap: 20rem;
    flex-shrink: 0;
}

.mcc-logo a {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.mcc-logo img,
.mcc-logo--tata img {
    height: 48rem;
    width: auto;
    max-width: 55rem;
    object-fit: contain;
    display: block;
}

.mcc-primary {
    color: var(--mcc-primary);
}

.mcc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    font-family: var(--mcc-font);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--mcc-transition);
    text-decoration: none;
    line-height: 1.2;
}

.mcc-btn:hover {
    text-decoration: none;
}

.mcc-btn-outline {
    position: relative;
    color: var(--mcc-white);
    padding: 16rem 20rem;
    font-size: 18rem;
    font-weight: 400;
    border-radius: 999rem;
    border: 2rem solid #2E9698;
    background: linear-gradient(12deg, rgba(60, 195, 194, 0.08) 8.98%, rgba(60, 195, 194, 0.18) 91.65%);
}

.mcc-btn-outline:hover {
    color: var(--mcc-white);
    border-color: #3CC3C2;
    background: #3CC3C2;
}

.mcc-btn-primary {
    position: relative;
    color: var(--mcc-white);
    padding: 12rem 28rem;
    font-size: 20rem;
    font-weight: 400;
    border-radius: var(--mcc-radius-pill);
    border: 2rem solid #2E9698;
    background: linear-gradient(270deg, rgba(60, 195, 194, 0.81) 0%, rgb(60 195 194 / 35%) 20%, rgba(60, 195, 194, 0.20) 50%, rgb(60 195 194 / 35%) 70%, rgba(60, 195, 194, 0.81) 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease;
}

.mcc-btn-primary:hover {
    color: var(--mcc-white);
    background-position: right center;
}

.mcc-btn-primary svg {
    transition: margin .2s;
}

.mcc-btn-primary:hover svg {
    /* margin-left: 2px; */
}

.mcc-title-lg {
    font-size: 48rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--mcc-white);
}

.mcc-title-lg .mcc-highlight {
    color: var(--mcc-primary);
    background: linear-gradient(90deg, #00FFFB 0%, rgba(0, 255, 251, 0.60) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mcc-text-body {
    font-size: 20rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 0;
    color: var(--mcc-white);
}

@keyframes mcc-slide-up {
    from {
        transform: translateY(20rem);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mcc-animate {
    transform: translateY(20rem);
    opacity: 0;
    animation: mcc-slide-up 0.5s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

.mcc-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.mcc-footer {
    text-align: center;
    padding: 24rem 48rem 0;
}

.mcc-footer p {
    font-size: 12rem;
    line-height: 1.4;
    color: var(--mcc-white, #fff);
    margin: 0;
}

.mcc-hero .mcc-footer {
    position: relative;
    z-index: 2;
    padding: 24rem 48rem 28rem;
}

.mcc-map-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 12rem 24rem 16rem;
    background: linear-gradient(180deg, rgba(4, 10, 14, 0) 0%, rgba(4, 10, 14, 0.88) 45%);
    pointer-events: none;
}

.mcc-map-footer p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 11rem;
    line-height: 1.35;
    max-width: 960rem;
    margin: 0 auto;
}

.mcc-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.mcc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(4, 10, 14, 0.78) 1%, rgba(4, 10, 14, 0.38) 9%, rgba(4, 10, 14, 0) 14%),
        linear-gradient(90deg, rgba(4, 10, 14, 0.9) 0%, rgba(4, 10, 14, 0.16) 86%);
}

.mcc-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 64rem;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    gap: 40rem;
}

.mcc-hero-text {
    display: flex;
    flex-direction: column;
    gap: 30rem;
}

.mcc-features {
    position: relative;
    z-index: 2;
    -webkit-backdrop-filter: blur(17rem);
    backdrop-filter: blur(8.300000190734863rem);
    padding: 33rem 62rem 28rem;
    background: linear-gradient(90deg, rgba(4, 10, 14, 0.05) 0%, rgba(25, 75, 74, 0.29) 100%);
}

.mcc-features-title {
    font-size: 24rem;
    font-weight: 500;
    color: var(--mcc-white);
    margin-bottom: 32rem;
    line-height: 1.4;
}

.mcc-features-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
}

.mcc-feature-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20rem;
    padding: 12rem 16rem;
    border-radius: 8rem;
}

.mcc-feature-number {
    width: 50rem;
    height: 50rem;
    border-radius: 50%;
    background: #009D9A;
    color: var(--mcc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22rem;
    font-weight: 500;
    flex-shrink: 0;
}

.mcc-feature-card h3 {
    font-size: 18rem;
    font-weight: 500;
    color: var(--mcc-white);
    margin-bottom: 8rem;
    line-height: 1.2;
}

.mcc-feature-card p {
    font-size: 14rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--mcc-white);
    margin: 0;
}

.mcc-feature-divider {
    width: 1rem;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.mcc-header.landing-header {
    position: absolute;
}

.form-group {
    margin-bottom: 16rem;
}

.connection-form .form-group {
    margin-bottom: 24rem;
}

.access-type-option.active input[type="radio"], .access-type-option input[type="radio"]:checked {
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 0.625C15.1777 0.625 19.375 4.82233 19.375 10C19.375 15.1777 15.1777 19.375 10 19.375C4.82233 19.375 0.625 15.1777 0.625 10C0.625 4.82233 4.82233 0.625 10 0.625Z" stroke="%233CC3C2" stroke-width="1.25"/><circle cx="10" cy="10" r="5.625" fill="%233CC3C2" stroke="%233CC3C2" stroke-width="1.25"/></svg>');
}

.connection-sidebar-footer .btn-outline-secondary, .csp-modal-footer .btn-outline-secondary {
    min-width: 160rem;
}

.d-flex.custom-gap {
    gap: 20rem;
}

.connection-form .form-group .access-type-option {
    margin: 0 !important;
}

.csp-modal-header {
    padding: 30rem 30rem 0rem;
}

.csp-modal-content {
    padding: 30rem;
}

.connection-form .form-control.mr-2 {
    margin-right: 10rem !important;
}

.connection-form .nat-stepper {
    position: relative;
}

.nat-stepper .btn-icon-sm#natMinusBtn {
    left: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M5 12H19" stroke="%233CC2C0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    border-right: 2rem solid rgba(255, 255, 255, 0.15);
}

.nat-stepper .btn-icon-sm#natPlusBtn {
    right: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M5 12H19" stroke="%233CC2C0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 5V19" stroke="%233CC2C0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    border-left: 2rem solid rgba(255, 255, 255, 0.15);
}

.csp-modal-footer::before {
    content: "";
    background: linear-gradient(90deg, rgb(60 194 192 / 54%) 0%, rgb(60 194 192 / 0%) 100%);
    height: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.btn-icon-add svg, .reset-csp-icon {
    max-width: 20rem;
}

.btn-icon-xs svg {
    width: auto;
    height: 20rem;
}

.connection-sidebar.connection-sidebar--step-3 {
    max-width: 850rem;
}

.mb-30rem {
    margin-bottom: 30rem;
}

.accordion>.card .card-header .btn-link::before {
    display: none;
}


.mcc-card {
    background: linear-gradient(137deg, rgba(60, 194, 192, 0.3) 9%, rgba(28, 92, 91, 0.1) 95%);
    border-radius: 20rem;
    padding: 24rem 20rem;
    max-width: 394rem;
    width: 100%;
    margin: 0;
    color: #e8f8f5;
    position: fixed;
    left: 60rem;
    z-index: 33;
    bottom: 51rem;
    backdrop-filter: blur(100rem);
    -webkit-backdrop-filter: blur(100rem);
}

.mcc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20rem;
    padding: 1rem;
    background: linear-gradient(-71deg, rgba(60, 195, 194, 0.44) 0%, rgba(60, 195, 194, 0) 39%, rgba(60, 195, 194, 1) 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mcc-card h2 {
    font-size: 20rem;
    font-weight: 350;
    color: #ffffff;
    margin: 0 0 20rem;
}

.mcc-item {
    display: flex;
    align-items: center;
    gap: 8rem;
    margin-bottom: 12rem;
}

.mcc-item:last-child {
    margin-bottom: 0;
}

.mcc-item.mcc-filter-toggle {
    user-select: none;
    border-radius: 8rem;
    padding: 4rem 6rem;
    margin-left: -6rem;
    margin-right: -6rem;
    border: 1rem solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.mcc-item.mcc-filter-toggle.is-active {
    background: rgba(60, 195, 194, 0.14);
    border-color: rgba(60, 195, 194, 0.5);
    opacity: 1;
}

.mcc-item.mcc-filter-toggle:not(.is-active) {
    opacity: 0.48;
    background: transparent;
    border-color: transparent;
}

.mcc-item.mcc-filter-toggle .mcc-filter-hit {
    display: flex;
    align-items: center;
    gap: 8rem;
    flex: 1;
    min-width: 0;
    cursor: pointer;
    border-radius: 6rem;
    padding: 2rem 4rem;
    margin: -2rem -4rem;
    transition: background 0.15s ease;
}

.mcc-item.mcc-filter-toggle .mcc-filter-hit:hover {
    background: rgba(60, 195, 194, 0.1);
}

.mcc-item.mcc-filter-toggle.is-active .mcc-filter-hit:hover {
    background: rgba(60, 195, 194, 0.18);
}

.mcc-item.mcc-filter-toggle .mcc-filter-label {
    font-size: 16rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.2;
    transition: color 0.15s ease;
}

.mcc-item.mcc-filter-toggle.is-active .mcc-filter-label {
    color: #eaffff;
    font-weight: 500;
}

.mcc-item.mcc-filter-toggle:not(.is-active) .mcc-icon {
    opacity: 0.55;
    filter: grayscale(0.4);
}

.mcc-item.mcc-filter-toggle.is-active .mcc-icon {
    opacity: 1;
    filter: none;
}

.mcc-item span {
    font-size: 16rem;
    color: #fff;
}

.pin-icon {
    width: 28rem;
    height: 28rem;
    flex-shrink: 0;
}

.mcc-item .mcc-icon.direct-icon {
    background-image: url('../images/icon/map-marker-direct.png');
}

.mcc-item .mcc-icon {
    width: 25rem;
    height: 25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

span.mcc-icon.flex-icon {
    background-image: url('../images/icon/map-marker-flex.png');
}

.mcc-item .mcc-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18rem;
    height: 18rem;
    flex-shrink: 0;
    margin-left: 2rem;
    border-radius: 50%;
    border: 1rem solid rgba(201, 254, 255, 0.6);
    background: rgba(60, 195, 194, 0.12);
    color: rgba(201, 254, 255, 0.95);
    font-size: 12rem;
    font-style: italic;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1;
    cursor: help;
    outline: none;
}

.mcc-item .mcc-info::after {
    content: attr(data-tip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 9rem);
    transform: translateX(-50%);
    width: max-content;
    max-width: 230rem;
    padding: 9rem 11rem;
    border-radius: 8rem;
    background: rgba(4, 24, 30, 0.97);
    border: 1rem solid rgba(60, 195, 194, 0.55);
    color: #eaffff;
    font-size: 12rem;
    font-style: normal;
    font-weight: 400;
    font-family: var(--mcc-font-family), 'Segoe UI', sans-serif;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
    box-shadow: 0 8rem 24rem rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
    z-index: 60;
    pointer-events: none;
}

.mcc-item .mcc-info::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: calc(100% + 3rem);
    transform: translateX(-50%);
    border: 6rem solid transparent;
    border-top-color: rgba(4, 24, 30, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
    z-index: 60;
    pointer-events: none;
}

.mcc-item .mcc-info:hover::after,
.mcc-item .mcc-info:focus::after,
.mcc-item .mcc-info:hover::before,
.mcc-item .mcc-info:focus::before {
    opacity: 1;
    visibility: visible;
}

/* SAM Interactive Map popup — Figma node 6-11082 */
.sam-pop-outer {
    width: min(496rem, calc(100vw - 32rem));
    min-width: min(496rem, calc(100vw - 32rem));
    max-width: 496rem;
    color: #fff;
    font-family: var(--mcc-font-family) !important;
    overflow: hidden;
    border-radius: 20rem;
    border: 1rem solid rgba(201, 254, 255, 0.36);
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(100rem);
    -webkit-backdrop-filter: blur(100rem);
}

.sam-pop-header {
    display: flex;
    gap: 10rem;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 94rem;
    padding: 15rem 20rem;
    border-radius: 20rem 20rem 0 0;
    border: 2rem solid #2E9698;
    background: radial-gradient(193.62% 128.56% at 9.09% 3.54%, #17474E 0%, #2C8C8F 100%);
}

.sam-pop-header-icon {
    color: #fff;
    font-size: 20rem;
    line-height: 1;
    margin-top: 2rem;
    flex-shrink: 0;
}

.sam-pop-title {
    font-size: 18rem;
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
}

.sam-pop-title b {
    font-weight: 600;
}

.sam-pop-address {
    font-size: 13rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 6rem;
    line-height: 1.45;
}

.sam-pop-body {
    display: flex;
    flex-direction: column;
    gap: 20rem;
    align-items: center;
    padding: 20rem;
    background: transparent;
}

.sam-pop-section {
    width: 100%;
    margin-bottom: 0;
    border-radius: 8rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.sam-pop-section:last-child {
    margin-bottom: 0;
}

.sam-pop-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56rem;
    padding: 16rem 24rem;
    cursor: pointer;
    position: relative;
    user-select: none;
    background: transparent;
}

.sam-pop-section-head:hover {
    background: rgba(255, 255, 255, 0.08);
}

.sam-pop-section-title {
    font-size: 16rem;
    font-weight: 350;
    color: #fff;
    line-height: 1.3;
    padding-right: 24rem;
}

.sam-pop-section-head::after {
    content: '';
    position: absolute;
    right: 14rem;
    top: 50%;
    width: 8rem;
    height: 8rem;
    border-right: 2rem solid rgba(255, 255, 255, 0.9);
    border-bottom: 2rem solid rgba(255, 255, 255, 0.9);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s ease;
    pointer-events: none;
}

.sam-pop-section-head[aria-expanded="true"]::after,
.sam-pop-section-head:not(.collapsed)::after {
    transform: translateY(-20%) rotate(-135deg);
}

.sam-pop-section-content {
    padding: 16rem 24rem;
    border-top: 1rem solid rgba(255, 255, 255, 0.08);
    background: transparent;
}

.sam-pop-list {
    padding-top: 0;
}

.sam-pop-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10rem;
    margin-bottom: 8rem;
    line-height: 1.45;
    font-size: 14rem;
    color: rgba(255, 255, 255, 0.95);
}

.sam-pop-list-item:last-child {
    margin-bottom: 0;
}

.sam-pop-csp-item {
    align-items: center;
    gap: 8rem;
}

.sam-csp-logo-sm {
    width: 48px;
    height: auto;
    max-height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.sam-pop-list-text {
    flex: 1;
}

.sam-pop-region {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.sam-bullet {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    display: inline-block;
    margin-top: 6rem;
}

.sam-pop-csp-item .sam-bullet {
    margin-top: 0;
}

.sam-pop-empty {
    padding: 10rem 0 4rem;
    font-size: 13rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

.gm-style .gm-style-iw-d .sam-pop-outer {
    padding: 0;
    overflow: visible;
}

.gm-style .gm-style-iw-c:has(.sam-pop-outer) {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    max-width: 496rem !important;
    width: auto !important;
}

.gm-style .gm-style-iw-d:has(.sam-pop-outer) {
    overflow: visible !important;
    max-height: none !important;
}

.gm-style .gm-style-iw-c:has(.sam-pop-outer) .gm-style-iw-chr {
    display: none !important;
}

/* Keep SAM popup clickable when it overlaps the fixed header */
body.sam-map-popup-open .mcc-header,
body.sam-map-popup-open #topbar {
    pointer-events: none;
}

.gm-style .gm-style-iw:has(.sam-pop-outer) {
    pointer-events: auto;
}

/* SAM map markers – direct/flex rings + leader-line city labels (Figma) */
.sam-map-marker {
    position: absolute;
    width: 0;
    height: 0;
    cursor: pointer;
    z-index: 1000;
    pointer-events: none;
}

.sam-map-marker-pin-wrap,
.sam-map-marker-label,
.sam-map-marker-leader {
    pointer-events: auto;
}

.sam-map-marker-leader {
    position: absolute;
    left: 0;
    top: 0;
    overflow: visible;
    width: 1px;
    height: 1px;
    z-index: 1;
}

.sam-map-marker-leader-line {
    fill: none;
    stroke: rgba(60, 195, 194, 0.78);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sam-map-marker-pin-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.sam-map-marker-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    transition: transform 0.15s ease;
}

.sam-map-marker--direct .sam-map-marker-pin-wrap {
    width: 13px;
    height: 13px;
}

.sam-map-marker--flex .sam-map-marker-pin-wrap {
    width: 18px;
    height: 18px;
}

.sam-map-marker--direct-flex .sam-map-marker-pin-wrap {
    width: 18px;
    height: 18px;
}

.sam-map-marker--active .sam-map-marker-icon,
.sam-map-marker:hover .sam-map-marker-icon {
    transform: scale(1.12);
}

.sam-map-marker-label {
    position: absolute;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    line-height: 15px;
    height: 15px;
    white-space: nowrap;
    font-family: var(--mcc-font-family), 'Segoe UI', sans-serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 0 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.01em;
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
}

.sam-map-marker--active {
    z-index: 9999;
}

/* Calculator route view – Figma-style endpoints + arc */
.mcc-route-endpoint {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    z-index: 4000;
    font-family: var(--mcc-font-family), 'Inter', 'Segoe UI', sans-serif;
}

.mcc-route-endpoint__body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcc-route-endpoint__pin {
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.mcc-route-endpoint__pin--premises {
    border: 1.2px solid #1b86e3;
}

.mcc-route-endpoint__pin--csp {
    border: 1.2px solid #037080;
}

.mcc-route-endpoint__label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

.mcc-route-endpoint__label--left {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
}

.mcc-route-endpoint__label--below {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
}

.mcc-route-endpoint__badge {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);
    transform: translateX(-50%);
    min-width: 76px;
    padding: 8px 12px 10px;
    border-radius: 6px;
    background: radial-gradient(circle at 2% 5%, rgba(23, 71, 78, 1) 0%, rgba(3, 113, 128, 1) 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.mcc-route-endpoint__badge::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #037080;
}

/* CSP logo beside pin so cost cards above the route arc do not cover the badge */
.mcc-route-endpoint--csp .mcc-route-endpoint__badge {
    left: calc(100% + 12px);
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.mcc-route-endpoint--csp .mcc-route-endpoint__badge::after {
    left: -7px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 7px solid #037080;
    border-left: none;
}

.mcc-route-endpoint__badge img {
    display: block;
    max-height: 22px;
    max-width: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Figma teal speech-bubble CSP markers (full PNG/SVG asset includes pointer) */
.mcc-route-endpoint__badge--figma {
    background: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
}

.mcc-route-endpoint__badge--figma::after {
    display: none;
}

.mcc-route-endpoint__badge--figma img {
    display: block;
    width: 92px;
    max-width: 92px;
    max-height: none;
    height: auto;
    object-fit: contain;
}

.mcc-route-endpoint--csp .mcc-route-endpoint__badge--figma {
    left: calc(100% + 8px);
}

.mcc-route-endpoint--premises .mcc-route-endpoint__body {
    min-width: 13px;
    min-height: 13px;
}

.mcc-route-endpoint--csp .mcc-route-endpoint__body {
    margin-top: 4px;
}

.mcc-route-inline-cost {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 3800;
    pointer-events: none;
}

.mcc-route-inline-cost.mcc-route-inline-cost--figma {
    transform: translate(-50%, -106%);
}

.mcc-route-inline-cost.mcc-route-inline-cost--below {
    transform: translate(-50%, 12%);
}

.mcc-route-inline-cost.mcc-route-inline-cost--below.mcc-route-inline-cost--figma {
    transform: translate(-50%, 14%);
}

.mcc-route-inline-cost .sam-route-hover-card {
    width: 230px;
    border-radius: 20px;
    border: 1px solid rgba(201, 254, 255, 0.5);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.mcc-route-inline-cost .sam-route-hover-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 20px 20px 0 0;
    border: 2px solid #2e9698;
    border-bottom: none;
    letter-spacing: 0;
}

.mcc-route-inline-cost .sam-route-hover-location {
    font-size: 10px;
    line-height: 1.3;
    padding: 10px 13px 0;
    min-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.mcc-route-inline-cost .sam-route-hover-grid {
    padding: 8px 13px 14px;
    align-items: start;
    background: linear-gradient(141deg, rgba(201, 254, 255, 0.12) 0%, rgba(60, 195, 194, 0.08) 100%);
}

.mcc-route-inline-cost .sam-route-hover-label {
    font-size: 10px;
    line-height: 1.2;
    min-height: 24px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.mcc-route-inline-cost .sam-route-hover-value {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0;
    font-weight: 500;
    color: #ffffff;
}

.mcc-route-inline-cost .sam-route-hover-cell {
    padding: 4px 8px 4px 0;
}

.mcc-route-inline-cost .sam-route-hover-cell:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.44);
    padding-left: 12px;
    padding-right: 0;
}

/* Smaller inline cost cards when multiple CSP routes are shown */
.mcc-route-inline-cost.mcc-route-inline-cost--compact .sam-route-hover-card {
    width: 190px;
    border-radius: 14px;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact .sam-route-hover-title {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 14px 14px 0 0;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact .sam-route-hover-grid {
    padding: 6px 10px 10px;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact .sam-route-hover-label {
    font-size: 9px;
    min-height: 20px;
    margin-bottom: 4px;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact .sam-route-hover-value {
    font-size: 14px;
    line-height: 18px;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact-multi .sam-route-hover-card {
    width: 158px;
    border-radius: 12px;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact-multi .sam-route-hover-title {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 12px 12px 0 0;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact-multi .sam-route-hover-grid {
    padding: 4px 8px 8px;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact-multi .sam-route-hover-label {
    font-size: 8px;
    min-height: 16px;
    margin-bottom: 2px;
    line-height: 1.15;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact-multi .sam-route-hover-value {
    font-size: 12px;
    line-height: 16px;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact-multi .sam-route-hover-cell {
    padding: 2px 4px 2px 0;
}

.mcc-route-inline-cost.mcc-route-inline-cost--compact-multi .sam-route-hover-cell:last-child {
    padding-left: 8px;
}

.sam-route-hover-card {
    width: 230px;
    max-width: calc(100vw - 56px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 254, 255, 0.5);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ffffff;
    font-family: var(--mcc-font-family), 'Gotham', 'Segoe UI', sans-serif;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.sam-route-hover-title {
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    border-radius: 20px 20px 0 0;
    border: 2px solid #2e9698;
    border-bottom: none;
    background: radial-gradient(circle at 9% 4%, #17474e 0%, #2c8c8f 100%);
}

.sam-route-hover-location {
    padding: 10px 13px 0;
    font-size: 10px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--mcc-font-family), 'Inter', 'Segoe UI', sans-serif;
}

.sam-route-hover-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    padding: 8px 13px 14px;
    align-items: start;
    background: linear-gradient(141deg, rgba(201, 254, 255, 0.12) 0%, rgba(60, 195, 194, 0.08) 100%);
}

.sam-route-hover-cell {
    min-width: 0;
    padding: 4px 8px 4px 0;
}

.sam-route-hover-cell:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.44);
    padding-left: 12px;
    padding-right: 0;
}

.sam-route-hover-label {
    font-size: 10px;
    line-height: 1.2;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-family: var(--mcc-font-family), 'Inter', 'Segoe UI', sans-serif;
}

.sam-route-hover-value {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-variant-numeric: tabular-nums;
    max-width: 100%;
}

.sam-route-hover-value--compact {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: -0.02em;
}

.sam-route-hover-value--compact-lg {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.03em;
}

/* Strip default Google InfoWindow shell for route hover cards */
.gm-style .gm-style-iw-c:has(.sam-route-hover-card) {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    width: auto !important;
    max-width: none !important;
}

.gm-style .gm-style-iw-d:has(.sam-route-hover-card) {
    overflow: visible !important;
    max-height: none !important;
    padding: 0 !important;
}

.gm-style .gm-style-iw-c:has(.sam-route-hover-card) .gm-style-iw-chr,
.gm-style .gm-style-iw-c:has(.sam-route-hover-card) .gm-style-iw-tc {
    display: none !important;
}

#vnfLocationGroup.vnf-location-full-width {
    flex: 0 0 100%;
    max-width: 100%;
}

.connection-form .form-control.is-invalid {
    border-color: #f87171 !important;
}

.connection-calc-input {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 45px;
    border-radius: 6px;
    border: 2px solid rgba(60, 194, 192, 0.37);
    background-color: rgba(60, 194, 192, 0.08);
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
}

.connection-calc-input:hover,
.connection-calc-input:focus-within {
    border-color: rgba(60, 194, 192, 0.77);
    background-color: rgba(60, 194, 192, 0.17);
}

.connection-calc-input .connection-input-prefix {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 4px 0 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1;
}

.connection-calc-input .connection-calc-input-field {
    flex: 1;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 12px 14px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.connection-calc-input .connection-calc-input-field::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.connection-calc-input .connection-input-suffix {
    display: flex;
    align-items: stretch;
    flex-shrink: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.connection-calc-input .connection-egress-unit-select {
    height: 100%;
    min-height: 41px;
    margin: 0;
    padding: 0 32px 0 12px;
    border: none;
    border-radius: 0;
    background-color: rgba(60, 194, 192, 0.12);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M6 9L12 15L18 9" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    background-size: 18px;
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    color-scheme: dark;
}

.connection-calc-input .connection-egress-unit-select option {
    background-color: #0b2223;
    color: #ffffff;
}

.connection-calc-input .connection-egress-unit-select option:checked,
.connection-calc-input .connection-egress-unit-select option:hover,
.connection-calc-input .connection-egress-unit-select option:focus {
    background-color: #2d7c82 !important;
    color: #ffffff !important;
}

.connection-calc-input.is-invalid,
.connection-calc-input:has(.is-invalid) {
    border-color: #f87171 !important;
}

.sam-pop-header-main {
    display: flex;
    gap: 10rem;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.sam-pop-close {
    position: relative;
    z-index: 3;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4rem;
    margin: -4rem 0 0 8rem;
    opacity: 0.9;
    flex-shrink: 0;
    pointer-events: auto;
}

.sam-pop-close:hover {
    opacity: 1;
}

/* ── Full-screen calculate loader (Figma 432-2624) ── */
body.mcc-calc-loading {
    overflow: hidden;
}

#mccCalcScreenLoader.mcc-calc-screen-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background: rgba(4, 10, 14, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#mccCalcScreenLoader.mcc-calc-screen-loader.is-active {
    display: flex !important;
}

.mcc-calc-screen-loader__text {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mcc-calc-loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: mcc-calc-loader-spin 1s infinite linear;
}

@keyframes mcc-calc-loader-spin {
    to {
        transform: rotate(1turn);
    }
}

/* ══════════════════════════════════════════════
   VIEW YOUR REPORT MODAL
═══════════════════════════════════════════════ */

.mcc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 14, 0.75);
    backdrop-filter: blur(6rem);
    -webkit-backdrop-filter: blur(6rem);
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    padding: 30rem;
}

.mcc-modal-overlay.d-none {
    display: none !important;
}

body.mcc-report-modal-open {
    overflow: hidden;
}

.mcc-modal {
    width: 100%;
    max-width: 580rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 1rem rgba(60, 194, 192, 0.5), 0 24rem 60rem rgba(0, 0, 0, 0.5);
    border-radius: 12rem;
    border: 1rem solid var(--mcc-primary);
    background: linear-gradient(132deg, rgba(0, 124, 122, 0.03) 4.59%, rgba(0, 53, 52, 0.42) 98.6%);
    backdrop-filter: blur(25rem);
}

.mcc-modal-header {
    padding: 30rem 30rem 20rem;
    background: rgba(0, 0, 0, 0.3);
}

.mcc-modal-title {
    font-size: 20rem;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.mcc-modal-divider {
    height: 1rem;
    background: rgba(255, 255, 255, 0.15);
    margin: 0;
}

.mcc-modal-body {
    padding: 20rem 30rem 30rem;
    display: flex;
    flex-direction: column;
    gap: 16rem;
}

.mcc-modal-footer {
    display: flex;
    gap: 14rem;
    padding: 30rem;
    background: rgba(4, 14, 20, 0.9);
    border-top: 1rem solid rgba(60, 194, 192, 0.3);
}

.mcc-modal .mcc-modal-divider {
    margin-left: 30rem;
    margin-right: 30rem;
}

.mcc-report-modal-header {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    position: relative;
    padding-right: 36rem;
}

.mcc-report-modal-close {
    width: 28rem;
    height: 28rem;
    border: none;
    background: transparent;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 28 28" fill="none"><path d="M21 7L7 21" stroke="white" stroke-opacity="0.7" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M7 7L21 21" stroke="white" stroke-opacity="0.7" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    font-size: 0;
    background-size: contain;
    position: absolute;
    top: 12rem;
    right: 12rem;
    cursor: pointer;
}

.mcc-report-modal-subtitle {
    margin: 0;
    font-size: 14rem;
    color: var(--mcc-white-70);
    line-height: 1.5;
}

.mcc-report-modal .mcc-modal-body {
    gap: 14rem;
    max-height: 55dvh;
    overflow-y: auto;
    overflow-x: hidden;
}

.mcc-report-modal-footer {
    flex-wrap: wrap;
    gap: 12rem;
}

.mcc-report-modal-footer .mcc-btn-back {
    flex: 1 1 140rem;
    min-width: 120rem;
}

.mcc-report-modal-footer .mcc-report-modal-submit {
    flex: 2 1 200rem;
    min-width: 160rem;
    font-weight: 600;
}

.mcc-report-required {
    color: #f87171;
}

.mcc-form-label {
    font-size: 14rem;
    font-weight: 400;
    color: var(--mcc-white);
    line-height: 1.2;
}

.mcc-calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16rem;
}

.mcc-calc-field {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.mcc-calc-input {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 45rem;
    border-radius: var(--mcc-radius-sm);
    border: 2rem solid rgba(60, 194, 192, 0.37);
    background-color: rgba(60, 194, 192, 0.08);
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s;
}

.mcc-calc-input:focus-within {
    border-color: rgba(60, 194, 192, 0.77);
    background-color: rgba(60, 194, 192, 0.17);
}

.mcc-calc-input input {
    flex: 1;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 12rem 16rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--mcc-white);
    font-family: var(--mcc-font-family);
    font-size: 14rem;
    font-weight: 300;
    outline: none;
}

.mcc-calc-input input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.mcc-calc-field.mcc-field-error .mcc-calc-input {
    border-color: rgba(239, 68, 68, 0.75);
    background-color: rgba(239, 68, 68, 0.08);
}

.mcc-field-hint {
    font-size: 11rem;
    color: #f87171;
    margin-top: 4rem;
    display: block;
    line-height: 1.3;
}

.mcc-report-consent {
    display: flex;
    gap: 10rem;
    align-items: flex-start;
}

.mcc-report-consent input[type="checkbox"] {
    width: 18rem;
    height: 18rem;
    margin-top: 2rem;
    flex-shrink: 0;
    accent-color: var(--mcc-primary);
}

.mcc-report-consent label {
    font-size: 12rem;
    line-height: 1.5;
    color: var(--mcc-white-70);
    margin: 0;
}

.mcc-report-consent a {
    color: var(--mcc-primary);
    text-decoration: underline;
}

.mcc-report-consent.mcc-field-error label {
    color: #d9534f;
}

.mcc-consent-hint {
    display: block;
    margin-top: 6rem;
    font-size: 12rem;
    color: #d9534f;
    line-height: 1.3;
}

.mcc-btn-back {
    padding: 14rem 28rem;
    border-radius: var(--mcc-radius-sm);
    border: 2rem solid rgba(60, 194, 192, 0.60);
    background: transparent;
    color: #fff;
    font-size: 16rem;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    font-family: var(--mcc-font-family);
}

.mcc-btn-back:hover {
    background: rgba(60, 194, 192, 0.1);
    color: #fff;
}

@media (max-width: 767.98px) {
    .mcc-card {
        border-radius: 15rem;
        padding: 15rem 16rem;
        max-width: 250rem;
        left: 16rem;
        bottom: 135rem;
    }

    .mcc-card h2 {
        font-size: 14rem;
        margin: 0 0 10rem;
    }

    .mcc-item.mcc-filter-toggle {
        margin-left: 0;
        margin-right: 0;
    }

    .compare-cost-btn {
        font-size: 14rem;
        bottom: 80rem;
        min-height: 45rem;
    }

    .mcc-item .mcc-icon {
        width: 17rem;
        height: 17rem;
    }

    .mcc-item.mcc-filter-toggle .mcc-filter-label {
        font-size: 12rem;
    }

    .sam-pop-header {
        min-height: 94rem;
        padding: 15rem 10rem;
    }

    .sam-pop-body {
        gap: 10rem;
        padding: 10rem;
    }

    .sam-pop-section-head {
        min-height: 46rem;
        padding: 9rem 24rem;
    }

    .sam-pop-section-content {
        padding: 10rem 24rem;
    }
}

@media (max-width: 575px) {
    .mcc-footer {
        padding: 12rem 24rem !important;
    }

    .mcc-calc-row {
        grid-template-columns: 1fr;
    }

    .mcc-modal-overlay {
        padding: 16rem;
    }
}