/* Modal Content */
.modal-content {
  z-index: 9999;
    overflow-y: initial;
    font-family: Arial; font-size: 10px;
    display: none; /* Hidden by default */
    position: fixed;
    left: 20%;
    top: 2%;
    background-color: #fefefe;
    margin: auto;
    margin-top: 0%;
    /*padding: 0;*/
    border: 1px solid #888;
    width: 60%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  #myModal {
    z-index: 99999;
  }
  
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  /* The Close Button */
  .close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-header {
    padding: 1px 16px;
    background-color: #DF9828;
    color: white;
    
  }
  
  .modal-body {
    padding: 2px 16px;
    margin:5%;
    
  }
  /*.modal-footer {
    padding: 2px 16px;
    background-color: #DF9828;
    color: white;
  }*/
  
  /*Inside Menu Vertical*/
  .inside-modal-content div{
    display: inline-block;
  
  }
  .inside-modal-content{
    background-color: "yellow";
    /*padding: 2px 16px;*/
    margin:5%;
  }
  .vertical-menu {
    width: 200px;
  }
  
  .vertical-menu a {
    background-color: #eee;
    color: black;
    display: block;
    padding: 12px;
    text-decoration: none;
  }
  
  .vertical-menu a:hover {
    background-color: #ccc;
  }
  
  .vertical-menu a.active {
    background-color: #DF9828;
    color: white;
  }
  /*End Inside Menu Vertical*/
  /*Modal Right side Table*/
  .right-menu-side {
   /*background-color: blueviolet;*/
   width: 80%;
   height: 100;
   overflow-x:auto;
   /* margin-left: 200px;
    margin-top: 1;
   
  */
  }
  /*End Modal Right side Table*/
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
  }
  
  th, td {
    text-align: left;
    padding: 0px 8px;
  }
  
  tr:nth-child(even){
      background-color: #f2f2f2
    }
  
  /* Style the tab */
  .tab {
    overflow: hidden;
    background-color: #f1f1f1;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    float: left;
    border:none;
    border-right: 1px solid #dcdcdc;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 12px;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #FFF;
    border-color: #FFF;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    /*border: 1px solid #ccc;*/
    border-top: none;
  }
  .menu-checkbox{
    margin-left: 0;
  }
  .menu-checkbox label {
    margin: 0 10px 15px 5px;
    display: inline-block;
    font-size: 14px;
  }
  .menu-checkbox button{
    margin-left: 15px;
    background: #FFF;
    padding: 3px 15px;
  }
@media screen and (max-width: 600px) {
  .tab button {
    padding: 14px 4%;
  }
  .modal-content {
    position: absolute;
    top: 8%;
    left: 1%;
    right: 1%;
    width: auto;
  }
  .menu-checkbox {
    margin: 0;
    padding-bottom: 15px;
  }
  .menu-checkbox label {
    display: block;
    margin-bottom: 5px;
  }
  .menu-checkbox button{
    margin: 5px 0 0 5px;
    padding: 6px 50px;
  }
}