﻿@font-face {
    font-family: 'Roboto-Regular';
    src: url('Assets/Fonts/Roboto-Regular.ttf') format('truetype');
    /* Ruta relativa a la fuente en el proyecto */
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('Assets/Fonts/Roboto-Bold.ttf') format('truetype');
    /* Ruta relativa a la fuente en el proyecto */
}

body {
    color: #002c5d;
    margin: 0px;
    font-family: 'Roboto', sans-serif;
}

.cabecera {
    background-color: #002C5E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 2vw;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5)
}

.botonNaranga {
    height: 30px;
    border-radius: 5px;
    border: 1px solid white;
    background-color: #C5C5C5;
    font-weight: 600;
}

.botonNaranga.activo {
    background-color: orange;
}

.postCabecera {
    padding: 0px 3vw;
    margin-top: 20px;
    margin-bottom: 10px;
}

.postCabecera h1 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 22px;
}

.postCabecera p {
    margin: 0px;
    font-size: 14px;
}

.cuerpo {
    padding: 0px 3vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.contendorAceptaciones {
    width: 24%;
    height: 85vh;
}

.contenedorPdf {
    width: 75%;
    height: 85vh;
}

.tituloContAceptaciones {
    background-color: #002c5d;
    color: white;
    border: 1px solid #002c5d;
    padding: 5px 10px;
}

.tituloContAceptaciones h1 {
    margin: 0px;
    font-size: 16px;
}

.bold {
    font-weight: 600;
}

.tituloContAceptaciones p {
    margin: 0px;
    margin-top: 5px;
    font-size: 14px;
}

.cuerpoAceptaciones {
    border: 1px solid #002c5d;
    background-color: #e7e7e7;
    padding: 5px 15px;
    height: 92%;
}

.cuerpoAceptaciones>p {
    margin: 0px;
    font-size: 14px;
}

.cardAceptacion {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    position: relative;
    background-color: white;
    margin: 10px 0px;
    border-radius: 5px;
    justify-content: space-between;
    height: 90px;
    border-style: solid;
    border-width: 1px;
    border-color: white;
}

.cardAceptacion .cardObligatoria {
    visibility: hidden;
}

.cardAceptacion.marcado {
    border-style: solid;
    border-width: 1px;
    border-color: #002c5d;
    height: 100px;
}


.colorCard {
    height: 80px;
    width: 9px;
    margin-left: 5px;
    border-radius: 7px 0px 0px 7px;
    background-color: rgba(51, 245, 17, 0.2);
}

.cardTexto {
    width: 70%;
    padding: 10px 5px;
}

.cardTexto h1 {
    font-size: 14px;
    margin: 0px;
}

.cardTexto p {
    font-size: 12px;
}

.obligado.cardAceptacion .cardObligatoria {
    visibility: visible;
    margin-bottom: auto;
}

.checkbox {
    height: 30px;
    width: 30px;
    border: 2px solid #002c5d;
    border-radius: 8px;
    cursor: pointer;
}

.checkbox img {
    visibility: hidden;
}

.checkbox.remarcado img {
    visibility: visible;
}

.remarcado {
    background-color: #002c5d;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pdfViewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #3B3B3B;
    overflow-y: auto;
    height: 85vh;
}

canvas {
    margin-bottom: 25px;
}


#toolbar {
    display: flex;
    align-items: center;
    background-color: #2E64A4;
    color: white;
    border-radius: 5px 0px 0px 0px;
    height: 33px;
    padding-left: 5%;
}

#toolbar p {
    font-size: 12px;
    margin: 0px 5px;
}


#toolbar div {
    height: 100%;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid white;
}

#toolbar input[type='number'] {
    height: 15px;
    width: 29px;
    background-color: #FFFFFF;
    text-align: center;
    padding-left: 15px;
    border: 1px solid #002c5d;
    border-left: 0px;
    border-right: 0px;
}

#toolbar input[type='button'] {
    height: 19px;
    width: 14px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #002c5d;
    font-weight: 700;
}

#toolbar input[type='button'][value='<'] {
    border-radius: 4px 0 0 4px;
    border: 1px solid #002c5d;
}

#toolbar input[type='button'][value='>'] {
    border-radius: 0px 4px 4px 0px;
    border: 1px solid #002c5d;
}

.iconoOcultar,
.botonIz,
.botonDe {
    display: none;
}

#toolbar>div:nth-child(6) {
    border-left: 1px solid white;
    margin-left: 15px;
}


@media (max-width: 600px) {
    .relleno {
        background-color: #002c5d;
    }

    div.ocultarMenu.contendorAceptaciones {
        bottom: 0px;
        height: fit-content;
    }

    div.ocultarCuerpo.cuerpoAceptaciones {
        display: none;
    }

    .cuerpo {
        flex-direction: column;
    }

    .contenedorPdf {
        width: 100%;
    }

    .contendorAceptaciones {
        position: fixed;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 30vh;
        bottom: 0px;
    }

    .cuerpoAceptaciones {
        box-sizing: border-box;
        align-items: center;
        justify-content: space-around;
        overflow-x: auto;
        width: 100%;
        white-space: nowrap;
        display: block;
        position: relative;
    }

    .cardAceptacion>div,
    .cardAceptacion>img {
        display: inline-block;
    }

    .checkbox {
        position: relative;
        top: -60%;
        left: 5px;
    }

    .cardTexto {
        margin-left: 5%;
        position: relative;
        top: -15%;
    }

    .colorCard {
        margin-top: 5px;
    }

    .obligado.cardAceptacion .cardObligatoria {
        position: absolute;
        right: 0px;
    }

    .cardAceptacion {
        width: 75vw;
        margin: 0px 25px;
        min-width: 250px;
        display: inline-block;
        top: 15%;
    }

    .tituloContAceptaciones {
        padding-left: 30px;
    }

    body {
        padding-bottom: 100px;
    }

    .iconoOcultar,
    .botonIz,
    .botonDe {
        display: inline;
    }

    .botonDe {
        position: fixed;
        z-index: 2;
        bottom: 9vh;
        right: 15px;
    }

    .botonIz {
        position: fixed;
        z-index: 2;
        bottom: 9vh;
        left: 15px;
    }

    .tituloContAceptaciones {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .menuMovil {
        position: fixed;
        bottom: 2vh;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .circuloResponsiv {
        border: 1px solid #002c5d;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        margin-right: 5px;
    }
}