@import url('https://fonts.googleapis.com/css?family=Work+Sans:400,500,600,700&display=swap');
/** {
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
}*/

.user-cart span{
    background-color:red; 
    padding-right:3px; 
    padding-left:3px;  
    border-radius:10px; 
    font-size:18px;
    margin-left:-1.2rem;
}

/*********** admin dashboard styling **********/
  .card{
      background-color: #0f98f8;
      padding:20px;
      margin: 10px;
      border-radius: 10px;
      box-shadow: 8px 5px 5px #10131533;
  }

/************************** for sidebar ***********************************/

  /* The sidebar menu */
  .sidebar {
        position: fixed;
        overflow-y: auto;
        top: 40px;
        float: left;
        z-index: 9990;
        width: 160px;
        height: 100vh;
        background-color: #1d2327;
        padding-top: 15px;
    }
    
    /* The sidebar links */
    .sidebar a {
      font-weight: 400;
      line-height: 1.8;
      padding: 0;
      color: #fff;
      display: block;
      text-decoration: none;
    }
    
    .sidebar .side-header{
          text-align: center;
          margin-bottom: 8px;
          color: #fff;
      }

    /* When you mouse over the navigation links, change their color */
    .sidebar a:hover {
      /*background-color: #0f98f8;*/
        background: #2271b1;
        color: #fff;
    }
    
    .navbar {
        padding: 10px 3px!important;
        position: fixed;
        z-index: 9999;
        width: 100%;
    }
    .navbar li a {
    color: #fff !important;
    text-decoration: none;
    }
    
    /* Position and style the close button (top right corner) */
    .sidebar .closebtn {
      position: absolute;
      top: 0;
      right: 2px;
      font-size: 34px;
      margin-left: 50px;
    }
    
    /* The button used to open the sidebar */
    .openbtn {
      font-size: 20px;
      cursor: pointer;
      padding: 10px 15px;
      border: none;
      color: #fff;
      background-color:#0f98f8;
    }
    
    .openbtn:hover {
      color: #ECDAC9;
    }
    
    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
      transition: margin-left .5s; /* If you want a transition effect */
      padding: 20px;
    }
    
    /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
    @media screen and (max-height: 450px) {
      .sidebar {padding-top: 15px;}
      .sidebar a {font-size: 18px;}
    }

/************************** product table styling *********************************/

  table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    /*box-shadow: 0 2px 15px rgba(64, 64, 64, .7);*/
    border-radius: 12px 12px 0 0;
    margin-bottom: 50px;
  }

  td,
  th {
    padding: 10px 16px;
    text-align: center;
  }

  th {
    background-color: #91a6fe;
    color: #fff;
    font-size: 14px;
    font-family: 'Open Sans', Sans-serif;
    font-weight: bold;
  }
table.dataTable thead th {
    padding: 0px 5px !important;
}
table.dataTable tbody td {
    text-align: left !important;
}
  tr {
    width: 100%;
    background-color: #fafafa;
    font-family: 'Montserrat', sans-serif;
  }

  tr:nth-child(even) {
    background-color: #eeeeee;
  }


/************************ login and sign up styling  ******************************/

.card-container.card-account {
  max-width: 500px;
  padding: 30px 30px;
}

.btn {
  font-weight: 700;
  height: 36px;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
}

/*
* Card component
*/
.card-account{
  background-color: #ECDAC9;
  /* just in case there no content*/
  padding: 20px 25px 30px;
  margin: 0 auto 25px;
  margin-top: 40px;
  /* shadows and rounded borders */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}

