﻿    .MultiStep .MultiStep-Header {
    padding: 20px 0 0 25px;
    border-bottom: 1px solid #e4e4e4;
    }

    #confirmMsg {
        display: none;
    }

    * {
    font-family: Roboto, sans-serif;
    }

    table {
    width: 100%;
    border-collapse: collapse;
    }

    th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    }

    th {
    background-color: #f2f2f2;
    }

    .spreadsheet-container {
    width: 100%;
    overflow-x: auto;
    }

    .button-group {
    margin-bottom: 10px;
    }

    .hidden-column {
    display: none;
    }

    .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .overlay-content {
    text-align: center;
    color: white;
    }

    .modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    }

    .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    }

    .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    }

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

    .OnOffSwitch-Small {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 24px;
    font-family: 'Arial', sans-serif;
    font-size: 12px !important;
    font-weight: 700;
    }

    .OnOffSwitch-Small input {
    opacity: 0;
    width: 0;
    height: 0;
    }

    .OnOffSwitch-Small input:checked + .OnOffSwitch-Slider {
    background-color: #004e9a; 
    }

    .OnOffSwitch-Small input:checked + .OnOffSwitch-Slider:before {
    transform: translateX(31px);
    }

    .OnOffSwitch-Small input:checked + .OnOffSwitch-Slider:after {
    transform: translateX(-25px);
    }

    .OnOffSwitch-Small .OnOffSwitch-Slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #acb1ba;
    -webkit-transition: .4s;
    transition: .4s;
    }

    .OnOffSwitch-Small .OnOffSwitch-Slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    }

    .OnOffSwitch-Small .OnOffSwitch-Slider.round {
    border-radius: 34px;
    }

    .OnOffSwitch-Small .OnOffSwitch-Slider.round:before {
    border-radius: 50%;
    }

    .OnOffSwitch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 30px;
    font-family: 'Arial', sans-serif;
    font-size: 12px !important;
    font-weight: 700;
    }

    .OnOffSwitch input {
    opacity: 0;
    width: 0;
    height: 0;
    }

    .OnOffSwitch input:checked + .OnOffSwitch-Slider {
    background-color: #004e9a;
    }

    .OnOffSwitch input:checked + .OnOffSwitch-Slider:before {
    transform: translateX(42px);
    }

    .OnOffSwitch input:checked + .OnOffSwitch-Slider:after {
    content: var(--on-text, 'Yes');
    transform: translateX(-25px);
    }

    .OnOffSwitch .OnOffSwitch-Slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #6c757d;
    -webkit-transition: .4s;
    transition: .4s;
    }

    .OnOffSwitch .OnOffSwitch-Slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    }

    .OnOffSwitch .OnOffSwitch-Slider:after {
    position: absolute;
    content: var(--off-text, 'No');
    height: 4px;
    color: #ffffff;
    top: 3px;
    left: 38px;
    font-weight: 500;
    font-size: 12px;
    }

    .OnOffSwitch .OnOffSwitch-Slider.round {
    border-radius: 34px;
    }

    .OnOffSwitch .OnOffSwitch-Slider.round:before {
    border-radius: 50%;
    }

    .address-spreadsheet-popout {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    }

    .address-spreadsheet-content {
    position: relative;
    background-color: #fff;
    margin: 10px;
    padding: 0;
    border: 1px solid #888;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: addressSpreadsheetFadeIn 0.3s;
    box-sizing: border-box;
    }

    .address-spreadsheet-header {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }


    .address-spreadsheet-body {
    padding: 15px;
    height: calc(100% - 60px);
    overflow: auto;
    }

    .address-spreadsheet-content select,
    .address-spreadsheet-content input,
    .address-spreadsheet-content [contenteditable="true"],
    .address-spreadsheet-content button {
    pointer-events: auto !important;
    opacity: 1 !important;
    }

    .contact {
    font-weight: bold;
    }

    
    .contact .required-asterisk {
        color: #98271a;
        margin-left: 5px;
    }


    [contenteditable="true"]:empty:before {
      content: attr(data-placeholder);
      color: #aaa;
      font-style: italic;
    }
 
    [contenteditable="true"]:focus:before {
      content: "";
    }


    #BEINInput::-webkit-outer-spin-button,
    #BEINInput::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
    }

    #BEINInput {
            -moz-appearance: textfield;
    }

    input::placeholder {
        color: #aaa;
        font-style: italic;
    }

    #ServiceLineTypeCheckbox:checked + .OnOffSwitch-Slider:before {
        transform: translateX(90px) !important;
    }

    #ServiceLineTypeCheckbox:checked + .OnOffSwitch-Slider:after {
        transform: translateX(-30px) !important;
        left: 60px !important;
    }

    #ServiceLineTypeCheckbox + .OnOffSwitch-Slider:after {
        left: 30px !important;
        text-align: center !important;
        width: 60px !important;
    }

    #LineTypeCheckbox:checked + .OnOffSwitch-Slider:before {
        transform: translateX(90px) !important;
    }

    #LineTypeCheckbox:checked + .OnOffSwitch-Slider:after {
        transform: translateX(-30px) !important;
        left: 60px !important;
    }

    #LineTypeCheckbox + .OnOffSwitch-Slider:after {
        left: 30px !important;
        text-align: center !important;
        width: 60px !important;
    }

    
    .bg-custom-gray {
        background-color: #e6e9ed !important;
    }

    .landparcelinfo {
        background-color: #c5ebfb !important;
    }
    
    .secondaryAddress {
        background-color: #cbcbcb66 !important;
    }

    .is-invalid-multiPrem {
        border-color: #dc3545 !important;
        background-color: #fff5f5 !important;
    }
 
    .editable-input.is-invalid-multiPrem {
        border-color: #dc3545 !important;
        background-color: #fff5f5 !important;
    }
 
    input.is-invalid-multiPrem,
    select.is-invalid-multiPrem {
        border: 2px solid #dc3545 !important;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
    }

    @@media (max-width: 991px){
        .secondaryAddressLabel {
            display: none;
        }
    }


    @@media (max-width: 1199px) and (min-width: 769px) {
        .secondaryAddress {
            max-width: 240px;
        }
    }

    /* Below 669px — remove max-width and make it full width */
    @@media (max-width: 668px) {
        .secondaryAddress {
            max-width: none;
            width: 100%;
        }
    }


    @@media (min-width: 1199px) {
        .secondaryAddress {
            max-width: 424px;
        }
    }

    @@media (max-width: 769px) {
        .secondaryAddressLabelSmall {
            display: block !important;
        }
    }

    @@media (min-width: 990px) {
        .secondaryAddressLabelSmall {
            display: done !important;
        }
    }
    

    @@media (max-width: 575.98px) {
          .checkbox-mobile-padding

    {
            padding-left: 18px !important;

    }

    }

    .topButton {
        border-radius: 10px;
        height: 65px;
        text-align: center;
        padding-top: 0.25rem;
        margin-bottom: 0.5rem;
    }
