.icon_kwh {
    width: 72px;
    height: 72px;
    padding-left: 40px;
    position: fixed;
    top:20px; 
    display: flex;
    }


    .popup {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
      }
      
      
      
      .close {
        color: #aaaaaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
      }
      
      .close:hover,
      .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
      }
      
      .popup-content {
        background-color: white;
        margin: 15% auto; /* 15% from the top and centered */
        padding: 20px;
        border: 1px solid #888;
        width: 80%; /* Could be more or less, depending on screen size */
      }
      
      @media screen and (max-width: 768px) {
        /* Adjust the styles for smaller screens */
        .popup-content {
          margin: 10% auto;
          padding: 10px;
          width: 90%;
        }
      }
      
      @media screen and (max-width: 480px) {
        /* Adjust the styles for even smaller screens */
        .popup-content {
          margin: 5% auto;
          padding: 5px;
          width: 95%;
        }
      }
      