  html {
            font-family: CiscoSans;
        }

        .dm0 .pri-0 {
            color: #fff !important;
        }

        .ctas .pri0 {
            background: #0070d2 !important;
            border: 1px solid #0070d2 !important;
            color: #fff !important;
        }

        .ctas .pri0:hover {
            background: #008dff !important;
        }

        .ctas .sec0:hover {
            background-color: transparent !important;
            border: 1px solid #fff !important;
            color: #fff !important;
        }

        @media only screen and (min-width: 64em) {
            .dmc-mq .frame {
                min-height: 495px !important;
            }
        }

        .calc-row {
            margin: auto;
            background: #FFF;
            padding: 30px;
            overflow-x: hidden;
        }

        /* table th{
                border: 1px solid #000;
                background-color: #fff;
                color: #0d274d;
                font-weight: 400;
                padding: 5px 15px;
            } */

        .d-flex {
            display: flex;
        }

        .d-flex .calc-left,
        .d-flex .calc-right {
            flex: 1;
        }

        .tab {
            overflow: hidden;
        }

        /* Style the buttons inside the tab */
        .tab button {
            background-color: #FFF;
            float: left;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 14px 20px;
            transition: 0.3s;
            font-size: 16px;
            border-bottom: 1px solid #0060ad;
            color: #0060ad;
            margin: 0px 10px;
        }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #0060ad;
            color: #FFF;
            border-radius: 10px;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #0060ad;
            color: #FFF;
            border-radius: 10px;
        }

        /* Style the tab content */
        .tabcontent {
            display: none;
            padding: 6px 12px;
            border-top: none;
        }

        /* Hide the up and down arrows in the number input */

        input[type="text"]::-webkit-inner-spin-button,
        input[type="text"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .no-border {
            border: none;
            border-bottom: 1px solid #000;
        }

        .user-input-container {
            /* max-width: 45rem; */
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            box-shadow: 0px 0px 7px -2px rgba(163, 163, 163, 1);
            padding: 1.8rem 2.4rem;
            border-radius: 1.2rem;
            margin-bottom: 1.8rem;
        }

        .user-input-container input {
            width: 70%;
            padding: 10px;
            border-radius: 10px;
            border: 1px solid #000;
            text-align: right;
        }

        .user-input-container label {
            min-height: 44px;
        }

        .tabcontent h3 {
            padding-top: 40px;
            padding-bottom: 10px;
        }

        .user-input {
            text-align: right;
        }

        .info-icon {
            width: 1.8rem;
            height: 1.8rem;
            cursor: pointer;
        }

        .title-icon {
            display: flex;
            justify-content: space-between;
        }

        .user-input-container input[disabled] {
            background-color: #e2e3e2;
        }

        .item-desc>div {
            display: none;
            /* Hide all item descriptions by default */
        }

        /* Tooltip start */
        .tooltip {
            position: relative;
            display: inline-block;
            margin-top: 8px;
            margin-left: 5px;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            min-width: 280px;
            font-size: 12px;
            line-height: 17px;
            background-color: #FFF;
            border: 1px solid #CCC;
            color: #333; 
            border-radius: 10px 10px 0px 10px;
            padding: 10px;
            position: absolute;
            z-index: 1;
            bottom: 150%;
            left: -419%;
            margin-left: -64px;
            box-shadow: 0 2px 4px 0 rgb(0 0 0 / 7%), 0 3px 10px 0 rgb(0 0 0 / 4%);
            transform: translateX(-50%); /* Centers it properly */
        }
 


        /* .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 84%;
            margin-left: -5px;
            border-width: 16px;
            border-style: solid;
            border-color: #FFF transparent transparent transparent;
        } */
        .tooltip .tooltiptext::after{
             content: "";
            position: absolute;
            background-image: url("/content/dam/en/us/products/XDR-ROI-Calculator/images/tooltip-arrow.png");
            width: 100px;
            height: 100px;
            background-repeat: no-repeat;
            background-size: 28%;
            top: 98.1%;
            left: 92.9%;
            margin-left: -5px;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
        }
        .analyst-container .tooltip{
            right: 11%;
             top: 4px;
        }

        /* Tooltip end */

        /* Tooltip 1 Start */
        .tooltip1 {
            position: relative;
            display: inline-block;
            margin-top: 0px;
        }

        .tooltip1 .tooltiptext1 {
            display: none; /* Remove this line to display tooltip*/
            visibility: hidden;
    min-width: 134px;
    font-size: 12px;
    line-height: 17px;
    background-color: #FFF;
    border: 1px solid #CCC;
    color: #333;
    border-radius: 10px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1; 
    top: 100%;
    left: 75px; 
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 7%), 0 3px 10px 0 rgb(0 0 0 / 4%);
    transform: translateX(-50%);
        } 
        

        .tooltip1:hover .tooltiptext1 {
            visibility: visible;
        }

        /* Tooltip 1 end */
        .button-flex {
            display: flex;
            min-width: 146px;
        }

        .btn-primary {
            color: #fff;
            font-size: 1.8rem;
            padding: 1rem 2rem;
            background-color: #0070d2;
            border-radius: 50px;
            min-width: 150px;
            border: 1px solid #0070d2;
        }

        .btn-primary:hover {
            background-color: #0060ad;
        }

        .btn-secondary {
            color: #0070d2;
            font-size: 1.8rem;
            padding: 1rem 4rem;
            border-radius: 50px;
            border: 1px solid #0070d2;
            margin-left: 30px;
            min-width: 150px;
        }

        .btn-secondary:hover {
            color: #0060ad;
        }

        .analyst-tab1bg {
            background-color: #0d274d;
            color: #fff;
            border-radius: 2.4rem;
            max-width: 50rem;
            padding: 6.8rem 4.8rem 5.2rem 4.8rem;
            margin-top: 50px;
        }

        .analyst-tab2bg {
            background-color: #0d274d;
            color: #fff;
            border-radius: 2.4rem;
            max-width: 50rem;
            padding: 6.8rem 4.8rem 5.2rem 4.8rem;
            margin-top: 50px;
        }

        .analyst-tab3bg {
            background-color: #0d274d;
            color: #fff;
            border-radius: 2.4rem;
            max-width: 50rem;
            padding: 2.8rem 4.8rem 1.2rem 4.8rem;
            margin-top: 35px;
        }

        .analyst-tab4bg {
            background-color: #0d274d;
            color: #fff;
            border-radius: 2.4rem;
            max-width: 50rem;
            padding: 3.8rem 4.8rem 2.2rem 4.8rem;
            margin-top: 50px;
        }

        .analyst-tab5bg {
            background-color: #0d274d;
            color: #fff;
            border-radius: 2.4rem;
            max-width: 50rem;
            padding: 6.8rem 4.8rem 5.2rem 4.8rem;
            margin-top: 50px;
        }

        .analyst-container h4 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 3.2rem;
        }

        .analyst-container table {
            width: 100%;
        }

        .analyst-container table td {
            border: 0px solid #000;
        }

        .analyst-container td p {
            font-size: 14px;
            color: #FFF;
        }

        .analyst-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .analyst-text {
            font-size: 1.4rem;
            font-weight: 400;
        }

        .analyst-num {
            font-size: 1.4rem;
            color: #000 !important;
            background-color: #eee;
            padding: 0.8rem 20px;
            border-radius: 0.5rem;
            width: 100px;
            font-weight: 400;
            text-align: right;
        }

        .saving-detail h2 {
            margin-top: 30px;
            font-weight: 300;
        }

        .saving-flex table th {
            border-bottom: 2px solid #dbd1d1;
            font-weight: bold;
            text-align: left;
        }

        .static-data th,
        .total-record th {
            height: 5.5rem;
        }

        .final-output th {
            height: 3.5rem;
        }

        .saving-flex table tr {
            border-bottom: 1px solid #dbd1d1;
        }

        .saving-flex table td {
            padding: 20px 0px;
            position: relative;
            vertical-align: middle;
        }

        .saving-flex table td p {
            margin-bottom: 0px;
            padding-right: 20px;
        }

        .saving-flex table {
            width: 100%;
            margin-bottom: 50px;
        }

        .saving-flex table th p {
            font-weight: bold;
            margin-bottom: 0px;
            text-align: left;
        }

        .saving-flex table td:nth-child(2),
        .saving-flex table td:nth-child(3) {
            text-align: right;
            padding-left: 10px;
        }

        .static-data tbody tr td::after{
            content: '';
            border-right: 1px solid #dbd1d1;
            position: absolute;
            height: 50%;
            right: 0;
            top: 25%;
        }
        .static-data tbody tr td:nth-child(1)::after{
            right: 4px;
        }
        .static-data tbody tr td:nth-child(3)::after{
            content: none;
        }

        .total-record tbody tr td::before,
        .final-output tbody tr td::before {
            content: '';
            border-left: 1px solid #dbd1d1;
            position: absolute;
            height: 50%;
            left: 0;
            top: 25%;
        }

        .total-record tbody tr td:first-child::before,
        .final-output tbody tr td:first-child::before {
            content: none;
        }

        .user-input-flex sup {
            vertical-align: super;
            font-size: 12px;
        }

        .user-input-flex label {
            cursor: default;
        }

        .final-output table td {
            padding-right: 20px;
        }

        .mt-50 {
            margin-top: 50px;
        }

        .mt-30 {
            margin-top: 30px;
        }

        .saving-flex table th:nth-child(2),
        .saving-flex table th:nth-child(3) {
            padding-left: 10px;
        }

        .item{
            display: block;
            margin-top: 8rem;
            border-top: 2px solid #eee;
            padding-top: 35px;
        }
        .item-desc ol{
            margin-left: 17px;
        }
        .v-hidden{
            visibility: hidden;
        }
        input:focus {
            background-color: transparent !important; 
            outline: none;  
            border-color: #0070d2; 
            box-shadow: 0 0 8px #9bddf6; 
            transition: box-shadow 0.3s ease; 
        }
        .hide{
            display: none;
        }
        /* .error {
        color: red;
        font-size: 12px;
        display: block;
        position: absolute;
    }
    .error:before {
    content: 'Required';
    position: absolute;
    top: 39px; 
    left: 86px;
    font-size: 12px;
} */
  .error {
    color: red;
    font-size: 12px;
    display: block;
    position: absolute;
}
.error:before {
    content: 'Required';
    position: absolute; 
    left: 75px;
    font-size: 12px;
}  
    .static-data input{
  padding: 10px 10px 10px 0px;
    border-radius: 10px;
    border: 1px solid #000;
    text-align: right;
    margin-right: 13px;
    width: 115px;
    }
    /* .dol-flex{
        display: flex;
    } */
    .dollar{
        padding-top: 10px;
        padding-right: 1px;
    }
    .dollar:before {
    content: '$'; 
    margin-right: 3px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
} 
        
        /* Responsive start */
        @media only screen and (min-width: 1300px) {
            .calc-row {
                width: 1236px;
            }
        }

        @media only screen and (min-width:768px) and (max-width:1199px) {
            .user-input-flex {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                column-gap: 2rem;
            }
            .user-input-container{
                padding: 1.8rem 1rem;
            }
            .calc-row{
                padding: 10px;
            }
        }

        @media only screen and (min-width:1200px) {
            .user-input-flex {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                column-gap: 15rem;
            }
        }

        @media only screen and (min-width:981px) {

            .saving-flex {
                display: flex;
                justify-content: space-between;
                gap: 8rem;
            }

            .saving-flex .left-col,
            .saving-flex .right-col {
                flex: 40%;
            }
        }

        @media only screen and (max-width:536px) {
            .analyst-container {
                padding: 30px;
            }
        }

        @media only screen and (max-width: 419px) {
            .button-flex {
                display: inherit;
                text-align: center;
            }

            .btn-primary {
                margin-bottom: 20px;
            }

            .btn-secondary {
                margin-left: 0px;
            }
        }
 
