
body{

  padding:50px 50px 50px 50px;
  height:100vh;
overflow:hidden;
width:100%;

  background-color: black;
}
.container{
/* 
  max-width:500px; */
  margin:0 auto;
  /* padding:50px 50px 50px 50px; */
  
  box-shadow:rgba(100,100,101,0.2) 0px 7px 29px 0px;



}
.form-group{
margin-bottom: 30px;

}

/* sidebar */
:root {
  --primary-color: #4a90e2;
  --bg-color: #f4f7fa;
  --text-color: #333;
  --sidebar-bg: #00000;
  --sidebar-hover: #e6f0ff;
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
}
.sidebar {
  height: 100%;
  width: 250px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
background-color: #29296c;
  overflow-x: hidden;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  white-space: nowrap;
}
.sidebar-header {
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.sidebar-header h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}
.toggle-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 20px;
  cursor: pointer;
  margin-left: 10px;
  transition: 0.2s;
}
.toggle-btn:hover {
  color: var(--primary-color);
}
.sidebar a {
  padding: 15px 25px;
  text-decoration: none;
  font-size: 16px;
  color: #a69e9e;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.sidebar a:hover {
  background-color: var(--sidebar-hover);
  color: var(--primary-color);
}
.sidebar a i {
  min-width: 30px;
  font-size: 20px;
}
#main {
  transition: margin-left .3s;
  padding: 20px;
  margin-left: 250px;
}
.sidebar.closed {
  width: 70px;
}
.sidebar.closed .sidebar-header h3 {
  display: none;
}
.sidebar.closed a span {
  display: none;
}
.sidebar.closed ~ #main {
  margin-left: 70px;
}
@media screen and (max-width: 768px) {
  .sidebar {
      width: 70px;
  }
  .sidebar .sidebar-header h3 {
      display: none;
  }
  .sidebar a span {
      display: none;
  }
  #main {
      margin-left: 70px;
  }
  .sidebar.open {
      width: 250px;
  }
  .sidebar.open .sidebar-header h3 {
      display: block;
  }
  .sidebar.open a span {
      display: inline;
  }
  .sidebar.open ~ #main {
      margin-left: 250px;
  }
}

/* cards */

/* dropdown */
.dropdown {
  position: relative;
}

.btn-dropdown {
  /* background-color: #444; */
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-dropdown:hover {
  background-color: #555;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-menu li {
  border-bottom: 1px solid #ddd;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #000;
}

.dropdown:hover .dropdown-menu {
  display: block;
  border:none;
}

/* dashboard cards */

h2,
h5,
.h2,
.h5 {
font-family: inherit;
font-weight: 600;
line-height: 1.5;
margin-bottom: .5rem;
color: #32325d;
}

h5,
.h5 {
font-size: .8125rem;
}

@media (min-width: 992px) {

.col-lg-6 {
  max-width: 50%;
  flex: 0 0 50%;
}
}

@media (min-width: 1200px) {

.col-xl-3 {
  max-width: 25%;
  flex: 0 0 25%;
}

.col-xl-6 {
  max-width: 50%;
  flex: 0 0 50%;
}
}


.bg-danger {
background-color: #f5365c !important;
}



@media (min-width: 1200px) {

.justify-content-xl-between {
  justify-content: space-between !important;
}
}


.pt-5 {
padding-top: 3rem !important;
}

.pb-8 {
padding-bottom: 8rem !important;
}

@media (min-width: 768px) {

.pt-md-8 {
  padding-top: 8rem !important;
}
}

@media (min-width: 1200px) {

.mb-xl-0 {
  margin-bottom: 0 !important;
}
}




.font-weight-bold {
font-weight: 600 !important;
}


a.text-success:hover,
a.text-success:focus {
color: #24a46d !important;
}

.text-warning {
color: #fb6340 !important;
}

a.text-warning:hover,
a.text-warning:focus {
color: #fa3a0e !important;
}

.text-danger {
color: #f5365c !important;
}

a.text-danger:hover,
a.text-danger:focus {
color: #ec0c38 !important;
}

.text-white {
color: #fff !important;
}

a.text-white:hover,
a.text-white:focus {
color: #e6e6e6 !important;
}

.text-muted {
color: #8898aa !important;
}

@media print {
*,
*::before,
*::after {
  box-shadow: none !important;
  text-shadow: none !important;
}

a:not(.btn) {
  text-decoration: underline;
}

p,
h2 {
  orphans: 3;
  widows: 3;
}

h2 {
  page-break-after: avoid;
}



body {
  min-width: 992px !important;
}
}

figcaption,
main {
display: block;
}

main {
overflow: hidden;
}

.bg-yellow {
background-color: #ffd600 !important;
}






.icon {
width: 3rem;
height: 3rem;
}

.icon i {
font-size: 29px;
margin-right:1px;
}

.icon-shape {
display: inline-flex;
padding: 12px;
text-align: center;
border-radius: 50%;
align-items: center;
justify-content: center;
}

.bimg{
 background-image: url("../img/bimg.png");
background-repeat: no-repeat;
background-size: cover;

}
@media only screen and (max-width: 600px) {
footer  {
  background-color: #f8f9fa;
  /* text-align: center; */
  position: fixed;
  bottom: 0;
  width: 90%;
}
}

@media only screen and (max-width: 600px) {
  body {
   overflow:hidden;

  }
#main{
overflow:hidden;
}
/* pos page style */
