/*!
Additional styling for Bootstrap 4 project.
 */
body {
  overflow-x: hidden;
}

.full-button{
    width: 100%;
}

.list-group-item.active
{
    color: orange;
}

/*Glass styling for buttons*/
a.glass{
	position: relative;
	text-decoration: none;
	color: #fff;
	overflow: hidden;
	background: rgba(255,255,255,.1);
        @import "styling.css";

}
a.glass:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: rgba(255,255,255,.1);
}
a.glass:after{
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
	transition: 0.5s;
	transition-delay: 0.5s;
}
a.glass:hover:after{
	left: 100%;
}
a.glass span.empty{
	position: absolute;
	display: block;
	transition: 0.5s ease;
}
a.glass span.empty:nth-child(1)
{
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #fff;
}
a.glass:hover span.empty:nth-child(1)
{
	width: 100%;
	transform: translateX(100%);
}
a.glass span.empty:nth-child(3)
{
	bottom: 0;
	right: 0;
	width: 0;
	height: 1px;
	background: #fff;
}
a.glass:hover span.empty:nth-child(3)
{
	width: 100%;
	transform: translateX(-100%);
}
a.glass span.empty:nth-child(2)
{
	top: 0;
	left: 0;
	width: 1px;
	height: 0;
	background: #fff;
}
a.glass:hover span.empty:nth-child(2)
{
	height: 100%;
	transform: translateY(100%);
}
a.glass span.empty:nth-child(4)
{
	bottom: 0;
	right: 0;
	width: 1px;
	height: 0;
	background: #fff;
}
a.glass:hover span.empty:nth-child(4)
{
	height: 100%;
	transform: translateY(-100%);
}
/*END - Glass styling for buttons*/

.card-body-icon {
  position: absolute;
  z-index: 0;
  top: -1.25rem;
  right: -1rem;
  opacity: 0.4;
  font-size: 5rem;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
.footer-sticky-bottom {
width: 100%;
    padding-right: 0px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    margin-top: auto;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}
.container-footer {
    margin-right: 15px;
    text-align: right;    
}
.menu-image {
    position: fixed;
    bottom: 0;
    width: 230px;
    height: auto;
    margin-left: 5px;
    margin-bottom: 10px;
    line-height: 60px;
}

#sidebar-wrapper {
  min-height: 100vh;
  margin-left: -15rem;
  -webkit-transition: margin .25s ease-out;
  -moz-transition: margin .25s ease-out;
  -o-transition: margin .25s ease-out;
  transition: margin .25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
  padding: 0.875rem 1.25rem;
  font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
  width: 15rem;
}

#page-content-wrapper {
  min-width: 100vw;
  display: flex;
  flex-direction: column;
}

#wrapper.toggled #sidebar-wrapper {
  margin-left: 0;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    margin-left: 0;
  }

  #page-content-wrapper {
    min-width: 0;
    width: 100%;
  }

  #wrapper.toggled #sidebar-wrapper {
    margin-left: -15rem;
  }
}