@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

:root {
  --primary: #E6C341;
  --secondary: #102F41;
}

body {
	margin: 0;
	font-family: 'Lato', sans-serif;
}

a {
	color: #adb5bd;
	text-decoration: none !important;
}

.text-grey {
	color: #adb5bd;
}

.bg-grey {
	background: #888;
}

.bg-light-grey {
	background: #f3f3f3;
}

.bg-white {
	background-color: #fff;
}

.btn-light {
	background-color: #fff !important;
}

.active {
	background-color: rgba(255,255,255,0.2);
	color: #fff;
}
.active a {
	color: #fff !important;
}
.active i {
	color: var(--primary);
}

.btn-rounded-pill {
	padding-left: 50px;
	padding-right: 50px;
}

.bottom-float-nav {
	position: absolute;
	right: 0px;
	top: 23px;
	z-index: 99;
	border: 1px solid var(--secondary);
	display: none;
}

.bottom-float-nav li {
	cursor: pointer;
}

.bottom-float-nav li:hover {
	font-weight: 600;
}

.flyout {
	position: absolute;
	top: 0;
	border: 1px solid #ddd;
	background: #fff;
	color: var(--secondary);
	z-index: 9;
	display: none;
	border-radius: 3px;
}

.flyout.right {
	right: -133px;
}

.flyout.right.media {
	right: -87px;
}

.flyout.folder-right {
	right: -76px;
}

.flyout.active {
	display: block;
}

.flyout li {
	padding: 3px 8px;
	border-bottom: 1px solid #ddd;
}

.flyout li:hover {
	color: var(--primary);
}

.flyout li:last-child {
	border-bottom: none;
}

.pointer_left:after,
.pointer_left::after {
    position: absolute;
    top: 5px;
    left: -8px;
    content: '';
    width: 0;
    height: 0;
    border-right: solid 8px #fff;
    border-bottom: solid 8px transparent;
    border-top: solid 8px transparent;
    z-index: 10;
}

/*LOGIN PAGE*/
.login-wrapper .login-box {
	background-color: rgba(255,255,255,0.2);
	border-radius: 10px;
}
.login-box .password {
	position: relative;
}
.password-toggle {
	position: absolute;
	right: 13px;
	top: 10px;
	cursor: pointer;
}

/*ADMIN SIDE MENU AND USER BAR SECTIONS*/
.user-bar {
	background-color: #ddd;
	height: 50px;
}
.round-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	cursor: pointer;
}
.menu a {
	color: ;
}
.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	overflow: hidden;
	max-width: 225px;
	width: 225px;
}

.sidebar i {
	width: 15px;
}

.main-content {
	width: calc(100% - 15px);
	padding-left: 235px;
}

/*NOTIFICATIONS SECTION*/
.notifications-section {
	background-color: #f3f3f3;
}

/*DASHBOARD PAGE*/
.dashboard {
	height: calc(100% - 50px);
}
.icon-card {
	padding: 20px;
	max-width: 300px;
	min-width: 200px;
	border-radius: 3px;
	margin: 10px 5px;
	color: #fff;
	cursor: pointer;
}

.icon-card p {
	margin: 0;
}

.icon-card i {
	font-size: 1.5em;
	margin-bottom: 10px;
}

.notification-card {
	position: relative;
	width: 100%;
	background: #fff;
	border-radius: 5px;
	padding: 15px 20px;
	box-shadow: 3px 3px 2px 3px #ddd;
	cursor: pointer;
}

.cat-holder a {
	color: #212529;
}

.notification-card .dots {
	position: absolute;
	top: 20px;
	right: 13px;
}

.notification-card.active, .folder.active, .sub-folder.active {
	background-color: var(--secondary);
}

.folder.active-p, .sub-folder.active-p {
	background-color: var(--primary);
	color: #fff;
	border: 1px solid var(--primary);
}

.folder, .sub-folder {
	border-radius: 5px;
	padding: 8px;
	border: 1px solid var(--secondary);
	cursor: pointer;
}

.add-folder {
	border-radius: 5px;
	padding: 8px;
	border: 1px dashed var(--secondary);
	cursor: pointer;
}

.results .image-holder img {
	position: relative;
}

.results .image-holder .file-sel {
	position: absolute;
	top: 5px;
	right: 20px;
	width: 15px;
	height: 15px;
}