#margin-all{
    margin-top: 30px;
}
#main-heading{
    background: #2da5da;
    text-align:center;
}
#heading-sty{
    color: white;
    font-size: 24px;
    
}
#stock{
    text-align:center;
    color: green;
    padding-bottom: 10px;
}
#add-customer{
    float:right;
    width:230px;
    height:35px;
    font-size: 16px;
}
#customer-table{
    padding-bottom: 60px;
}
#table-start{
    border-collapse: collapse;
    width: 100%;
    /*margin-top: 10px;*/
}
#table-heading-color{
    background-color:#2da5da;
}

/*add customer Button form open css*/

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

#panellogin{
    box-shadow: 0 0 4px 0 #003399, 0 6px 20px 0 #cccccc;
}

#panelheading{
    text-align:center;
    background: #2da5da;
}
/*
#nav-iconic{
    float: left;
    height: 80px; 
    width: 60px; 
    background-color: white;
    list-style: none;
    margin-left: 14px;
    border-radius: 4px;
    margin-bottom: 3px;
}

#nav-iconac{
    float: left;
    height: 80px; 
    width: 140px; 
    background-color: white;
    list-style: none;
    margin-left: 14px;
    border-radius: 4px;
    margin-bottom: 3px;
}


#icon-img{
    border-radius: 3px;
    height: 60px; 
    background-color: white;
    width: 60px; 
    padding: 4px;
}

#nav-text-iconmm{
    float: left;
    background-color: #6666ff;
    margin-right: 18px;
}

#icon-textui{
    font-size: 15px;
    color:  white;
    font-family: Arial;
}

#log-imgji{
    height: 0px;
    width: 100px;
}

#navtext{
    margin-left:6px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: white;
}*/




.card {
                position:absolute;
                top:50%;
                left:50%;
                transform:translate(-50%,-50%);
                width:300px;
                min-height:400px;
                background:#fff;
                box-shadow:0 20px 50px rgba(0,0,0,.1);
                border-radius:10px;
                transition:0.5s;
            }
            .card:hover {
                box-shadow:0 30px 70px rgba(0,0,0,.2);
            }
            .card .box {
                position:absolute;
                top:50%;
                left:0;
                transform:translateY(-50%);
                text-align:center;
                padding:20px;
                box-sizing:border-box;
                width:100%;
            }
            .card .box .img {
                width:120px;
                height:120px;
                margin:0 auto;
                border-radius:50%;
                overflow:hidden;
            }
            .card .box .img img {
                width:100%;
                height:100%;
            }
            .card .box h2 {
                font-size:20px;
                color:#262626;
                margin:20px auto;
            }
            .card .box h2 span {
                font-size:14px;
                background:#e91e63;
                color:#fff;
                display:inline-block;
                padding:4px 10px;
                border-radius:15px;
            }
            .card .box p {
                color:#262626;
            }
            .card .box span {
                display:inline-flex;
            }
            .card .box ul {
                margin:0;
                padding:0;
            }
            .card .box ul li {
                list-style:none;
                float:left;
            }
            .card .box ul li a {
                display:block;
                color:#aaa;
                margin:0 10px;
                font-size:20px;
                transition:0.5s;
                text-align:center;
            }
            .card .box ul li:hover a {
                color:#e91e63;
                transform:rotateY(360deg);
            }