.digit{
    margin-left: -5%; 
    color: black;
    cursor:grab;
    display: none;
  }
  .fdigit{
    margin-right: 3%;
    color: black;
    cursor:grab;
    display: none;
  }
  .object {
      width: 35px;
  }
  .object2 {
      margin-top: 100%;
      margin-bottom: 5px;
      margin-left: 8%;
      width: 35px;
  }
  .level {
      width: 80px;
  }
  .logo{
      height: 90%;
      width: 80%;   
  }
  .listobj{
      margin-top: 0%;
      margin-left: 0%;
  }
  .plmn{
      width: 70px;
  }
  .plmnDropDown dd { position:absolute; }
  .plmnDropDown dd ul { color:white; display:none;
                    position:absolute; list-style:none;}
  /* level dropdown */
  .levelDropDown dd { position:absolute; }
  .levelDropDown dd ul { color:white; display:none;
                    position:absolute; list-style:none;}
  
  /* object dropdown */
  .objectDropDown dd ul { color:white; display:none; width: 8%;
                                      position:absolute; list-style:none;}
  /* .objectDropDown dd ul li a img{  width: 8%;
      position:absolute; list-style:none;
                                          } */
  
  .objBelowLogo{
      left: 5%;
          top: 65%;
                          position: fixed;
      /* left: 0%;
      top: 21%;
      position: fixed; */
      width:35px;
  } 
  
  * {
      box-sizing: border-box;
      font-family: 'Roboto', sans-serif;
    }
    
    
    .container {
      width: 250px;
      margin: auto;
    }
    
    .calc-body {
      width: 190px;
      margin: auto;
      min-height: 234px;
      border: solid 2px #3A4655;
      border-radius: 7%;
      
    }
    
    .calc-screen {
      width: 100%;
      height: 70px;
      padding: 20px;
      border:  2px;
      border-bottom: solid 1.5px;
      border-radius: 7% 7% 0% 0%;
    }
    
    .calc-operation {
      text-align: right;
      color: #727B86;
      font-size: 21px;
      padding-bottom: 10px;
      border-bottom: dotted 1px;
    }
    
    .calc-typed {
      margin-top: -10px;
      font-size: 35px;
      text-align: right;
      color:black;
    }
    
    .calc-button-row {
      width: 100%;
     
      margin-top:1%;
      cursor: pointer;
      margin-left: 1%;
    }
    .disabled{
      pointer-events: none;
    }
    .enabled{
      pointer-events: all;
    }
    .button {
      width: 31%;
      background:rgb(0, 174, 255);
      color: #fff;
      padding: 10px;
      display: inline-block;
      font-size: 22px;
      text-align: center;
      border-radius: 10px;
      border-right: solid 2px #3C4857;
      border-bottom: solid 2px #3C4857;
      transition: all 0.2s ease-in-out;
    }
    
    .button:hover {
      background:blue;
      transform: rotate(5deg);
    }