/**
* Template Name: Butterfly - v2.1.0
* Template URL: https://bootstrapmade.com/butterfly-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family:'Nunito', sans-serif;
      color: #444444;
    }
    
    a {
      color: #49b5e7;
    }
    
    a:hover {
      color: #76c7ed;
      text-decoration: none;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family:'Nunito', sans-serif;
    }
    
  
    
    /*--------------------------------------------------------------
    # Header
    --------------------------------------------------------------*/
    #header {
      /*background: #f4fbfe;*/
      background: white;
      transition: all 0.5s;
      z-index: 997;
      padding: 15px 0;
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
    }
    
    #header .logo {
      font-size: 28px;
      color:tomato;
    
      margin: 0;
      padding: 0;
      line-height: 1;
      font-weight: 200;
      letter-spacing: 1px;
      text-transform: uppercase;
      /* font-family: "Oswald", sans-serif; */
      font-family:'Nunito', sans-serif;
    }
    
    #header .logo a {
      color: #0f394c;
      
    }
    
  /*   #header .logo img {
      max-height: 0px;
      margin-left: 240px;
    } */
    
    /*--------------------------------------------------------------
    # Navigation Menu
    --------------------------------------------------------------*/
    /* Desktop Navigation */
    .nav-menu ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    
    .nav-menu > ul {
      display: flex;
    }
    
    .nav-menu > ul > li {
      position: relative;
      white-space: nowrap;
      padding: 10px 0 0px 30px;
    }
    
    .nav-menu a {
      display: block;
      position: relative;
      color:black;
      transition: 0.3s;
      font-size: 17px;
      /*font-family: "Dosis", sans-serif;*/
      text-transform: capitalize;
      font-family:'Nunito', sans-serif;
      font-weight: 600;
    }
    
    .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
      /*color: #49b5e7;*/
      color:#1e4194;
    }
    
    .nav-menu .drop-down ul {
      display: block;
      position: absolute;
      left: 14px;
      top: calc(100% + 30px);
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      padding: 0px 0;
      background: #fff;
      box-shadow: 0px 0px 10px rgba(127, 137, 161, 0.25);
      transition: 0.3s;
    }
    
    .nav-menu .drop-down:hover > ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
    
    .nav-menu .drop-down li {
      min-width: 180px;
      position: relative;
    }
    
    .nav-menu .drop-down ul a {
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 500;
      text-transform: none;
      color: #0f394c;
      text-transform: capitalize;
    }
    
    .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
      color: #49b5e7;
    }
    
    .nav-menu .drop-down > a:after {
      content: "\ea99";
      font-family: IcoFont;
      padding-left: 5px;
    }
    
    .nav-menu .drop-down .drop-down ul {
      top: 0;
      left: calc(100% - 30px);
    }
    
    .nav-menu .drop-down .drop-down:hover > ul {
      opacity: 1;
      top: 0;
      left: 100%;
    }
    
    .nav-menu .drop-down .drop-down > a {
      padding-right: 35px;
    }
    
    .nav-menu .drop-down .drop-down > a:after {
      content: "\eaa0";
      font-family: IcoFont;
      position: absolute;
      right: 15px;
    }
    
    @media (max-width: 1366px) {
      .nav-menu .drop-down .drop-down ul {
        left: -90%;
      }
      .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
      }
      .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
      }
    
      #buttoncentered{
        position: absolute;
      top: 80%;
      left: 50%;
      transform: translate(-50%, -50%);
    
      } 
    }
    
    /* Mobile Navigation */
    .mobile-nav-toggle {
      position: fixed;
      top: 23px;
      right: 15px;
      z-index: 9998;
      border: 0;
      background: none;
      font-size: 24px;
      transition: all 0.4s;
      outline: none !important;
      line-height: 1;
      cursor: pointer;
      text-align: right;
    }
    
    .mobile-nav-toggle i {
      color: #49b5e7;
    }
    
    .mobile-nav {
      position: fixed;
      top: 55px;
      right: 15px;
      bottom: 15px;
      left: 15px;
      z-index: 9999;
      overflow-y: auto;
      background: #fff;
      transition: ease-in-out 0.2s;
      opacity: 0;
      visibility: hidden;
      border-radius: 10px;
      padding: 10px 0;
    }
    
    .mobile-nav * {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    
    .mobile-nav a {
      display: block;
      position: relative;
      color: #0f394c;
      padding: 10px 20px;
      font-weight: 500;
      outline: none;
    }
    
    .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
      color: #49b5e7;
      text-decoration: none;
    }
    
    .mobile-nav .drop-down > a:after {
      content: "\ea99";
      font-family: IcoFont;
      padding-left: 10px;
      position: absolute;
      right: 15px;
    }
    
    .mobile-nav .active.drop-down > a:after {
      content: "\eaa1";
    }
    
    .mobile-nav .drop-down > a {
      padding-right: 35px;
    }
    
    .mobile-nav .drop-down ul {
      display: none;
      overflow: hidden;
    }
    
    .mobile-nav .drop-down li {
      padding-left: 20px;
    }
    
    .mobile-nav-overly {
      width: 100%;
      height: 100%;
      z-index: 9997;
      top: 0;
      left: 0;
      position: fixed;
      background: rgba(7, 25, 33, 0.6);
      overflow: hidden;
      display: none;
      transition: ease-in-out 0.2s;
    }
    
    .mobile-nav-active {
      overflow: hidden;
    }
    
    .mobile-nav-active .mobile-nav {
      opacity: 1;
      visibility: visible;
    }
    
    .mobile-nav-active .mobile-nav-toggle i {
      color: #fff;
    }
    
    .button {
      border: none;
      color: white;
      padding: 16px 32px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      transition-duration: 0.4s;
      cursor: pointer;
    }
    
   /*--------------------------------------------------------------
    # Dropdown
    --------------------------------------------------------------*/
  
    .dropbtn {
      background-color: #58b3df;
      color: white;
      padding: 16px;
      margin-top:80px;
    
      font-size: 18px;
      width:1270px;
      border: none;
      cursor: pointer;
    }
    
    /* The container <div> - needed to position the dropdown content */
    .dropdown {
      position: fixed;
      display: inline-block;
    }
    
    /* Dropdown Content (Hidden by Default) */
    .dropdown-content {
      display: none;
      position: sticky;
      background-color: white;
      max-width: 1270px;
      
    }
    
    /* Links inside the dropdown */
    .dropdown-content a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
    }
    
    /* Change color of dropdown links on hover */
    .dropdown-content a:hover {background-color: #f1f1f1}
    
    /* Show the dropdown menu on hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }
    
    /* Change the background color of the dropdown button when the dropdown content is shown */
    .dropdown:hover .dropbtn {
      background-color: #58b3df;
    }
    
    /*--------------------------------------------------------------
    # Kotak BUku 1270 Section
    --------------------------------------------------------------*/
    #btn-step{
      background: red;
    }
    
    #cover {
      width: 100%;
      height: 100%;
      background: #ffff;
    }
    
    .button1 {
      background-color: transparent;
      color:rgb(0, 195, 255);
      border: 2px solid rgb(0, 195, 255); /* Green */
      border-radius: 12px;
      font-size: 28px;
      font-family: 'Nunito', sans-serif;
            padding: 12px 20px;
            position: absolute;
            top: 40%;
            left: 17%;
    
    }
    
    .button1:hover {
      background-color:rgb(0, 195, 255);
      color: white;
    }
  
    #new .container{
      padding: 30px 10px;
      margin-top: 100px;  
      max-width: 1270px;
    }
    
    #number1 .container {
      position: relative;
      width: 100%;
      background-color: white;
      max-width: 1270px;
      margin-top: 120px;  
      
    }
  
    #akunsaya .container {
      position: relative;
      width: 100%;
      height:84vh;
      color:white;
      background: #72c0e7;
  
      max-width: 1270px; 
    }

    #portfolio .container {
      position: relative;
      width: 100%;
      max-width: 1270px;
     
    }

    #carapinjam .container{

      margin-top:100px;
      max-width: 1080px;
    }

    #keranjang .container{
        margin-top:40px;
        
    }

    #keranjang{
        margin-left:100px;
        
    }
  
    .button2 {
      text-align: right;
    }
  
    #login .container{
      max-width:1270px;
      margin-top: 100px;
      height:60vh;
      background: #72c0e7;
    }

    #caribuku .container{
        margin-top: 80px;
    }

    #reset .container{
      max-width:1270px;
      height:60vh;
      background: #72c0e7;
    }
  
    .colkat-container {
      display: flex;
      width: 100%;
    }
  
    #register .container{
      max-width:1270px;
      margin-top: 100px;
      height:74vh;
      background: #72c0e7;
    }
  
    #offerbook .container{
       width: 100%;
      max-width:1270px;
      background: #72c0e7;
      padding-top: 50px;
    }

    #pesanan .container{
        margin-top:80px;
        margin-left:350px;
        width: 65%;
        font-size:18px;
    }

    #riwayat .container{
        width:80%;
        margin-left:200px;
        margin-top:40px;
    }

    #bukusaya .container{
        margin-top:60px;
        max-width: 1270px;
        margin-left:200px;
        width: 80%;
        font-size:14px;
    }
    
  
    .data{
      position: absolute; top: 26%;left:56%;
    }
    
    
    @media (max-width: 991px) {
        .kategorii {
            display: block;
            width: 100%;
            height:30vh;
        }
    
        .dropbtn {
            background-color: #58b3df;
            color: white;
            padding: 10px;
        
            font-size: 18px;
            max-width:380px;
            border: none;
            cursor: pointer;
        }

        .dropdown-content {
            display: none;
            position: sticky;
            background-color: white;
            max-width: 380px;
            
        }
        
        /*home*/
        .button1 {
            font-size: 16px;
        }
    
        #number1 {
            width: 100%;
            height: 1200vh;
        }
        
        #number1 .container {
            position: relative;
            width: 100%;
            max-width: 991px;
        }
    
        /*akunsaya*/
        #akunsaya .container {
            position: relative;
            width: 100%;
            max-width: 991px;
            height:90vh;
            color:white;
            background: #72c0e7;
        }
    
        #akunsaya img{
            width: 100%;
            height: 0vh;
        }

        #bukusaya .container{
            margin-top:60px;
            max-width: 991;
            margin-left:0px;
            width: 100%;
            font-size:14px;
          }
    
        #bukusaya .bukuimg{
            width:150px;
            height: 150px;
    
    
        }
    
        /*isidata*/
        .button2 {
            text-align: center;
        }
    
        .data{
            position: absolute; top: 22%;left:26%;
        }
    
        /*berbagibuku*/
        .judul img{
            width: 991px;
            height: 100px;
            object-fit: cover;
        }
    
        #offerbook .container{
            width: 100%;
            max-width:991 px;
            background: #72c0e7;
            height:110vh;
            padding-top: 50px;
        }
    
        /*login*/
        #login .container{
            height:80vh;
            margin-top: 0px;
        }

        #caribuku .container{
            margin-top: 20px;
        }
    
        /*register*/
        #register .container{
            height:100vh;
            margin-top: 0px;
        }  

        #reset .container{
            
            height:40vh;
        }
    }
    
   
    
    
    @media (max-width: 768px) { 

        .kategorii {
            display: block;
            width: 100%;
            height:30vh;
        }
    
        .dropbtn {
            background-color: #58b3df;
            color: white;
            padding: 10px;
            margin-top: 0px;
            font-size: 18px;
            max-width:330px;
            border: none;
            cursor: pointer;
        }

        .dropdown-content {
            display: none;
            position: sticky;
            background-color: white;
            max-width: 380px;
            
        }
        
        /*home*/
        .button1 {
            font-size: 16px;
        }

        
    
        #number1 {
            width: 100%;
            height: 130vh;
        }
        
        #number1 .container {
            position: absolute;
            width: 100%;
            height: auto;
            max-width: 786px;
            background-color: white;
            margin-top: 50px;
            
            
            
            
        }

        #pesanan .container{
          position: absolute;
          width: 100%;
          max-width: 700px;
          margin-left: 0px;
          margin-top:30px;
          font-size:12px;
          background: #ffffff;
         
  
      }

      #bukusaya .container{
        margin-top:60px;
        max-width: 786px;
        margin-left:0px;
        width: 100%;
        font-size:16px;
      }

      #carapinjam .container{

        margin-top:60px;
        max-width: 786px;
      }

        #bukusaya .bukuimg{
            width:0px;
            height: 0px;


        }

        #portfolio .buku{
          position: absolute;
            width: 100%;
            max-width: 786px;
        }

        #portfolio .container{
          position: absolute;
            width: 100%;
            max-width: 786px;
            margin-top: 0px;
            background-color: white;
        }
    
        /*akunsaya*/
        #akunsaya .container {
            position: relative;
            width: 100%;
            max-width: 786px;
            height:90vh;
            color:white;
            background: #72c0e7;
        }

        #riwayat .container{
            margin-top:0px;
        max-width: 786px;
        margin-left:0px;
        width: 100%;
        font-size:16px;   
        height:150vh;     }
    
        #akunsaya img{
            width: 100%;
            height: 0vh;
        }
    
        /*isidata*/
        .button2 {
            text-align: center;
        }
    
        .data{
            position: absolute; top: 22%;left:26%;
        }
    
        /*berbagibuku*/
        .judul img{
            width: 768px;
            height: 100px;
            object-fit: cover;
        }
    
        #offerbook .container{
            width: 100%;
            max-width:768 px;
            background: #72c0e7;
            height:115vh;
            padding-top: 10px;
        }
    
        /*login*/
        #login .container{
            height:90vh;
        }
    
        /*register*/
        #register .container{
            height:115vh;
        }  

        #reset .container{
            
            height:40vh;
        }  

        #keranjang{
            margin-left:0px;
        
            
        }

        #keranjang .container{
            margin-top:20px;
            
            
        }

        
    }

    @media (max-width: 480px) {
      .new{
        padding: 10px 10px;
           
      }
      .button1 {
        font-size: 8px;
        padding: 6px 12px;
        top: 40%;
    left: 15%;
      }
    }


    
  
    /*--------------------------------------------------------------
    # Sections General
    --------------------------------------------------------------*/
    section {
      padding: 10px 0;
    }
    
    .section-bg {
      /*background-color: #f4fbfe;*/
      background-color:white;
    }
    
    .subheader{
    
      background-color: yellow;
    }
    
    .section-title {
      text-align: center;
      letter-spacing: 1px;
      /*background-color: #f4fbfe;*/
      font-family:'Nunito', sans-serif;
      font-size: 40px;
      color: black;
    }
    
    
    
    .section-title p {
      margin-bottom: 0;
    }
    
    
    /*--------------------------------------------------------------
    # Portfolio
    --------------------------------------------------------------*/
    
    
    .portfolio .portfolio-item {
      margin-bottom: 30px;
      
    }
    
    .portfolio #portfolio-flters {
      padding: 0;
      margin: 0 auto 10px auto;
      list-style: none;
      text-align: center;
      border-radius: 50px;
      padding: 2px 15px;
    }
    
    .portfolio #portfolio-flters li {
      cursor: pointer;
      display: inline-block;
      padding: 10px 15px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
      color: #444444;
      margin-bottom: 10px;
      transition: all 0.3s ease-in-out;
    }
    
    .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
      color: #49b5e7;
    }
    
    .portfolio #portfolio-flters li:last-child {
      margin-right: 0;
    }
    
    .portfolio .portfolio-wrap {
      
      margin-bottom: 20px;
      margin-right:auto;
      max-width: 600px;
      max-height: 1000px;
      overflow: hidden;
      border-radius: 1px;
      background: #fff;
      
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    
    }
    
    .portfolio .portfolio-img {
      /* height:300px;
      width:180px; */
      height:220px;
      width:150px;
      padding-top:20px;
      padding-bottom:20px;
      
      
      margin-left: auto;
      margin-right: auto;
      
    }
    
    .portfolio .portfolio-wrap::before {
      content: "";
      background: rgba(255, 255, 255, 0.9);
      position: absolute;
      left: 10px;
      right: 10px;
      top: 30px;
      bottom: 10px;
      transition: all ease-in-out 0.3s;
      z-index: 2;
      opacity: 0;
    }
    
    .portfolio .portfolio-wrap .portfolio-info {
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      text-align: center;
      z-index: 4;
      transition: all ease-in-out 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      
    }
    
    
    .portfolio .portfolio-wrap .portfolio-info h4 {
      font-size: 20px;
      color: #49b5e7;
      font-weight: 600;
    }
    
    .portfolio .portfolio-wrap .portfolio-info p {
      color: #000102;
      font-size: 12px;
      
      padding: 0;
      margin: 0;
    }
    
    .portfolio .portfolio-wrap .portfolio-links {
      text-align: center;
      z-index: 4;
    }
    
    .portfolio .portfolio-wrap .portfolio-links a {
      color: #49b5e7;
      margin: 0 2px;
      font-size: 28px;
      display: inline-block;
      transition: 0.3s;
    }
    
    .portfolio .portfolio-wrap .portfolio-links a:hover {
      color: #8dd0f0;
    }
    
    .portfolio .portfolio-wrap:hover::before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 1;
    }
    
    .portfolio .portfolio-wrap:hover .portfolio-info {
      opacity: 1;
    }
    
    .portfolio .portfolio-wrap:hover .portfolio-info::before {
      top: 15px;
      left: 15px;
    }
    
    .portfolio .portfolio-wrap:hover .portfolio-info::after {
      bottom: 15px;
      right: 15px;
    }
    
   
    
    /*--------------------------------------------------------------
    # Breadcrumbs
    --------------------------------------------------------------*/
    .breadcrumbs {
      padding: 15px 0;
      background: #f0f9fd;
      margin-top: 84px;
    }
    
    @media (max-width: 992px) {
      .breadcrumbs {
        margin-top: 74px;
      }
    }
    
    .breadcrumbs h2 {
      font-size: 28px;
      font-weight: 400;
      font-family:'Nunito', sans-serif;
    }
    
    .breadcrumbs ol {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 15px;
    }
    
    .breadcrumbs ol li + li {
      padding-left: 10px;
    }
    
    .breadcrumbs ol li + li::before {
      display: inline-block;
      padding-right: 10px;
      color: #175977;
      content: "/";
    }
    
    @media (max-width: 768px) {
      .breadcrumbs .d-flex {
        display: block !important;
      }
      .breadcrumbs ol {
        display: block;
      }
      .breadcrumbs ol li {
        display: inline-block;
      }
    }
    
    /*--------------------------------------------------------------
    # Portfolio Details
    --------------------------------------------------------------*/
    .portfolio-details {
      padding-top: 40px;
    }
    
    .portfolio-details .portfolio-details-container {
      position: relative;
    }
    
    .portfolio-details .portfolio-details-carousel {
      position: relative;
      z-index: 1;
    }
    
    .portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
      margin-top: 5px;
      text-align: left;
    }
    
    .portfolio-details .portfolio-details-carousel .owl-dot {
      display: inline-block;
      margin: 0 10px 0 0;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #ddd !important;
    }
    
    .portfolio-details .portfolio-details-carousel .owl-dot.active {
      background-color: #49b5e7 !important;
    }
    
    .portfolio-details .portfolio-info {
      padding: 30px;
      position: absolute;
      right: 0;
      bottom: -70px;
      background: #fff;
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
      z-index: 2;
    }
    
    .portfolio-details .portfolio-info h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eee;
      color: #0f394c;
    }
    
    .portfolio-details .portfolio-info ul {
      list-style: none;
      padding: 0;
      font-size: 15px;
    }
    
    .portfolio-details .portfolio-info ul li + li {
      margin-top: 10px;
    }
    
    .portfolio-details .portfolio-description {
      padding-top: 50px;
    }
    
    .portfolio-details .portfolio-description h2 {
      width: 50%;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .portfolio-details .portfolio-description p {
      padding: 0 0 0 0;
    }
    
    @media (max-width: 768px) {
      .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
        
      }
    }
    
    
    
    @media (max-width: 575px) {
      #footer .copyright, #footer .credits {
        float: none;
        text-align: center;
      }
    }
    
    /* form input */
    
    .form-group {
    
      
      right:0;
      width: 100%;
      color:white;
      margin: 0px auto;
      
      /* background-color: #f4fbfe; 
      background-color:#1e4194;*/
      padding: 10px 0px 0px 20px;
      text-align: center;
      /*-webkit-box-shadow: 2px 2px 3px 3px rgba(0,0,0,0.1);
      box-shadow: 2px 2px 3px 3px rgba(0,0,0,0.1);*/
    }
    
    
    .form-group2 {
    
      
      right:0;
      width: 100%;
      color:white;
      margin: 0px auto;
      /* background-color: #f4fbfe; */
      background-color:white;
      padding: 20px 40px 20px 40px;
      text-align: center;
      /*-webkit-box-shadow: 2px 2px 3px 3px rgba(0,0,0,0.1);
      box-shadow: 2px 2px 3px 3px rgba(0,0,0,0.1);*/
    }
    
    .formbtn {
      /* background-color: #ffc5ca; */
      color: white;
      padding: 16px 20px;
      border: none;
      cursor: pointer;
      width: 100%;
      opacity: 0.9;
    }
    
    
    
    .form-bg{
    
    background-color: #1e4194;
    }
    
    .bg-img {
      /* The image used */
      background-image: url("/image/nametag2.png");
      font-size: medium;
      font-family:'Nunito', sans-serif;
     
      /* Control the height of the image */
       min-height: 480px;
    
      /* Center and scale the image nicely */
      background-position: center;
      background-repeat: no-repeat;
      
      position: relative;
    
    }
    
    
   
    .btn-bio {
      font-size: 16px;
      color: #1e4194;
      background-color: white;
      border-color: white;
      border-radius: 2px;
    }
    
    
    
    .form-control{
      width: 100%;
      padding: 12px 20px;
      margin: 8px 0;
      display: inline-block;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }
    
    
    /*login form */
    
    .card-header{
      background-color: #5dbcd2;
      color: white;
    }
    
    
    .card-body{
      width: 100%;
      background-color: #f4fbfe;
      /*background: rgba(73, 181, 231, 0.1);*/
      text-align: center;
      /* -webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
      box-shadow: 2px 2px 3px rgba(0,0,0,0.1); */
    
    }
    
    /*table center*/
    .table-center {
      margin: 0 auto;
    }
  