body {
    padding: 0px;
    margin: 0px;
    background-color: purple;
    font-family: 'Roboto-Light';
}

p {
    margin: 0px;
}

boton {
    transition: .5s;
    min-height: 20px;
    min-width: 30px;
    max-height: 20px !important;
    max-width: 30px;
}

.float_msg {
    position: absolute;
    margin-left: -10px;
    font-size: small;
    opacity: 0%;
}


/* Extra small devices (phones, 600px and down) 
@media only screen and (max-width: 600px) {...}

/* Small devices (portrait tablets and large phones, 600px and up) 
@media only screen and (min-width: 600px) {...}

/* Medium devices (landscape tablets, 768px and up) 
@media only screen and (min-width: 768px) {...}

/* Large devices (laptops/desktops, 992px and up) 
@media only screen and (min-width: 992px) {...}

/* Extra large devices (large laptops and desktops, 1200px and up) 
@media only screen and (min-width: 1200px) {...}*/

@media only screen and (max-width: 700px) {
    .raw-container {
        margin: 0px;
        background-color: white;
        position: relative;
        width: 100%;
        min-height: 50px;
        display: grid;
    }
    .c100,
    .c50,
    .c25,
    .c12-5 {
        width: 100% !important;
    }
}

@media only screen and (min-width:701px) {
    .raw-container {
        margin: 0px;
        min-height: 50px;
        background-color: white;
        position: relative;
        width: 100%;
        display: flex;
    }
}


/*Estilo contenedores*/

.c100 {
    background-color: red;
    width: 100%;
}

.c50 {
    background-color: blue;
    width: 50%;
}

.c25 {
    background-color: yellow;
    width: 25%;
}

.c12-5 {
    background-color: green;
    width: 12.5%;
}


/*Estilo botones*/

.boton-pq {
    padding: 10px;
    cursor: pointer;
    display: inline-block;
    max-height: 30px;
}

.boton-md {
    cursor: pointer;
    display: inline-block;
    font-family: 'Roboto-Regular';
}

.boton-gd {
    padding: 20px;
    display: inline-block;
    font-family: 'Roboto-Regular';
    cursor: pointer;
}


/*tamano de texto*/

.texto-chico {
    font-size: small;
}

.texto-mediano {
    font-size: large;
}

.texto-grande {
    font-size: xx-large;
}


/* Estado*/

.peligro {
    background-color: #fc5185;
    clip-path: polygon(100% 0%, 100% 90%, 0 100%, 0 0);
    transition: .5s;
}

.alerta {
    background-color: #f2a154;
    clip-path: inset(0px 0px 0px 0px);
    ;
}

.correcto {
    background-color: #3fc1c9;
    clip-path: polygon(100% 0%, 100% 100%, 0 90%, 0 0);
}


/*Animaciones de botones*/

boton.peligro:hover {
    background-color: #ff2727;
}

boton.alerta:hover {
    background-color: #ff7b00;
}

boton.correcto:hover {
    background-color: #00e4f0;
}


/*Iconos*/

.triangle-down-i {
    width: 100%;
    height: 20px;
    background-color: white;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transition: 0.5s;
}

.circle-i {
    width: 100%;
    height: 20px;
    background-color: white;
    clip-path: circle(35% at 50% 50%);
    transition: 0.5s;
}

.rombo-i {
    width: 100%;
    height: 20px;
    background-color: white;
    clip-path: polygon(50% 0%, 80% 50%, 50% 100%, 20% 50%);
    transition: 0.5s;
}

.remover-i {
    margin: 0px 3px;
    width: 80%;
    height: 24px;
    background-color: white;
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
    transition: 0.5s;
}

boton:hover #float_msg {
    opacity: 100%;
}

boton:hover :first-child {
    transform: rotate(180deg);
    opacity: 0%;
}