.profile-img-card {
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  display: block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

/*
* Form styles
*/
.profile-name-card {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0 0;
  min-height: 1em;
}

.reauth-email {
  display: block;
  color: #404040;
  line-height: 2;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form-signin #inputEmail,
.form-signin #inputPassword {
  direction: ltr;
  height: 44px;
  font-size: 16px;
}

.form-signin input[type=email],
.form-signin input[type=password],
.form-signin input[type=text],
.form-signin button {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form-signin .form-control:focus {
  border-color: #ab9787;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #8a7a6d;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px #8a7a6d;
}

.btn.btn-signin {
  
  background-color: #0f98f8;
  padding: 2px;
  font-weight: 700;
  font-size: 16px;
  height: 36px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: none;
  -o-transition: all 0.218s;
  -moz-transition: all 0.218s;
  -webkit-transition: all 0.218s;
  transition: all 0.218s;
}

.btn.btn-signin:hover,
.btn.btn-signin:active,
.btn.btn-signin:focus {
  background-color: #a56a39;
}


.box {
  position: relative;
  background-color: #000;
}

.image {
  opacity: 1;
  display: block;
  max-width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
  object-fit: contain;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.box:hover .image {
  opacity: 0.3;
}

.box:hover .middle {
  opacity: 1;
}

.text {
  background-color: #0f98f8;
  color: #fff;
  font-size: 16px;
  padding: 6px;
  border-radius: 5px;
}

/* *******************   cart to login icon styling   ********************* */
.cart-login-btn{
  margin:5px;
  border-style: outset;
}
.cart-login-btn a i{
  padding: 10px;
  font-size:30px; 
  color:#0f98f8;              
}
.cart-login-btn a i:hover{  
  color: grey;
}


/* ****************************   footer  *************************** */
.footer-hover{
  color: #000;
}

.footer-hover:hover{
  color: #ECDAC9;
  text-decoration: none;
}

/* ****************************   Aditya Raj  *************************** */

.login-box {
    width: 360px;
    margin: 7% auto;
}
.login-page {
    background: #0f98f8;
}
.login-logo {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 300;
}
.login-box-body {
    background: #fff;
    padding: 20px;
    border-top: 0;
    color: #666;
}
.login-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 20px 20px;
}
.has-feedback {
    position: relative;
}

.form-group {
    margin-bottom: 10px;
    margin-top: 10px;
}
.form-control {
    border-radius: 0;
    box-shadow: none;
    border-color: #d2d6de;
}
.login-button {
    background-color: #333333;
    border-color: #333333;
    color: #fff;
}
.modal-dialog {
    max-width: 100%; 
    margin: 40px;
}
.form-control {
    padding: 1px 15px;
    background-color: #2271b129;
    border-radius: 25px !important;
}
.form-card {
    background-color: aliceblue;
    /*border: 1px solid #6cace0;*/
    padding: 5px;
}
.modal-body {
    margin: 10px;
}
#main-content {
     padding-left: 11.5rem;
     padding-right: 2rem;
     padding-top: 4rem !important;
     padding-bottom: 3rem !important;
}
.container {
  width: 100% !important;
}
td {
        font-size: 12px;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        border: unset !important;
        background: unset !important;
        padding: 2px !important;
        margin: 1px !important;
    }
    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        color: #000 !important;
        text-decoration: underline !important;
    }
#example .fa {
    font-size: 16px;
    margin: 5px;
    padding: 0px 6px;
    border-right: 1px solid #6c757d;
}
i.fa.fa-trash {
    color: red;
}
i.fa.fa-refresh {
    color: #04d53e;
}

.dataTables_wrapper .dataTables_filter input {
    float: inline-start;
}
i.fa.fa-search {
    margin: 5px;
    padding: 3px;
}
.btn.btn-secondary {
    border: 1px solid #2271b1;
    border-radius: 3px;
    background: #f6f7f7;
    font-size: 13px;
    font-weight: 400;
    color: #2271b1;
}
.dataTables_wrapper .dataTables_filter input, select {
    padding: 0px !important;
}
.modal-content {
    width: 80%;
    margin: 0 15%;
}
.paginate_button:hover {
    color: black !important;
}
b {
    color: #1f0091;
}
.modal-title {
    color: #1f0091;
}
h2 {
    color: #1f0091;
}
.bg-success {
    background-color: #28a745 !important;
}
.bg-warning {
    background-color: #ffc107 !important;
}