@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');

.autocomplete-container {
	position: absolute;
	width: auto;
	z-index: 1000;
	border-top: transparent;
	padding-block: 0.125rem;
	border-bottom-left-radius: 0.625rem;
	border-bottom-right-radius: 0.625rem;
	background-color: #fff;
	min-height: 0px;
	max-height: 250px;
	height: fit-content;
	box-shadow: 0px 0px 10px #00000017;
	overflow: auto;
}

.autocomplete-item {
	padding: 0.5rem 1rem;
	border-bottom: 0.5px solid #00000017;
}

.autocomplete-item:hover {
	background-color: #e3e3e3;
	cursor: pointer;
}
.bg-dark-282828 {
	background-color: #282828;
}

.btn,
.btn-primary {
	padding-block: 0.4906rem !important;
}

.app-page-loader {
	background-color: rgba(255, 255, 255, 0.85) !important;
}

.here {
	background-color: #030915 !important;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.operador-logistico {
	border: 2px solid transparent;
	transition: border 0.15s;
	background-color: #f4f4f4;
}

.operador-logistico:hover {
	border: 2px solid #ec691b;
	cursor: pointer;
}

.operador-logistico-selected {
	border: 2px solid #ec691b;
	background-color: #ec681b17;
}

.font-source-code {
	font-family: 'Source Code Pro', monospace;
}

.spinner-loading-custom {
	width: 30px;
	height: 30px;
	border-radius: 100%;
	border: 3px solid #ec681b2c;
	border-top: 3px solid #ec691b;
	margin: auto;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* TABLAS */

.table-element {
	width: 100%;
	background-color: white;
}

.thead-element {
	background-color: white;
}

.tr-element {
	border-bottom: 1px solid #f4f4f4;
	vertical-align: middle;
}

.td-element {
	padding: 8px;
	vertical-align: middle;
}

.th-element {
	font-size: 1.15rem;
	font-weight: bold;
	padding: 8px;
	vertical-align: middle;
}

/* TABLAS */

#versionRollback {
	position: fixed;
	bottom: 35px;
	right: 12px;
	z-index: 999;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
	max-width: 350px;
}

#versionRollback button.toggleState {
	padding: 9px 16px;
	background-color: #ec691b;
	color: white;
	width: 100%;
	max-width: 300px;
	border: none;
	font-size: 12px;
	line-height: 14px;
}

#versionRollback button.toggleState span {
	text-decoration: underline;
}

#versionRollback .content {
	padding: 0;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
	max-width: 300px;
}
#versionRollback .content.active {
	max-height: 221px;
	padding: 24px 16px;
	transition: max-height 0.3s ease-in-out;
}

#versionRollback .content h2 {
	font-size: 14px;
	line-height: 17px;
	font-weight: bold;
}

#versionRollback .content p {
	font-size: 10px;
	line-height: 12px;
}

#versionRollback .content form textarea {
	width: 100%;
	border: 1px solid black;
	padding: 8px;
	font-size: 10px;
	line-height: 12px;
}

#versionRollback .content form textarea::placeholder {
	color: #c2c2c2;
}

#versionRollback .content.result {
	max-width: unset;
}

#versionRollback .content.result .btn {
	width: 100%;
}
#versionRollback .content.result .btn-primary {
	margin-bottom: 12px;
}
