:root {
	--amarillo: #ffb14c;
	--azul: #007bff;
	--rojo: rgb(255, 43, 43);
	--text-black: #495057;
}

.table-responsive {
    /* box-sizing: border-box; */
    /* overflow: hidden; */
}
.notBlock{
    display: none;
}

.spinner-load {
    position: fixed;
	top: 0;
	inline-size: 100%;
	block-size: 100%;
	display: flex;
	justify-content:center;
	align-items: center;
	background: rgba(254,254,255,.75);
	z-index: 9999;
	display: none;
}

.spinner {
	border: 4px solid rgba(0,0,0,.1);
	inline-size: 70px;
	block-size: 70px;
	border-radius: 50%;
	border-left-color: var(--azul);
	animation: spin .5s linear infinite;
}

.alert {
	margin-bottom: 0;
}

.requiredInput {
	font-weight: bold;
	color: var(--rojo);
}

li.select2-selection__choice {
	color: var(--text-black) !important;
}

.list-table {
	padding-left: .5rem;
}

.avatar {
	max-inline-size: 120px;
	border: 1px solid #dee2e6;
	padding: .3rem;
	border-radius: 10px;
	box-sizing: border-box;
}

.popup {    
    display: none;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.popup__image {
    position: relative;
    max-width: 800px;
}

.popup__image-view {
    margin-bottom: 1rem;
    width: 100%;
}

.popup__content {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    width: 100%;
}

.popup__text {
    color: #fff;
    font-size: .8rem;
    margin: 0;
    font-weight: 100;
}

.button_close_modal {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.button_action_close {
    position: absolute;
    top: -40px;
    right: 0;
}

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