
.foot_menu { float: right }
.foot_menu ul li {
    float: left;
    padding-left: 5px;
    list-style: none;
    font-family: Roboto, sans-serif;
}
.foot_menu ul li a {

    font-weight: 300;
    color: #777;
    text-decoration: none;
}

.foot_menu ul li a:hover { text-decoration: underline }
.foot_menu li:after { content: " " }
.foot_menu li:not(:last-of-type):after {
    padding-left: 5px;
    content: "|";
}
.tablecss{
    display: table
}
.table_product{
    width: 100%;
    border-collapse: collapse;
    box-sizing: border-box;
   margin-bottom: 1rem;
}
.top_margin{
    margin-bottom: 10rem;
}
.table_row{
    border-top: 1px solid;
}
.row_btm_line{
    border-bottom: 1px solid;
}
.text-center {
    text-align: center;
}
.align-middle {
    vertical-align: middle;
}
.text-white{
    color: #fff;
    text-align: left;
}

.center-line {
    width: 100px;
    margin: auto;
    border-radius: 50%;
    height: 2px;
    background: #0813a6;
    margin-top: 10px;
    position: relative;
    margin-bottom: 5rem;
}
.product_list{
    border:1px #dadada solid;
    border-radius: 10px;
    /* border-top-right-radius: 10px;
    border-top-left-radius: 10px; */
    cursor: pointer;
    transition: transform 0.25s ease-in-out;
    box-shadow: 1px 1px 1px 1px #888888;
    
}
.product_list:hover{
    transform: scale(1.05);
}

/* Modal Header */
  /* Modal Body */
.modal-body {
    padding: 2px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Footer */
.modal-footer {
    padding: 2px 14px;
    background-color: #0813a6;
    
  }
  .modal-footer h5{
    color: white;
    text-align: center;
  }
  /* Modal Content */
.modal-content {
    
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;  
    top: 50%; 
    border: 1px solid #888;
    width: 34rem;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
    
  }
  .modal-header {
    padding: 2px 16px;
    background-color: #0813a6;
   
  }
  .modal-header h5{
    color: #fff;
    text-align: center;
  }
  /* Add Animation */
 /* @keyframes animatetop {
         from {top: 200px; opacity: 0}
    to {top: 0; opacity: 1}
   } */