:root {
    --rojo: #610B21;
    --gris: #a8a1a1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Open Sans', sans-serif !important;
    background-image: url(./../img/bg3.png);
}

header {
    width: 100%;
    height: 80px;
    background: whitesmoke;
    color: #fff;
    border-bottom: 5px solid var(--rojo) !important;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
}

.imgencabezado {
    height: 80px;
}

.contenedor {
    width: 98%;
    margin: auto;
}

section {
    width: 100%;
    margin-bottom: 25px;
}


footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;

}

/* menu superior */
@media (min-width:768px) {
    .sociales {
        width: auto;
    }

    footer .contenedor {
        justify-content: space-between;
    }
}


@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }
}

#banner {
    margin-top: 50px;
    position: relative;


}

#banner img {

    display: none;
}


#banner .contenedor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: rgb(114, 89, 89);
}

#banner h3 {
    font-weight: bold;
    font-size: 15px;
    color: #B40431
}

#banner p {
    font-size: 12px;
    color: #6E6E6E
}

@media (min-width:480px) {
    #banner h3 {
        font-size: 10px;
        color: #B40431;
        font-weight: bold;
    }

    #banner img {
        padding-top: 1%;

    }

    #banner p {
        font-size: 5px;
        color: #6E6E6E
    }
}

@media (min-width:768px) {
    #banner {
        height: 300px;
        overflow: hidden;
    }

    #banner img {
        display: block;
        padding-top: 0.1%;
        width: 120px;
        height: 150px;
    }

    #banner h3 {
        font-size: 25px;
        color: #B40431;
        font-weight: bold;
    }

    #banner p {
        font-size: 15px;
        color: #6E6E6E
    }
}

@media (min-width:1024px) {
    #banner img {
        display: block;
        padding-top: 0.1%;
        width: 120px;
        height: 150px;
    }

    #banner h3 {
        font-size: 30px;
        color: #B40431;
        font-weight: bold;
    }

    #banner p {
        font-size: 18px;
        color: #6E6E6E
    }
}

#info {
    background-color: var(--rojo);
    color: #f7f2f4;
    text-align: center;
}

#info a {
    text-decoration: none;
    color: darkgrey;

}

#info .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info-pet {
    margin: 20px;
}

.info-pet img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 7px solid #fff;

}

.info-pet h4 {
    color: white;
    align-items: center;
    font-size: 16px;
}

.info-pet .icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 7px solid #fff;
    font-size: 50px;
    padding-top: 25px;
}

.info-pet .icon:hover {
    background-color: #444243;
    color: #f7f2f4;
    text-align: center;
    padding: 20px;
    border-radius: 5%;
    transform: scale(1.05);
}

@media (min-width:480px) {
    .info-pet {
        width: 40%;
    }
}

@media (min-width:1024px) {
    .info-pet {
        width: auto;
    }
}

#menu-bar {
    display: none;
}

header label {
    float: right;
    font-size: 28px;
    margin: 6px 0;
    cursor: pointer;
}

.menu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(51, 51, 51, 0.9);
    transition: all 0.5s;
    transform: translateX(-100%);
}

.menu a {
    display: block;
    color: #fff;
    height: 80px;
    align-items: center;
    position: relative;
    display: flex;

    justify-content: center;
    text-decoration: none;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.3);
}

#menu-bar:checked~.menu {
    transform: translateX(0%);
}

@media (min-width:1024px) {
    .menu {
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex;
    }

    .menu a {
        border: none;
    }

    header label {
        display: none;
    }
}


#banner {
    margin-top: 50px;
    position: relative;
}


.button,
.button:visited,
.button-dark {
    display: inline-block;
    max-width: 200px;
    margin: 50px 10px 30px 10px;
    padding: 10px;
    font-family: "Signika", sans-serif;
    color: #ffffff;
    background-color: #848484;
    border: 2px solid #ffffff;
    border-radius: 3px;
    text-transform: capitalize;
    text-align: center;
    transition: all 0.1s ease;
    text-decoration: none;
}

.button-dark,
.button-dark:visited {
    margin: 20px 10px 30px 0;
    color: #464646;
    border-color: #464646;

}

.button:hover,
.button-dark:hover {
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;

}

.button:hover {
    background-color: #424242;
    text-decoration: none;
    cursor: pointer;
}

.button-dark:hover {
    color: #ffffff;
    background-color: #424242;
    text-decoration: none;
    cursor: pointer;
}



.boton_local:hover {
    background: #A4A4A4;
    text-decoration: none;
    color: #F2F2F2;
}

@media only screen and (min-width: 1170px) {
    section h2 {
        margin: 0 auto 3em;
    }
}

