*,
::after,
::before {
    box-sizing: border-box;
}

body {
    margin: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
}

li {
    list-style: none;
}

/* Layout skeleton */

.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}

#sidebar {
    max-width: 264px;
    min-width: 264px;
    transition: all 0.35s ease-in-out;
    box-shadow: 0 0 35px 0 rgba(49, 57, 66, 0.5);
    z-index: 1111;
}

/* Sidebar collapse */

#sidebar.collapsed {
    margin-left: -264px;
}

.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

.sidebar-logo {
    padding: 1.15rem 1.5rem;
}

.sidebar-logo a {
    font-size: 1.25rem;
    font-weight: 600;
}

.sidebar-nav {
    padding: 0;
}

.sidebar-header {
    padding: .2rem;
	margin: .8rem;
	cursor:pointer;
}

.sidebar-header[data-bs-toggle="collapse"] {
    border-bottom: 2px solid #0D6EFD;
}

.sidebar-header[data-bs-toggle="collapse"].collapsed {
    border-bottom: 2px solid transparent;
}

a.sidebar-link {
    padding: .25rem 1.5rem;
    position: relative;
    display: block;
}

.sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: .8rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.content {
    flex: 1;
    max-width: 100vw;
    width: 100vw;
}

/* Responsive */

@media (min-width:768px) {
    .content {
        width: auto;
    }
}

:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}
.popover{
        max-width:600px;
    }
	
.imagePreview {
    width: 100%;
    height: 100px;
    background-position: center center;
	background-color:#fff;
    background-size: contain;
	background-repeat:no-repeat;
    display: inline-block;
	border: 1px solid #dee2e6;
}

.avatar-list{
	width:32px;
	height:32px;
	border-radius:50%;
}
.bi::before, [class*=" bi-"]::before, [class^=bi-]::before{
	vertical-align: -.2em;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.w-95{
	width:95px;
}

textarea {
	resize:both;
}