.txred
{
  color: #ff0000;
}

.txgreen
{
  color: #09b341;
}

.pill
{
  border-radius: 50px;
}
.txblack
{
  color: #000;
}
.mr-1
{
  margin-right: 5px;
}
.mr-2
{
  margin-right: 10px;
}

.imgbox-out
{
  border:1px solid #efefef;
  border-radius:5px;
  width:120px;
  float: left;
  margin-right: 10px;
  min-height: 160px;
}

.imgbox-body
{
  min-height: 120px;
  padding:10px;
}

.imgbox-footer
{
  text-align:center
}

.pos-prdbox-image
{

}
.pos-prdbox-shadow-outer
{

}


.pos-prdbox-image
{
    background-position: center;
    width: 100%;
    height: 230px;
    background-repeat: no-repeat;
    background-size: contain;
}

.pos-prdbox-body
{
    padding:40px 10px 0 10px;
    min-height: 220px;
}

.pos-prdbox-footer
{
    padding: 10px 5px;
    min-height: 140px
}

.pos-prdbox-footer-label
{
    font-size:1.2em;
}

/* custome design */
.bg-gray-gradient { 
  /* height: 200px; */
  background-color: white; /* For browsers that do not support gradients */
  background-image: linear-gradient(white, gray) !important;
}

.bg-gray-gradient2 {
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(gray)) fixed;
}

.sidebar {
  position: absolute;
  /* top: 0; */
  left: 0;
  height: 100%;
  width: 230px;
  padding: 10px 14px;
  /* background: var(--sidebar-color); */
  transition: var(--tran-05);
  z-index: 100;

}


footer {
  position: fixed;
  left: 0;
  bottom: 0;
  height: 12%;
  width: 100%;
}

.home{
  position: absolute;
  /* top: 0;
  top: 0; */
  left: 230px;
  height: 100vh;
  width: calc(100% - 250px);
  transition: var(--tran-05);
}

.sidebar.close ~ .home{
  left: 78px;
  height: 100vh;
  width: calc(100% - 78px);
}


/* landing pages card properties */

.card-properties{
  max-width: 18rem!important;
  height: 20rem!important;
  box-shadow: 0px 2px 2.4px 2.4px rgb(159, 154, 154)!important;
  }

  .text-black{
      color: black;
  }

  .borderBottom{
      border-bottom: 1px solid rgb(214, 209, 209)!important;
  }

  /* end of landing pages card properties */


  /* black color rounded button */

.login-bttn{
  color: rgb(255,255,255)!important;
  background-color: rgb(0,0,0)!important;
  border-radius: 30px!important;
  text-transform: none!important;
  font-weight: normal!important;
}

.btn:hover {
  background-color: rgb(0,0,0)!important;
  border-color: var(--bs-btn-hover-border-color);
}

/* end of black color rounded button */

/* rounded input */
.input-rounded{
  -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
     border-radius: 5px;
     border: 1px solid rgb(189, 186, 186) !important;
     color: black;
     width: 95%;
     height: 35px;
     margin-left: 10px;
     margin-right:10px;
}

.input-rounded:focus {
  color: #495057;
  background-color: #fff;
  border-color: #e2dfe2 !important;
  outline: 0;
  box-shadow: 0 0 0 2px #e2dfe2 !important;
}
/* rounded input */


/* make list items scrollable inside the landing page cards  */
.card-li-scroll {
  max-height: 390px;
  overflow-y: auto;
}