.loader{
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 15px solid #3409db;
	width: 60px;
	height: 60px;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

@keyframes spin{
	0% { transform: rotate(0deg);}
	100% { transform: rotate(360deg);}
}

input[type=radio]{
	color: red;
	border: 2px solid #f3f3f3;
}

#content{
	width: 800px;
	margin: auto;
	background-color: white;
	margin-top: 15px;
	margin-bottom: 15px;
	position: relative;
	padding: 10px;
	align-items: center;
	justify-content: center;
}

#box{
	background-color: gray;
	width: 900px;
	margin: auto;
	margin-top: 10px;
	padding: 20px;
}

.input-radio:checked + span, .input-radio:hover + span {
        border: 2px solid #232323;
		background-image: linear-gradient(298deg, var(--red), var(--yellow));
		color: white;
    }
	
.input-radio {
    position: absolute;
    top: 0;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%;
	border-radius: 5px
}

.radio-label {
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,.2);
    background: #fff;
    display: inline-block;
    padding: .125rem .625rem;
    font-weight: 600;
    border: 2px solid #fff
}

.contenedor{
	margin: auto;
	background-color: red;
	height: 100px;
}

.input-container {
    position: relative
}

#Categorias{
	background-color: red;
	width: 100%;
	min-height: 50px;
}





/**
CSS de Checkboxes
*/
[type="radio"]:checked,
[type="radio"]:not(:checked){
	position: absolute;
	left: -9999px;
	width: 0;
	height: 0;
	visibility: hidden;
}


.checkbox-tools:checked + label,
.checkbox-tools:not(:checked) + label{
	position: relative;
	display: inline-block;
	padding: 20px;
	width: 130px;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 1px;
	margin: 0 auto;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	text-transform: uppercase;
	color: /*var(--white);*/ white;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}

.checkbox-tools:not(:checked) + label{
	background-color: #9495A6;/*var(--dark-light);*/
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
	
}

.checkbox-tools:checked + label{
	background-color: transparent;
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.checkbox-tools:not(:checked) + label:hover{
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
	background-color: #B6B8CC;
}

.checkbox-tools:checked + label{
	/*background-image: linear-gradient(298deg, #A6866A, #73553C);*/
	background: linear-gradient(298deg, #A6866A, #73553C);
	/*-webkit-transition: all 300ms linear;*/
	-webkit-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	/*color: white;*/
}
/*
.checkbox-tools:checked + label::before,
.checkbox-tools:not(:checked) + label::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-image: linear-gradient(298deg, #A6866A, #73553C);
	z-index: -1;
}
*/
/*
.checkbox-tools:checked + label .uil,
.checkbox-tools:not(:checked) + label .uil{
	font-size: 24px;
	line-height: 24px;
	display: block;
	padding-bottom: 10px;
}
*/
/*
.checkbox:checked + label,
.checkbox:not(:checked) + label{
	position: relative;
	width: 70px;
	display: inline-block;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	margin: 17px 0;
	margin-top: 100px;
	height: 6px;
	border-radius: 4px;
	background-image: linear-gradient(298deg, var(--red), var(--yellow));
	z-index: 100 !important;
}
*/
