
/*
  HTML
	[1] = Mouse Pointer
	[2] = col-d?? // col in devide
	[3] = Code background 
	[4] = infoCard 
	[5] = Container-Wrapper & PageFrame  
	[6] = Sidebar 
  [7] = Mat.Alert 
  [8] = Link - Default
  [9] = Display-Standalone-none
*/

.sh-btn-adminPanel {
  color:#DADADA;
  background-color:#4A235A;
}
.sh-btn-adminPanel:hover {
  color:#DADADA;
  background-color:#351941;
}

html { scroll-behavior: smooth; }

body {padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right));}

/* 
	[1] = Mouse Pointer
*/
.pointer {cursor: pointer;}

/* 
	[2] = col-d?? // col in devide
*/
.col-d1{ width:100%; } 
.col-d2{ width:50%; }
.col-d3{ width:33.3333%; }
.col-d4{ width:25%; }
.col-d5{ width:20%; }
.col-d6{ width:16.6666%; }
.col-d7{ width:14.2857%; }
.col-d8{ width:12.5%; }
.col-d9{ width:11.1111%; }
.col-d10{ width:10%; }
.col-d11{ width:9.0909%; }
.col-d12{ width:8.3333%; }

/*
	[3] = Code
*/
.sh-code{ line-height: 1.4; width: auto; background-color: #fff !important; padding: 8px 12px; border-left: 4px solid #4CAF50; }

/*
	[4] = infoCard
*/

.sh-infoCard{
    box-shadow: 2px 2px 10px #DADADA;
    margin: 5px;
    padding: 20px 10px;
    background-color: #fff;
    height: 100px;
    border-radius: 5px;
    transition: .3s linear all;
    position: relative;
  }

  .sh-infoCard:hover{
    box-shadow: 4px 4px 20px #acacac;
    transition: .3s linear all;
  }

  .sh-infoCard.primary{
    background-color: #007bff;
    color: #FFF;
  }

  .sh-infoCard.danger{
    background-color: #ef5350;
    color: #FFF;
  }  

  .sh-infoCard.success{
    background-color: #66bb6a;
    color: #FFF;
  }  

  .sh-infoCard.info{
    background-color: #26c6da;
    color: #FFF;
  }  

  .sh-infoCard.warning{
    background-color: #ffc107;
    color: #FFF;
  }  

  .sh-infoCard i{
    font-size: 5em;
    opacity: 0.2;
  }

  .sh-infoCard .count-numbers{
    position: absolute;
    right: 15px;
    bottom: 35px;
    font-size: 32px;
    display: block;
  }

  .sh-infoCard .count-name{
    position: absolute;
    right: 15px;
    bottom: 8px;
    font-style: italic;
    text-transform: capitalize;
    opacity: 0.5;
    display: block;
    font-size: 18px;
  }

/*
	[5] = PageFrame 
*/

  #sh-container-wrapper{
    display: flex;
    width: 100%;
    align-items: stretch;
  }

	#sh-FramePage{
		width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
  }

/*
	[6] = Sidebar 
*/

  .sh-Modal-Slidebar{
    z-index:1029; margin-top:54px;
    -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
	}

	#sh-Sidebar{
		min-width: 250px;
		max-width: 250px;
  }

 .sh-sidebar-heading {
    padding: 0.875rem 5rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}
.navbar-sidebar{
    border-color:#fff;
  }
	@media (max-width: 768px) {
    #sh-Sidebar {
        display:none;
    } }

/*
    [7] = Mat. Allerts
*/

.materialert{
  position: relative;
  min-width: 150px;
  padding: 15px;
  margin-bottom: 20px;
  margin-top: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.1s linear;
  webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.materialert .material-icons{
  margin-right: 10px;
}
.materialert .close-alert{
  -webkit-appearance: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  background: 0 0;
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
  filter: alpha(opacity=40);
  margin-bottom: -5px;
  position: absolute;
  top: 12px;
  right: 5px;
}
.materialert.info{
  background-color: #039be5;
  color: #fff;
}
.materialert.success{
  background-color: #43a047;
  color: #fff;
}
.materialert.error{
  background-color: #c62828;
  color: #fff;
}
.materialert.danger{
  background-color: #c62828;
  color: #fff;
}
.materialert.warning{
  background-color: #fbc02d;
  color: #fff;
}

/*
  [8] - Link Default
*/


.sh-link-default{
  color:blue;
}

/* 
  [9] - display-standalone-none
*/

@media (display-mode: standalone) {
  .d-standalone-none{
    display:none;
  }
}


    
 