.tcenter{
    text-align: center;
}

#aviso{
    display:none;
    position:fixed;
    bottom:0;
    font-size: 18px;
    padding: 12px 24px 24px;
    background-color:rgb(173, 230, 178);
    color:#333;
    width:100%;
    cursor:pointer;
    text-align:center;
}
#aviso.info{
    background-color:lightblue;
    color:darkblue;
}
#aviso.error{
    color:#fff;
    background-color:red;
}
#aviso.advertencia{
    color:#333;
    background-color:darkorange;
}

#carga{
    float:left;
    width:100%;
    height:4px;
    margin-top: -10px;
}
#carga.cargando { 
    padding: 0;
    background-color: lightblue;
    float: left;
    width: 100%;
    height: 16px;
    position: fixed;
    bottom: 0;
}
#carga.cargando:before {
    content:'';
    border:0;
    border-radius:10px;
    position:absolute;
    top:0; 
    right:0; 
    bottom:0; 
    left:0;
}
#carga.cargando .barra { 
    position: absolute;
    top: 4px;
    right: 100%;
    bottom: 0;
    left: 0;
    background: #333;
    width: 0;
    height: 8px;
    animation: borealisBar 4s linear infinite;
}

@keyframes borealisBar {
    0% {
        left:0%;
        right:100%;
        width:0%;
    }
    10% {
        left:0%;
        right:75%;
        width:25%;
    }
    90% {
        right:0%;
        left:75%;
        width:25%;
    }
    100% {
        left:100%;
        right:0%;
        width:0%;
    }
}

.pestanas{
    user-select: none;
    background-color: #eee;
    width: fit-content;
    padding: 3px;
    border-radius: 16px;
    color: #555;
    > div{
        display: inline-block;
        cursor: pointer;
        border-radius: 16px;
        border: 1px solid #ccc;
        padding: 4px 12px;
        background-color: #fff;
        text-transform: uppercase;
        font-weight: 500;
    }
    > div.act{
        color: #333;
        background-color:#b6c931;
    }
}


input[type="checkbox"]:not(.sel) {
	font-size: 30px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 22px;
	height: 14px;
	background: #ddd;
	border-radius: 12px;
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	vertical-align: text-bottom;
	margin: 0;
	margin-right: 6px;
}

input[type="checkbox"]:not(.sel):checked {
    background: #274198;
    background-image: linear-gradient(to top, #274198, #1eb5cf);
}

input[type="checkbox"]:not(.sel):after {
	position: absolute;
	content: "";
	width: 12px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	-webkit-box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.3);
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

input[type="checkbox"]:not(.sel):checked:after {
	left: calc(100% - 12px);
}

i.cerrar{
    float:right;
    cursor:pointer;
    font-size: 18px;
}

div.dostercios{
    display:grid;
    grid-template-columns: 66% 33%;
    gap: 0;
}

div.acciones{
    button{
        background-color:#b6c931;
        float: right;
        color: #333;
        padding: 12px 24px;
        text-transform: uppercase;
        border-radius: 12px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.2s ease;
        border:1px solid #333;
        &:hover {
            background-color:#61c931;
        }

        &:active {
            background-color:#61c931;
        }
    }
}