.eliminar {
    padding: 4px 10px;
    border-radius: 4px;
    border: 0;
    background: #920000;
    color: #fff;
    cursor: pointer;
}

.editar {
    padding: 4px 10px;
    border-radius: 4px;
    border: 0;
    background: #468f42;
    color: #fff;
    cursor: pointer;
}

.agregar {
    padding: 8px 0px;
    border-radius: 4px;
    border: 0;
    color: #fff;
    width: 100%;
    cursor: pointer;
    margin-left: 1px;
}

.delete_modal {
    font-size: 12px;
    margin: 30px 0px 0px 0px;
    text-align: center;
}

.ui-dialog-title {
    font-size: 12px;
}

.ui-button-text {
    font-size: 12px;
}

.insert_modal,
.edit_modal {
    font-size: 12px;
    margin: 20px 0px 0px 30px;
    color: #000000;
}

.threecolumn {
    width: 60%;
    float: left;
}

.twocolumn {

    float: left;
    width: 100%;

    /*
    @media (max-width: 480px) {
        width:50%; 
    } --

    @media (max-width: 1480px) {
        width:50%; 
    }*/
}

.twocolumnIndez {
    float: left;
    width: 100%;
}

.twocolumnIndezPrice {
    float: left;
    width: 100%;
}

.twocolumnIndezIzq {
    float: left;
    width: 100%;
}

.twocolumnIndezDer {
    float: left;
    width: 100%;
}

@media screen and (min-width: 480px) {
    .twocolumn {
        float: left;
        width: 46%;
        margin-right: 4%;
    }

    .twocolumnIndez {
        float: left;
        width: 28%;
        margin-right: 4%;
    }

    .twocolumnIndezPrice {
        float: left;
        width: 44%;
        margin-right: 4%;
    }

    .twocolumnIndezIzq {
        float: left;
        width: 63%;
    }

    .twocolumnIndezDer {
        float: left;
        width: 37%;
    }
}

.isDisabledLink {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.lds-ellipsis {
    position: relative;
    width: 80px;
    height: 20px;
}

.lds-ellipsis div {
    position: absolute;
    top: 10px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}