.circle-menu-container {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 99;
}

.circle-menu-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1ef0a0;
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: 0;
  display: table;
  text-align: center;
}
.circle-menu-toggle i {
  color: #fff;
  font-size: 1.2em;
  display: table-cell;
  vertical-align: middle;
  transition: 0.2s;
}
.circle-menu-toggle.open i {
  transform: rotate(135deg);
}

.circle-menu-toggle:hover {
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.circle-menu-item {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  position: absolute;
  background-color: #ffffff;
  color: #bfbfbf;
  text-align: center;
}
.circle-menu-item i {
  line-height: 2.5em;
}


.circle-menu-item:hover {
  opacity: 0.8;
  cursor: pointer;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.circle-menu-round {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.circle-menu-round .circle-menu-item {
  bottom: 0.35em;
  right: 0.35em;
  transition: 0.2s;
}
.circle-menu-round.open .circle-menu-item:nth-of-type(1) {
  right: 0.5em;
  bottom: 4.25em;
  transition-delay: 0.1s;
}
.circle-menu-round.open .circle-menu-item:nth-of-type(2) {
  right: 3.5em;
  bottom: 3.5em;
}
.circle-menu-round.open .circle-menu-item:nth-of-type(3) {
  right: 4.25em;
  bottom: 0.5em;
}

@media (max-width: 767px) {
	
	.circle-menu-item {
	width: 3.4em;
	height: 3.4em;
	color: #444444;
	box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
	}
	.circle-menu-item i {
	line-height: 3.4em;
	}
	.circle-menu-round .circle-menu-item {
	bottom: 0.1em;
	right: 0.1em;
	transition: 0.2s;
	}
	.circle-menu-round.open .circle-menu-item:nth-of-type(1) {
	right: 0em;
	bottom: 4.25em;
	transition-delay: 0.1s;
	}
	.circle-menu-round.open .circle-menu-item:nth-of-type(2) {
	right: 4em;
	bottom: 4em;
	}
	.circle-menu-round.open .circle-menu-item:nth-of-type(3) {
	right: 4.25em;
	bottom: 0em;
	}
}

.sidebar-inner {
	position: absolute !important;
	height: 100% !important;
	top: 0 !important;
	display: flex;
	align-items: center;
}

.icon-menu li a {
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 70px;
}

.main-sidebar .sidebar-brand {
	height: 70px !important;
}

.main-sidebar .sidebar-inner .bottom-menu {
	bottom: 5px !important;
}

.meta a:hover {
	text-decoration: underline;
}

.dashboard-header-wrapper {
	height: auto !important;
	padding-top:20px;
}

.closet-item-grid { display:grid; grid-template-columns: repeat(auto-fill, 200px); gap:30px 20px; }

.closet-item-img { width:100%; height: 250px; object-fit: contain; background:#f8f8f8;z-index: 1 !important;padding: 10px 5px; }

.closet-item-card .round-button {
display: block;
margin-top: -16px;
margin-left: 5px;
border-radius: 50%;
height: 42px;
width: 42px;
line-height: 42px;
position: absolute;
color: #2c0982;
background-color: #fff;
background-repeat: no-repeat;
background-size: auto;
text-align: center;
text-decoration: none;
box-shadow: -3px 4px 10px rgba(0, 0, 0, 0.05);
z-index: 9999;
font-size: 18px;
transition: color 0.3s;
}
.closet-item-card .round-button:hover {
color: #ff1f00;
}

.closet-item-card .badge { 
font-size: 10px;
font-weight: 500;
padding: 5px 8px;
margin-top: 3px;
width: fit-content;
border: 0px;
border-radius: 999px;
background-color: #dddbe8;
color: #ffffff;
float: right; }

.closet-item-card .badge:hover {
background-color: #cfccdb;
}

.closet-item-card .edit-item { 
font-size: 10px;
font-weight: 500;
padding: 6px 8px;
margin-top: 3px;
width: fit-content;
border: 0px;
border-radius: 999px;
background-color: #26b77f;
color: #ffffff; }

.closet-item-card .edit-item:hover {
background-color: #1fa773;
}

.closet-item-card .overlay {
  width: 100%;
  height: 250px;
  display: block;
  margin-top: -250px;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2 !important;
  position: relative;
  transition: opacity 0.5s;
}
.closet-item-card .overlay:hover {
	opacity: 1;
}


.closet-item-card .text {
  color: white;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: auto;
  height: 100%;
  align-content: space-evenly;
  padding: 0 20px;
  text-align: center;
}

.closet-item-card .text span {
	display: inline-block;
	width: 100%;
}