@media only screen and (max-width:472px){
    .tooltip .tooltiptext{
        bottom: 124%;
    }
    .tooltip .tooltiptext{
        min-width: 150px;
        left: -123%;
        margin-left: -48px;
    }
    .tooltip .tooltiptext::after{
        margin-left: -14px;
    }
    .analyst-container .tooltip .tooltiptext{
        min-width: 150px;
        left: -126%;
        margin-left: 33px;
        border-radius: 10px;
    }
    .analyst-container .tooltip .tooltiptext::after{
        margin-left: -99px;
    }
}
@media only screen and (min-width:473px) and (max-width:567px){
    .tooltip .tooltiptext{
        min-width: 159px;
        border-radius: 10px 10px 0px 10px;
        margin-left: 0px;
    }
    .tooltip .tooltiptext::after{
        left: 87.9%;
    }
    .analyst-container .tooltip .tooltiptext::after{
        left: 87.9%;
    }
}
@media only screen and (max-width:559px){
    .tab button{
        width: 94%;
    }
    .static-data input{
        width: 80px;
    }
    .error:before{
        left: 54px;
    }
    .error-hours:before{
        left: 43px;
    }
}
@media only screen and (min-width:560px) and (max-width:767px){
    .tab button{
        width: 46%;
        float: left;
        padding: 14px 10px;
    }
} 
 

        /* Responsive end */