.estiloLocal {
    border: 1px solid #D8D8D8;
    border-left: .2em solid var(--rojo);
    border-radius: 5px;
    color: var(--rojo);
    background-color: #f5f1f1;
}


.estiloDatosAd {
    border: 1px solid #D8D8D8;
    border-left: .4em solid var(--rojo);
    color: var(--rojo);
    background-color: #f5f1f1;
}

.textoRojo {
    color: #931031 !important;
    font-weight: 600;
    text-decoration: none;
}

.centrar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnRojo {
    background-color: var(--rojo) !important;
    font-size: 18px !important;
}

footer {
    background-color: var(--rojo);
    border-bottom: 5px solid gray;
    padding: 20px;
}

input,
select {
    border-color: var(--gris) !important;
}

.encabezados {
    background-color: #848484 !important;
    border-radius: 25px;
    color: white;

}

.subencabezados {
    background-color: #b4a8a8 !important;
    border-radius: 25px;
    font-weight: 600;
    color: white;
}

.encabezados h4,
.subencabezados h4 {
    font-size: 110% !important;
}

/* Tamaño de los select2  */
.select2-container {
    width: 100% !important;
    font-size: 15px !important;
}

/* 
.select2-selection {
    border-color: green; 
  } */

form label,
form input,
form select,
.tamLetra {
    font-size: 15px !important;
    font-family: 'Open Sans', sans-serif !important;

}

.estilosbtnchico {
    font-size: 12px !important;
    font-family: 'Arial', sans-serif !important;
    background-color: var(--rojo) !important;

}

.logofooter {
    background: whitesmoke;
    border-radius: 50%;
    width: 140px;
    height: 140px;
}

.imgfooter {
    position: sticky;
    height: 160px;
    filter: drop-shadow(7px 7px 5px #383838);
}

.textoGris {
    color: #d6d0d0;
    font-size: 80%;
}

.redesIeepco {
    color: var(--gris);
}

.redesIeepco:hover {
    color: white;
    filter: drop-shadow(6px 6px 5px #1b1718);
}

.redsocialX {
    filter: invert(73%) sepia(10%) saturate(125%) hue-rotate(315deg) brightness(89%) contrast(84%);
    width: 32px;
}

.redsocialX:hover {
    filter: invert(97%) sepia(100%) saturate(0%) hue-rotate(9deg) brightness(103%) contrast(104%);
}

.spanbuscar {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(155deg) brightness(104%) contrast(106%);
}


span.fondorojo {
    background-color: var(--rojo);
}

.form-control.is-valid,
.was-validated .form-control:valid,
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
    background-image: none !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
    border-color: #dc3545 !important;
}

/* Sobreescritura del estilo de un campo input no válido de un formulario de Boostrap*/
.inputNoValido {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.titulomodal {
    background-color: var(--rojo);
    color: white;
    height: 35px;
}

.labelLogin {
    font-size: 15px !important;
}

.btnestiloguardar {
    color: #1b1718 !important;
    background-color: transparent;
}

.btnestiloguardar:hover {
    color: #fff !important;
}

.punteroAccion {
    cursor: pointer;
}

.btnestilodescarcar {
    background-color: #848484 !important;
    font-family: Arial, Helvetica, sans-serif !important;
}

.subindex {
    background-color: var(--rojo);
    border-bottom: 5px solid gray;
    padding: 20px;
}

#opcionessesion article {
    margin: 15px;
    text-decoration: none !important;
    width: 140px;
    height: 140px;
    border-radius: 3%;
    font-size: 105px;
    color: #161516;
    text-align: center;
    border-radius: 50%;
    border: 5px solid #8A0829;
}

.textosindecoracion {
    text-decoration: none !important;
    color: #1b1718 !important;
}

#opcionessesion a:hover {
    text-decoration: none;
    background-color: #CCC;
    text-transform: lowercase;
    border-radius: 5%;
    transform: scale(1.05);
}

.cuadro:hover {
    text-decoration: none;
    background-color: #CCC;
    text-transform: lowercase;
    border-radius: 5%;
    padding: 15px;
    transform: scale(1.05);
}

#blog img {
    width: 100%;
    max-width: 280px;

}

.campoarchpdf {
    width: 280px !important;
}

.campoVerEliminarArch {
    width: 100px !important;
}

@media (max-width: 700px) {

    .tablaResponsivaMovil {
        width: 800px;
    }

}

.imagenperfil {
    display: block;
    max-width: 100% !important;
}

.preview {
    overflow: hidden;
    width: 240px;
    height: 240px;
}

.enlacesformatos {
    text-decoration: none;
    color: #161516;
}

.enlacesformatos:hover {
    color: var(--rojo);
}