@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
body {
    font-family: "Lato", sans-serif;
    margin: 0;
    padding: 0;
    background-color: transparent;
    font-size: 16px;
}
.container {
    width: 1200px;
    max-width: 98%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px;
}
.dFlex {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-flow: row wrap;
}
.dFlex div { margin-bottom: 1%; }
.dFlex .half { width: 49%; }
.dFlex .third { width: 32%; }
.dFlex .fourth { width: 24%; }
.dFlex .full { width: 100%; }
form {
    box-sizing: border-box;
    padding: 20px 0;
}
.botonDiv {
    margin: 15px 0;
    border-top: 1px solid #ccc;
    display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row wrap;
    box-sizing: border-box;
    padding: 15px 0;
}
.botonDiv button {
    background-color: #ccc;
	color: #fff;
	font-size: 12px;
	padding: 8px 16px;
	text-align: center;
	border-radius: 10px;
	white-space: nowrap;
	outline: none;
	border: 1px solid #ccc;
	transition: 0.4s all;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	box-sizing: border-box;
	width: 49%;
}
.botonDiv button:hover, .botonDiv button:focus {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px #ccc;
    background-color: #54595F;
    border: 1px solid #000;
}
.switch {
	position: relative;
	display: inline-block;
	width: 50px !important;
	height: 28px;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: #aaa;
	transition: 0.4s;
	border-radius: 28px;
}
.switch .slider::before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}
.switch input:checked + .slider { background-color: #88e788; }
.switch input:checked + .slider::before { transform: translateX(22px); }
label:not(.switch) {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}
input:not([type="checkbox"]), select, textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}
textarea { height: 150px; }
.columna.skeleton { height: 30px; display: block; }
.skeleton {
    background: linear-gradient( 90deg, #bbb 25%, #aaa 37%, #aaa 63% );
    background-size: 400% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
	opacity: 0.3;
}
@keyframes skeleton-loading {
	0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.animacionPop {
	transition: transform 0.3s;
	&:hover, &:focus { animation: animacionPop 0.3s forwards; }
}
@keyframes animacionPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.04); }
    100% { transform: scale(1); }
}
@media screen and ( max-width: 1050px ) {
    .dFlex .fourth { width: 32%; }
}
@media screen and ( max-width: 700px ) {
    .dFlex .half { width: 100%; }
    .dFlex .third { width: 100%; }
    .dFlex .fourth { width: 48%; }
}
@media screen and ( max-width: 580px ) {
    .dFlex .fourth { width: 100%; }
}