@charset "UTF-8";

.locale-flags {
	background-size: contain;
	background-repeat: no-repeat;
}

.bahasa {
	background-image: url('https://cdn-icons-png.flaticon.com/512/14009/14009993.png');
}

.english {
	background-image: url('https://cdn-icons-png.flaticon.com/512/555/555417.png');
}

.french {
	background-image: url('https://cdn-icons-png.flaticon.com/512/555/555602.png');
}

.bg-theme {
	background-color: var(--primary);
}

.darker-shadow {
	box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.5);
}

.rounder-card {
	border-radius: 12px;
}

.auth-form {
	width: 35% !important;
}

.sidebar-bg-options {
	cursor: pointer;
	transition: background-color 0.5s ease;
}

.sidebar-bg-options:hover {
	background-color: #cdcdcd;
}

ul.settings-list {
	list-style: none;
	padding-left: 0;
}

ul.settings-list > li {
	padding: 13px 35px;
	cursor: pointer;
	transition: background-color 0.5s ease;
}

ul.settings-list > li:hover {
	background-color: #cdcdcd;
}

ul.settings-list > li.active {
	background-color: #e6e9ed;
}

ul.settings-list > li > a {
	display: flex;
}

.table.dataTable .created-at .dropdown-menu {
	display: block !important;
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: opacity .5s ease;
}

.table.dataTable .created-at .dropdown-menu.show {
	opacity: 1;
	height: auto;
	visibility: visible;
}

div.pass-photo-container {
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: center;
}

div.pass-photo-container .pass-photo {
	width: 100%;
	border-radius: 16px;
	aspect-ratio: 1 / 1.3;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

div.pass-photo-container .pass-photo.is-loaded {
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

div.pass-photo-container .pass-photo.is-loading {
	background-color: lightgray;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.row.information-config {
	margin-bottom: .5rem;
}

.row.information-config .row {
	margin: .5rem 0;
}

.row.information-config .row div {
	font-size: .9rem;
	font-weight: 700;
}

.empl-info {
	display: flex;
	align-items: start;
}

.empl-info .empl-photo {
	width: 40px;
	height: 40px;
	border: 1px solid var(--gray-lighter);
	border-radius: 50%;
	margin-right: 1rem;
}

.empl-info .empl-name {
	font-weight: bolder;
	margin: auto 0;
}

a.mail-to {
	color: black;
	text-decoration: none;
	transition: color 0.25s ease-out;
}

a.mail-to:hover {
	color: var(--primary);
}

.input-group > .input-group-append > .btn {
	padding: .795rem 1.5rem;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

table.dataTable td.dt-empty {
	padding: 1.344rem 0;
}

.bootstrap-select.show .dropdown-menu {
    z-index: 9999 !important;
}

.bootstrap-select .bs-searchbox input {
    pointer-events: auto !important;
    z-index: 9999 !important;
    position: relative !important;
}

.profile-data h6 {
	font-size: 1.1rem !important;
}

.profile-data p {
	font-size: 1.1rem !important;
}

@media only screen and (max-width:620px) {
	.auth-form {
		width: 100% !important;
	}
}

@media only screen and (max-width:768px) {
	.auth-form {
		width: 90% !important;
	}
}

@media only screen and (min-width: 769px) and (max-width:1229px) {
	.auth-form {
		width: 50% !important;
	}
}