@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

body {
	background: #EBE3D5;
	font-size: 12px;
	font-family: 'Roboto', sans-serif;
}

.swal2-popup {
    font-size: 12px;
}

.main {
	height: 100vh;
	overflow-y: auto;
}

*::-webkit-scrollbar {
  display: none;
}

.btn:focus,
.btn-close:focus,
.form-control:focus,
.has-validation .form-control:focus {
	box-shadow: none !important;
	outline: none !important;
}

.navbar-toggler {
	border: none;
	border-radius: 0px;
}

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.navbar-nav .nav-item {
	text-transform: uppercase;
	padding: 0px 10px;
}

.login-wrapper {
	height: 100vh;
}

.login-wrapper form {
	width: 300px;
}

.wrapper .sidebar {
	height: 100vh;
	max-height: 100vh;
}

/*upload form*/

input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
    background: #0d45a5;
}
.drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    padding: 0px;
    border-radius: 5px;
    border: 1px dashed #999;
    color: #444;
    cursor: pointer;
    user-select: none;
    transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
    background: #fafafa;
    border-color: #111;
}

.drop-container:hover .drop-title {
    color: #222;
}

.drop-title {
    color: #444;
    font-size: 20px;
    text-align: center;
    transition: color .2s ease-in-out;
}