:root {
    --min-height-contenido: calc(100vh - 216px);
    --min-heigth-bloque-client: calc(100vh - 105px - 30px - 81px - 60px); /* altura header - altura footer - altura pestaņas - margin bloque*/
}

html {
    height: 100vh;
    min-width: 320px;
}

body {
    height: 100vh;
    margin: 0 auto;
    color: rgba(254, 254, 254, 255);
    font-family: 'RenogareSoft-Regular';
    min-width: 320px;
}

.div-header {
    background: linear-gradient(to bottom, rgba(64, 214, 229, 255), rgb(43, 193, 214));
    background: -prefix-linear-gradient(to bottom, rgba(64, 214, 229, 255), rgb(43, 193, 214));
    min-height: 104px;
    border-bottom: 1px solid rgba(33, 181, 204, 255);
    box-shadow: 0px 4px 12px rgb(0 0 0 / 0.4);
    position: relative;
}

    .div-header > .headerContainer {
        box-sizing: border-box;
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        height: 104px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

        .div-header > .headerContainer > .logo {
            height: 54px;
            width: auto;
            margin-left: calc(100vw - (0.9786 * 100vw));
        }

        .div-header > .headerContainer > .userContent {
            height: 54px;
            width: 100%;
            margin-right: calc(100vw - (0.9786 * 100vw));
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: flex-end;
        }

div.nameUser {
    display: flex;
    align-items: center;
    height: 26px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc(12/16 * 1rem);
    margin-right: 5px;
}

.btn-off {
    height: 26px;
    width: 26px;
    cursor: pointer;
}

    .btn-off:active {
        height: 25px;
    }

.div-contenido {
    min-width: 100%;
    min-height: var(--min-height-contenido);
    /* min-height: calc(100vh - 135px); */
    background: url(../images/bg.png) 0% 0% / 100% 100% no-repeat rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
}

.center-bloque {
    display: flex;
    align-items: center;
}

.div-footer {
    min-width: 100%;
    /* min-height: calc(100vh - (0.9556 * 100vh)); */
    min-height: 30px;
    background-color: rgb(71, 81, 95);
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc(12/16 * 1rem);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

    .div-footer > .footerContent {
        box-sizing: border-box;
        padding-top: 6px;
        padding-bottom: 6px;
    }

        .div-footer > .footerContent > a {
            text-decoration: none;
            color: rgba(254, 254, 254, 255);
        }

.visibleHidden {
    visibility: hidden;
}

.container-tables-mantenimiento-datos {
    /* 15 15 15 50 */
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    width: auto;
    height: 100%;
    color: black;
    /* border: 1px solid black; */
}

/**Pestaņas */
.tab-content-tables {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: #f4f4f3;
    width: auto;
    height: 80px;
    overflow-y: hidden;
    overflow-x: auto;
    border-top: 1px solid #e0e0df;
    border-right: 1px solid #e0e0df;
    border-left: 1px solid #e0e0df;
}

.tab-table {
    min-width: 90px;
    max-width: 150px;
    width: calc((100vw - 55px - 65px) / 6);
    font-size: calc(12/16 * 1em);
    font-family: 'RenogareSoft-Regular';
    height: 45px;
    background-color: rgba(236, 236, 235, 255);
    color: rgba(184, 184, 184, 255);
    margin-left: 15px;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    align-self: flex-end;
    border-top: 3px solid #22b8cf;
    cursor: pointer;
}

    .tab-table > img {
        height: 50px;
        width: 50px;
        margin-top: 10%;
    }

        .tab-table > img.FaqsImg {
            height: 35px;
            width: 35px;
            margin-top: 5px;
            margin-left: 8px;
            margin-right: 8px;
        }

    .tab-table:last-child {
        margin-right: 15px;
    }

    .tab-table:hover {
        box-shadow: 0px 4px 12px rgb(0 0 0 / 0.4);
    }

.tab-table-active {
    border-top: 3px solid #5eaca0;
    background-color: rgba(255, 255, 255, 255);
    color: rgba(133, 133, 133, 255);
}

.tab-table-admin {
    border-top: 3px solid #ff010d;
    background-color: rgba(236, 236, 235, 255);
    color: rgba(133, 133, 133, 255);
}

    .tab-table-admin.tab-table-active {
        background-color: rgba(255, 255, 255, 255);
    }
/** Fin Pestaņas */

.container-icons-administrar {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
}

a.icon {
    cursor: pointer;
    text-decoration: none;
    padding-left: 10px;
}

/** DATATABLE */

.table-custom {
    width: 100%;
    max-width: 100%;
    /* min-width: calc(100vw - 60px - 30px - 30px - 29px - 15px); */
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc((12/16) * 1em);
    border-collapse: collapse;
}

    .table-custom tr:nth-child(even) {
        background-color: #f2f2f2
    }

    .table-custom > thead > tr > th {
        min-width: 100px;
        text-align: left;
        padding-left: 10px;
        padding-right: 10px;
        cursor: pointer;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 500;
        height: 34px;
        color: rgba(255, 255, 255, 255);
        background-color: rgba(34, 184, 207, 255);
        border-top: 1px solid rgba(215, 242, 246, 255);
    }

    .table-custom > tbody > tr {
        height: 80px;
    }

        .table-custom > tbody > tr > td {
            color: rgba(133, 133, 133, 255);
            vertical-align: top;
            padding: 15px;
            max-height: 80px;
        }

.table-devices-border {
    border-bottom: 1px solid #e0e0df;
    border-right: 1px solid #e0e0df;
    border-left: 1px solid #e0e0df;
}

.table-devices {
    margin-right: 7px;
    padding-right: 8px;
    padding-left: 15px;
    overflow-x: auto;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: auto;
    max-height: 1200px;
}

    .table-devices > table > thead > tr {
        position: sticky;
        top: -1px;
        z-index: 1;
    }

.btn-anadir > img:hover {
    border-radius: 5px;
    box-shadow: 0px 2px 6px rgb(0 0 0 / 30%);
}

.btn-anadir {
    display: flex;
    cursor: pointer;
}

/** Buscador Datatable */

.contenedor-buscador {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 23px;
    /*15px padding + margin rigth de la tabla + 8px del ancho el scrool*/
    border-top: 1px solid #e0e0df;
    border-right: 1px solid #e0e0df;
    border-left: 1px solid #e0e0df;
}

    .contenedor-buscador > .dataTables_filter {
        font-size: calc((12/16) * 1em);
        color: rgba(133, 133, 133, 255);
    }

        .contenedor-buscador > .dataTables_filter > label > input {
            outline: none;
            border-radius: 5px;
            border: 1px solid rgba(184, 184, 184, 255);
            height: 34px;
            background-color: rgba(255, 255, 255, 255);
            padding-left: 10px;
            margin-left: 10px;
            font-family: Arial, Helvetica, sans-serif;
            color: rgba(133, 133, 133, 255);
        }

            .contenedor-buscador > .dataTables_filter > label > input:focus, #table-farmacos_filter > label > input:focus {
                border: 1px solid rgba(187, 225, 132, 255);
            }

            .contenedor-buscador > .dataTables_filter > label > input::placeholder {
                color: rgba(217, 217, 217, 255);
                ;
                opacity: 1;
            }

            .contenedor-buscador > .dataTables_filter > label > input:-ms-input-placeholder {
                color: rgba(217, 217, 217, 255);
                ;
            }

            .contenedor-buscador > .dataTables_filter > label > input::-ms-input-placeholder {
                color: rgba(217, 217, 217, 255);
                ;
            }

    .contenedor-buscador > .dataTables_filter {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

        /**label filtrar */
        .contenedor-buscador > .dataTables_filter > label {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            align-items: center;
            justify-content: center;
        }

.btn-buscar {
    text-align: center;
    font-weight: 500;
    color: rgba(255, 255, 255, 255);
    background-color: #5eaca0;
    height: auto;
    width: auto;
    border-radius: 5px;
    border: 0px solid transparent;
    outline: none;
    font-family: "RenogareSoft-Regular";
    margin-right: 2em;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    margin-right: 2em;
    margin-left: 2em;
}

/* Paginacion DataTable */

.dataTables_paginate, .paging_simple_numbers {
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc((12/16) * 1em);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
    color: black;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.paginate_button.previous, .paginate_button.next {
    border: 1px solid white;
    display: flex;
    align-items: center;
    height: 25px;
    width: auto;
    padding-left: 7.5px;
    padding-right: 7.5px;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    color: rgba(255, 255, 255, 255);
    background-color: #5eaca0;
}

    .paginate_button.previous.disabled, .paginate_button.next.disabled {
        cursor: default;
        border: 1px solid white;
        background-color: rgba(244, 244, 243, 255);
        color: rgba(133, 133, 133, 255);
    }

.dataTables_paginate > span {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.paginate_button.current {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 23px;
    width: 25px;
    color: rgba(38, 185, 207, 255);
    background-color: rgba(255, 255, 255, 255);
    border: 2px solid rgba(38, 185, 207, 255);
    cursor: default;
}

.ellipsis {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    color: rgba(38, 185, 207, 255);
    background-color: rgba(244, 244, 243, 255);
    border: 1px solid rgba(255, 255, 255, 255);
}

.paginate_button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    color: rgba(255, 255, 255, 255);
    background-color: #5eaca0;
    border: 1px solid white;
    cursor: pointer;
}

    .paginate_button.previous:not(.disabled):hover, .paginate_button.next:not(.disabled):hover {
        background-color: teal;
    }

.dataTables_paginate > span > .paginate_button:not(.current):hover {
    background-color: teal;
}

table > thead > tr th.sorting::before, th.sorting_asc::before, th.sorting_desc::before {
    content: '';
    display: block;
    float: left;
    left: 0;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    margin-right: 10px;
}

table > thead > tr th.sorting::after, th.sorting_asc::after {
    content: '';
    display: block;
    left: 10;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
}

table > thead > tr > th.sorting_asc::after {
    border-top: 6px solid silver;
}

table > thead > tr > th.sorting_desc::before {
    border-bottom: 6px solid silver;
}

.field-validation {
    font-size: calc((12/16)*1em);
    font-family: Arial, Helvetica, sans-serif;
    color: red;
    margin-top: 1em;
}

/** SCROLL*/

.table-devices::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(216, 216, 216, 255);
    border-radius: 10px;
    background-color: #ffffff;
}

.table-devices::-webkit-scrollbar {
    scroll-margin-right: 10px;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
}

.table-devices::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(216, 216, 216, 255);
    background-color: rgba(210, 210, 210, 255);
}

/* Buttons */

/* ::-webkit-scrollbar-button:single-button {
    background-color: rgba(210,210,210,255);
    display: block;
    border-style: solid;
    height: 9px;
    width: 12px;
  } */

/** LOGIN */

.divLogin {
    background-color: rgba(219, 219, 219, 255);
    border-radius: 3%;
    box-shadow: rgba(14, 30, 37, 0.32) 0px 8px 16px 0px, rgba(14, 30, 37, 0.32) 0px -8px 16px 0px;
}

.loginContainer {
    box-sizing: border-box;
    border-radius: 3%;
    background: linear-gradient(to bottom, rgba(250, 254, 254, 1) 0%, rgba(179, 242, 247, 1) 10%, rgba(94, 227, 237, 1) 33%, rgba(191, 244, 248, 1) 66%, rgba(250, 254, 254, 1) 90%);
}

.bloque-form-login {
    box-sizing: border-box;
    margin: auto;
    padding: 6px;
    min-width: 320px;
    width: auto;
    /* max-width: 400px; */
}

.formLogin {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    padding: 40px;
}

    .formLogin > .part-form-login > p {
        margin: auto;
        color: rgba(16, 156, 173, 255);
        font-size: calc(12/16 * 1rem);
        text-align: center;
    }

.margin-form-login {
    margin-top: 40px;
}

.form-control {
    display: flex;
    width: 100%;
    height: 30px;
}

    .form-control .icon {
        position: absolute;
        padding-top: 7px;
        padding-bottom: 7px;
        padding-left: 7px;
        padding-right: 7px;
    }

.margin-textbox {
    margin-bottom: 15px;
}

.pd-left-textbox {
    padding-left: 34px;
}

.textbox {
    width: 100%;
    height: 30px;
    border: 1px solid rgba(219, 219, 219, 255);
}

    .textbox:focus {
        border: 1px solid rgba(187, 225, 132, 255);
        outline: none;
    }

.divAcceder {
    margin-top: 20px;
    flex-direction: row-reverse;
}

.btn-acceder {
    background-color: rgba(43, 166, 194, 255);
    height: 30px;
    width: 60%;
    color: rgba(254, 254, 254, 255);
    border-radius: 5px;
    cursor: pointer;
    border-color: transparent;
}

/** BARRA vertical */

.vertical_solid {
    margin-left: 4px;
    margin-right: 4px;
    height: calc(12/16 * 1rem);
    border-right: 1px rgba(254, 254, 254, 255) solid;
}

/** TAB */

.tab-content {
    padding-top: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    height: 60px;
    margin-left: calc(100vw - (0.9786 * 100vw));
    color: rgba(207, 207, 207, 255);
    font-size: calc(14/16 * 1em);
}

.tab {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

    .tab > p:hover {
        color: rgba(60, 192, 213, 255);
        text-shadow: rgba(60, 192, 213, 255) 1px 0 10px;
    }

.tabs-active {
    color: rgba(60, 192, 213, 255);
}

.margin-bloque-client {
    padding-top: 30px;
    padding-bottom: 30px;
}

.bloque-client {
    margin: auto;
    width: calc(100vw - 60px);
    min-height: var(--min-heigth-bloque-client);
    height: auto;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 6px rgb(0 0 0 / 30%);
    border-radius: 12px;
}

.vertical_solid_blue {
    width: 2px;
    height: 40px;
    margin: auto;
    margin-left: 0px;
    margin-right: 0px;
    border-right: 2px solid rgba(44, 166, 194, 255);
}

/** FORM guardar mantenimiento de datos */

.margin-bottom-1 {
    margin-bottom: 1em;
}

.margin-bottom-2 {
    margin-bottom: 2em;
}

.margin-bottom-4 {
    margin-bottom: 4em;
}

.margin-right-2 {
    margin-right: 2em;
}

.margin-top-2 {
    margin-top: 2em;
}

.margin-top-4 {
    margin-top: 4em;
}

.form-insert-mantenimiento-datos {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.row {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.row-botones {
    margin-right: 2em;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.label-form {
    color: #8d8d8d;
    font-size: calc(12/16 * 1em);
    ;
    width: 100%;
    margin-bottom: calc(8/16 * 1em);
}

.field-form {
    background-color: rgba(244, 244, 243, 255);
    color: rgba(129, 129, 129, 255);
    border: 1px solid rgba(217, 217, 217, 255);
    padding-left: 10px;
    border-radius: 5px;
    margin-right: 2em;
    outline: none;
}

    .field-form:focus {
        border-color: rgba(187, 225, 132, 255);
    }

.input-form-dimension {
    width: 100%;
    height: 24px;
}

.textarea-form-dimension {
    padding-top: 10px;
    width: 100%;
}

.select-form-dimension {
    width: 100%;
    height: 28px;
}

input:disabled, textarea:disabled {
    color: rgba(177, 177, 177, 255);
}

.form-group-display {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#imageLogo {
    display: none;
}

.custom-file-upload {
    text-align: center;
    background-color: rgba(43, 166, 194, 255);
    color: rgba(225, 242, 246, 255);
    font-size: calc(12/16 * 1em);
    border-radius: 5px;
    border: 1px solid rgba(217, 217, 217, 255);
    font-family: Arial, Helvetica, sans-serif;
    padding: 8px 12px;
    display: inline-block;
    cursor: pointer;
    width: 60px;
    margin-left: -2px;
}

    .custom-file-upload:hover {
        box-shadow: rgba(60, 192, 213, 255) 1px 0 10px;
    }

.custom-file-upload-input {
    width: 25%;
    background-color: rgba(255, 255, 255, 255);
    color: rgba(129, 129, 129, 255);
    border: 1px solid rgba(217, 217, 217, 255);
    border-right: 0px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: calc(12/16 * 1em);
    outline: none;
    display: inline-block;
    padding: 6px 12px;
}

.sub-label-form {
    margin-top: 8px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(129, 129, 129, 255);
    width: 100%;
    font-size: calc(12/16 * 1em);
}

.btn-form {
    text-align: center;
    font-weight: 500;
    color: rgba(255, 255, 255, 255);
    background-color: #5eaca0;
    height: auto;
    width: auto;
    border-radius: 5px;
    border: 0px solid transparent;
    outline: none;
    font-family: "RenogareSoft-Regular";
    margin-right: 2em;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
}

.btn-ver {
    color: rgba(255, 255, 255, 255);
    background-color: #5eaca0;
    height: 26px;
    width: auto;
    border-radius: 5px;
    border: 0px solid transparent;
    outline: none;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    padding-left: 20px;
    padding-right: 20px;
}

.container-button-a:focus {
    box-shadow: 0px 2px 6px rgb(0 0 0 / 30%);
}

button:hover, button:focus {
    box-shadow: 0px 2px 6px rgb(0 0 0 / 30%);
}

.center-cell {
    text-align: center;
}

.title-form {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-family: 'RenogareSoft-Regular';
    color: rgba(60, 192, 213, 255);
}

.subtitle-principal {
    font-size: calc((24/16) *1em);
    color: rgba(157, 156, 156, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-align: center;
}

.principal-content {
    height: auto;
    min-height: var(--min-height-contenido);
    /* min-height: calc(100vh - (105px + 30px + 200px)); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
}

    .principal-content > .principal-subcontent {
        margin: 0 auto;
    }

.principal-subcontent:first-child {
    padding-top: 50px;
}

.principal-subcontent:last-child {
    padding-bottom: 50px;
}

.img-separated {
    display: none;
}

.img-together {
    display: block;
}

@media (min-width: 0px) and (max-width:657px) {

    .subtitle-principal {
        padding-left: 10px;
        padding-right: 10px;
    }

    .img-separated {
        align-items: center;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

        .img-separated > img {
            margin-top: 20px;
            margin-bottom: 20px;
        }

    .img-together {
        display: none;
    }
}

/** MEDIA QUERY*/

@media (min-width: 0px) and (max-width:400px) {
    /* Form login*/
    .part-form-login > img {
        min-width: 240px;
        width: calc(100vw - 80px);
    }

    .part-form-login {
        min-width: 240px;
        width: calc(100vw - 80px);
        padding-left: 0px;
        padding-right: 0px;
    }
    /*end Form login*/
    .tab-content {
        width: 0px;
        font-size: calc(12/16 * 1em);
    }
}

@media (max-width: 320px) {
    .bloque-client {
        margin-left: 15px;
        margin-right: 15px;
        width: 290px;
    }
}

@media (max-width: 480px) {
    .row-botones {
        justify-content: center;
        margin-right: 0em;
    }

    .btn-form {
        margin-bottom: 2em;
    }
}

.container-button-a {
    text-decoration: none;
    outline: none;
}

.no-sort::after, .no-sort::before {
    display: none !important;
}

.no-sort {
    pointer-events: none !important;
    cursor: default !important;
}

/** COL System */

@media (min-width:0px) and (max-width:320px) {
    .col-mitad {
        width: 100%;
    }

    .col {
        width: 100%;
    }

    .col-tercio {
        width: 100%;
    }

    .col-cuarto {
        width: 100%;
    }

    .col-trescuartos {
        width: 100%;
    }

    .col-quinto {
        width: 100%;
    }

    .col-sexto {
        width: 100%;
    }
}

@media (min-width:320px) and (max-width:768px) {
    .col-mitad {
        width: 100%;
    }

    .col {
        width: 100%;
    }

    .col-tercio {
        width: 100%;
    }

    .col-cuarto {
        width: 100%;
    }

    .col-trescuartos {
        width: 100%;
    }

    .col-quinto {
        width: 100%;
    }

    .col-sexto {
        width: 100%;
    }
}

@media (min-width:768px) and (max-width:992px) {
    .col-mitad {
        width: 50%;
    }

    .col {
        width: 100%;
    }

    .col-tercio {
        width: 33.33%;
    }

    .col-cuarto {
        width: 25%;
    }

    .col-trescuartos {
        width: 75%;
    }

    .col-quinto {
        width: 20%;
    }

    .col-sexto {
        width: 15%;
    }
}

@media (min-width:992px) {
    .col-mitad {
        width: 50%;
    }

    .col {
        width: 100%;
    }

    .col-tercio {
        width: 33.33%;
    }

    .col-cuarto {
        width: 25%;
    }

    .col-trescuartos {
        width: 75%;
    }

    .col-quinto {
        width: 20%;
    }

    .col-sexto {
        width: 15%;
    }
}

@media (max-width:755px) {
    .contenedor-buscador > .dataTables_filter {
        justify-content: center;
    }

    .btn-anadir {
        margin-top: 20px;
    }
}

@media (max-width:565px) {
    .contenedor-buscador > .dataTables_filter > label > button {
        margin-top: 20px;
    }
}

/** PAGINACION nueva */

.fila-contenido-botonera {
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc((12/16) * 1em);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
    color: black;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .pagination > li {
        list-style: none;
    }

.page-item > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 30px;
    color: rgba(255, 255, 255, 255);
    background-color: #5eaca0;
    border: 1px solid white;
    cursor: pointer;
    text-decoration: none;
}

.page-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 23px;
    width: 28px;
    color: rgba(38, 185, 207, 255);
    background-color: rgba(255, 255, 255, 255);
    border: 2px solid rgba(38, 185, 207, 255);
    cursor: default;
}

.page-item:not(.active) > a:hover {
    background-color: teal;
}

.pagination > .num-pagination {
    display: flex;
    align-items: center;
    color: rgba(133, 133, 133, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc((16/16) * 1em);
    margin-bottom: 10px;
    margin-top: 10px;
}

.pagination-container.list {
    display: flex;
    align-items: center;
}

/** Desplegables **/

#Faqs .accordion-header {
    margin-bottom: 0;
    font-family: 'RenogareSoft-Regular';
    color: rgba(60, 192, 213, 255);
    background-color: rgba(60, 192, 213, 255);
}

#Faqs .accordion-flush.accordion-collapse {
    border-width: 0;
}

#Faqs .accordion-flush.accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

    #Faqs .accordion-flush .accordion-item:first-child {
        border-top: 0;
    }

#Faqs .accordion-flush.accordion-button {
    border-radius: 0;
}

#Faqs .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #fff;
    text-align: left;
    /*background-color: #fff;*/
    background-color: #22b8cf;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}

    #Faqs .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: #22b8cf;
        box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
    }

        #Faqs .accordion-button:not(.collapsed)::after {
            background-image: url("../images/accordion-icon.svg");
            transform: rotate(-180deg);
        }

    #Faqs .accordion-button::after {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-left: auto;
        content: "";
        background-image: url("../images/accordion-icon.svg");
        background-repeat: no-repeat;
        background-size: 1.25rem;
        transition: transform .2s ease-in-out;
    }

#Faqs .accordion-body {
    padding: 1rem 1.25rem;
    background: white;
    color: #22b8cf;
}

#Faqs .accordion-item:not(:first-of-type) {
    border-top: 0;
}

#Faqs .accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
}

#Faqs .accordion-flush .accordion-collapse {
    border-width: 0;
    margin: auto;
    width: 80%;
    padding: 10px;
}
